feat: add 3D extension#2211
Merged
Merged
Conversation
3D solid processing for CityJSON / 3DBAG / CityParquet city models: enclosed volume, closed/manifold/oriented validation, footprint area, building height, and 3D distance on SOLID_3D / GEOM_3D types. Self-contained C++ kernel. Repo: cityjson/duckdb-3d-extension @ a08f240 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Member
|
Thanks! |
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.
Add the
three_dcommunity extension.This extension makes the polyhedral solids in 3D city models — buildings from CityJSON / 3DBAG / CityParquet — first-class, queryable values in DuckDB. It exposes solid-aware types and PostGIS-style
ST_*/ST_3D*functions for measuring enclosed volume, footprint area and building height, validating topology, and running 3D distance queries, all on a self-contained C++ kernel (no CGAL/SFCGAL).Key Features
SOLID_3D(closed polyhedral solids, topology-preserving payload) andGEOM_3D(points/lines/polygons/surfaces).ST_3DVolume,ST_3DSurfaceArea,ST_Area(footprint),ST_ZMax − ST_ZMin(height).ST_3DIsClosed/ST_3DIsManifold/ST_3DIsOriented/ST_3DValidationReport.ST_3DDistance,ST_3DDWithin,ST_3DClosestPoint,ST_3DShortestLine.cityjsonextension:ST_3DFromWKB(geometry, geometry_properties)on its per-LOD WKB output.Source Repository: https://github.com/cityjson/duckdb-3d-extension