Open
Conversation
- ST_AsEWKT / (round-trip EWKT with embedded SRID) - ST_AsGeoJSON / ST_GeomFromGeoJSON - ST_MakeLine, ST_MakePolygon, ST_MakeEnvelope - ST_IsClosed, ST_IsRing, ST_IsSimple, ST_IsEmpty, ST_IsCollection - ST_NumGeometries, ST_NRings, ST_HasZ, ST_HasM, ST_Dimension Add geojson + serde_json crate dependencies. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
ST_DWithin: returns true if two geometries are within a given distance. ST_Relate: returns the DE-9IM intersection matrix string for two geometry arguments. Uses the public geo::relate API (CoordPos/Dimensions::get) rather than Debug-string parsing, so the result is stable across geo crate versions. ST_RelateMatch: tests whether a matrix string matches a DE-9IM pattern (supports T/F/0/1/2/* wildcards). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…istance, ST_ClosestPoint, ST_MaxDistance ST_ClosestPoint iterates all vertices of geomB and queries geomA.closest_point for each, keeping the minimum-distance result. This is vertex-exact and correct for non-convex geometries (replaces a centroid-heuristic approach). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…fine, linear ref, advanced)
Overlay: ST_Union, ST_Intersection, ST_Difference, ST_SymDifference
Buffer: ST_Buffer
Editors: ST_Reverse, ST_Normalize, ST_FlipCoordinates, ST_Force2D,
ST_Multi, ST_RemoveRepeatedPoints, ST_CollectionExtract
MakeValid: ST_MakeValid (buffer-0 strategy; doc notes approximation)
Affine: ST_Affine, ST_Rotate, ST_Scale, ST_Translate
Transform: ST_Transform (geometry passthrough; full reprojection requires proj)
Linear ref: ST_LineInterpolatePoint, ST_LineLocatePoint, ST_LineSubstring
Advanced: ST_ChaikinSmoothing, ST_Segmentize, ST_ReducePrecision, ST_UnaryUnion
ST_UnaryUnion returns an error for non-polygonal members inside a
GeometryCollection rather than silently discarding them.
ST_Segmentize documents that only LineString input is currently supported.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Implements ST_Collect as a UDAF that accumulates geometries into a GeometryCollection. Wire into the top-level register() function alongside section comments for all UDF categories. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
… README - Version 0.3.0 → 0.4.0-hotdata.1 in workspace Cargo.toml - Add spatialbench dev dependency for benchmark validation tests - Integration test suite covering all new functions by PostGIS tier - Spatialbench validation test harness - README function table updated to mark all newly implemented functions Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.