Last active
February 11, 2026 15:43
-
-
Save hugoledoux/48ea257389af07d17dc502e3c83f0f32 to your computer and use it in GitHub Desktop.
STAC metadata file for a GeoParquet file in EPSG:28992
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
| { | |
| "type": "Feature", | |
| "stac_version": "1.1.0", | |
| "stac_extensions": [ | |
| "https://stac-extensions.github.io/projection/v2.0.0/schema.json" | |
| ], | |
| "id": "delft-buildings-geoparquet", | |
| "geometry": { | |
| "type": "Polygon", | |
| "coordinates": [ | |
| [ | |
| [4.3152, 51.97], | |
| [4.4024, 51.97], | |
| [4.4024, 52.0352], | |
| [4.3152, 52.0352], | |
| [4.3152, 51.97] | |
| ] | |
| ] | |
| }, | |
| "bbox": [4.3152, 51.97, 4.4024, 52.0352], | |
| "properties": { | |
| "datetime": "2026-02-10T09:18:09.877018Z", | |
| "proj:code": "EPSG:28992", | |
| "proj:bbox": [ | |
| 81752.25619912107, 442480.8651638546, 87679.68324598923, 449730.6420819167 | |
| ], | |
| "geoparquet:geometry_types": ["Polygon"] | |
| }, | |
| "links": [ | |
| { | |
| "rel": "self", | |
| "href": "https://hugoledoux.github.io/test44/d.json", | |
| "type": "application/json" | |
| } | |
| ], | |
| "assets": { | |
| "data": { | |
| "href": "https://hugoledoux.github.io/test44/d.parquet", | |
| "type": "application/vnd.apache.parquet", | |
| "title": "Buildings in Delft (EPSG:28992)", | |
| "roles": ["data"] | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment