docs(spatial): add Euclidean and geographic geo functions #332
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.
Summary
Documents new spatial functions from questdb/questdb#6664:
Euclidean space functions for LIDAR point clouds, robotics, and physical AI:
within_box(x, y, min_x, min_y, max_x, max_y)- rectangular bounding box querieswithin_radius(x, y, center_x, center_y, radius)- circular distance queriesGeographic coordinate functions for GPS/lat-lon data:
geo_within_radius_latlon(lat, lon, center_lat, center_lon, radius_meters)- radius queries in metersgeo_distance_meters(lat1, lon1, lat2, lon2)- distance calculationDocumentation highlights
TIMESTAMP()andPARTITION BYUse case focus
The documentation emphasizes discoverability for physical AI / robotics projects by:
Test plan
/docs/query/functions/spatial🤖 Generated with Claude Code