generated from stac-extensions/template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow to be used for assets #12, fix item example
- Loading branch information
Showing
5 changed files
with
222 additions
and
49 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
{ | ||
"stac_version": "1.0.0", | ||
"stac_extensions": [ | ||
"https://stac-extensions.github.io/datacube/v2.0.0/schema.json" | ||
], | ||
"id": "datacube-123", | ||
"type": "Feature", | ||
"geometry": { | ||
"type": "Polygon", | ||
"coordinates": [ | ||
[ | ||
[ | ||
-122.308150179, | ||
37.488035566 | ||
], | ||
[ | ||
-122.597502109, | ||
37.538869539 | ||
], | ||
[ | ||
-122.576687533, | ||
37.613537207 | ||
], | ||
[ | ||
-122.2880486, | ||
37.562818007 | ||
], | ||
[ | ||
-122.308150179, | ||
37.488035566 | ||
] | ||
] | ||
] | ||
}, | ||
"bbox": [ | ||
-122.59750209, | ||
37.48803556, | ||
-122.2880486, | ||
37.613537207 | ||
], | ||
"properties": { | ||
"title": "Multi-dimensional data cube 123 in a STAC Item.", | ||
"datetime": "2016-05-03T13:21:30.040Z" | ||
}, | ||
"assets": { | ||
"data": { | ||
"href": "http://cool-sat.com/catalog/datacube-123/data.nc", | ||
"type": "application/netcdf", | ||
"title": "netCDF Data cube", | ||
"cube:dimensions": { | ||
"x": { | ||
"type": "spatial", | ||
"axis": "x", | ||
"extent": [ | ||
-122.59750209, | ||
-122.2880486 | ||
], | ||
"reference_system": 4326 | ||
}, | ||
"y": { | ||
"type": "spatial", | ||
"axis": "y", | ||
"extent": [ | ||
37.48803556, | ||
37.613537207 | ||
], | ||
"reference_system": 4326 | ||
}, | ||
"pressure_levels": { | ||
"type": "spatial", | ||
"axis": "z", | ||
"extent": [ | ||
0, | ||
1000 | ||
], | ||
"step": 100, | ||
"unit": "Pa" | ||
}, | ||
"metered_levels": { | ||
"type": "spatial", | ||
"axis": "z", | ||
"values": [ | ||
0, | ||
10, | ||
25, | ||
50, | ||
100, | ||
1000 | ||
], | ||
"unit": "m" | ||
}, | ||
"time": { | ||
"type": "temporal", | ||
"values": [ | ||
"2016-05-03T13:21:30.040Z" | ||
] | ||
}, | ||
"spectral": { | ||
"type": "bands", | ||
"values": [ | ||
"red", | ||
"green", | ||
"blue" | ||
] | ||
} | ||
}, | ||
"cube:variables": { | ||
"temp": { | ||
"dimensions": [ | ||
"time", | ||
"y", | ||
"x", | ||
"pressure_levels" | ||
], | ||
"type": "data" | ||
}, | ||
"color": { | ||
"dimensions": [], | ||
"type": "auxiliary", | ||
"values": [ | ||
"red", | ||
"green", | ||
"blue" | ||
] | ||
} | ||
} | ||
}, | ||
"thumbnail": { | ||
"href": "http://cool-sat.com/catalog/datacube-123/thumbnail.png", | ||
"type": "image/png", | ||
"title": "Thumbnail" | ||
} | ||
}, | ||
"links": [ | ||
{ | ||
"rel": "self", | ||
"href": "http://cool-sat.com/catalog/datacube-123/item.json" | ||
} | ||
] | ||
} |
This file contains 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