-
Notifications
You must be signed in to change notification settings - Fork 6
Add DGGS dimension type #38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,90 @@ | ||||||
| { | ||||||
| "stac_version": "1.1.0", | ||||||
| "stac_extensions": [ | ||||||
| "https://stac-extensions.github.io/datacube/v2.3.0/schema.json" | ||||||
| ], | ||||||
| "id": "datacube-dggs-123", | ||||||
| "type": "Feature", | ||||||
| "geometry": { | ||||||
| "type": "Polygon", | ||||||
| "coordinates": [ | ||||||
| [ | ||||||
| [ | ||||||
| -10, | ||||||
| 40 | ||||||
| ], | ||||||
| [ | ||||||
| 10, | ||||||
| 40 | ||||||
| ], | ||||||
| [ | ||||||
| 10, | ||||||
| 55 | ||||||
| ], | ||||||
| [ | ||||||
| -10, | ||||||
| 55 | ||||||
| ], | ||||||
| [ | ||||||
| -10, | ||||||
| 40 | ||||||
| ] | ||||||
| ] | ||||||
| ] | ||||||
| }, | ||||||
| "bbox": [ | ||||||
| -10, | ||||||
| 40, | ||||||
| 10, | ||||||
| 55 | ||||||
| ], | ||||||
| "properties": { | ||||||
| "title": "DGGS-based data cube in a STAC Item.", | ||||||
| "datetime": "2024-01-01T00:00:00Z", | ||||||
| "cube:dimensions": { | ||||||
| "dggs": { | ||||||
| "type": "dggs", | ||||||
| "reference_system": "https://www.opengis.net/def/dggrs/OGC/1.0/HEALPix", | ||||||
| "resolution": 6, | ||||||
| "step": 1, | ||||||
| "values": [ | ||||||
| "C1A", | ||||||
| "C1B", | ||||||
| "C1C" | ||||||
| ] | ||||||
| }, | ||||||
| "time": { | ||||||
| "type": "temporal", | ||||||
| "extent": [ | ||||||
| "2024-01-01T00:00:00Z", | ||||||
| "2024-12-31T23:59:59Z" | ||||||
| ], | ||||||
| "step": "P1M" | ||||||
| } | ||||||
| }, | ||||||
| "cube:variables": { | ||||||
| "temperature": { | ||||||
| "dimensions": [ | ||||||
| "time", | ||||||
| "dggs" | ||||||
| ], | ||||||
|
m-mohr marked this conversation as resolved.
|
||||||
| "type": "data", | ||||||
| "unit": "K", | ||||||
| "data_type": "float32" | ||||||
| } | ||||||
| } | ||||||
| }, | ||||||
| "assets": { | ||||||
| "data": { | ||||||
| "href": "http://cool-sat.com/catalog/datacube-dggs-123/data.zarr", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure, how important: this gives 404 (mentioned also in other DGGS related files) |
||||||
| "type": "application/zarr", | ||||||
| "title": "DGGS Data cube" | ||||||
| } | ||||||
| }, | ||||||
| "links": [ | ||||||
| { | ||||||
| "rel": "self", | ||||||
| "href": "http://cool-sat.com/catalog/datacube-dggs-123/item.json" | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure, how important: this gives 404 (mentioned also in other DGGS related files)
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, it's an example. Maybe we should use links that are more clearly identifiable as an example.
Suggested change
|
||||||
| } | ||||||
| ] | ||||||
| } | ||||||
Uh oh!
There was an error while loading. Please reload this page.