Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
190 changes: 182 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ categories = ["science::geo"]
approx = "0.5.1"
arrow-arith = "58.1"
arrow-array = "58.1"
arrow-buffer = "58.1"
arrow-schema = "58.1"
async-trait = "0.1"
datafusion = { version = "53", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Functions are explicitly modeled after the [PostGIS API](https://postgis.net/doc
| ST_BoundingDiagonal | | Returns the diagonal of a geometry's bounding box. |
| ST_CoordDim | ✅ | Return the coordinate dimension of a geometry. |
| ST_Dimension | | Returns the topological dimension of a geometry. |
| ST_Dump | | Returns a set of geometry_dump rows for the components of a geometry. |
| ST_Dump | | Returns a set of geometry_dump rows for the components of a geometry. |
| ST_DumpPoints | | Returns a set of geometry_dump rows for the coordinates in a geometry. |
| ST_DumpSegments | | Returns a set of geometry_dump rows for the segments in a geometry. |
| ST_DumpRings | | Returns a set of geometry_dump rows for the exterior and interior rings of a Polygon. |
Expand Down
1 change: 1 addition & 0 deletions rust/geodatafusion/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ geos-3_11 = ["geos/v3_11_0"]
[dependencies]
arrow-arith = { workspace = true }
arrow-array = { workspace = true }
arrow-buffer = { workspace = true }
arrow-schema = { workspace = true }
datafusion = { workspace = true }
geo = { workspace = true }
Expand Down
Loading
Loading