Skip to content
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

STAC catalog, collection and items #29

Merged
merged 3 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions docs/stac_example/catalog.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"type": "Catalog",
"stac_version": "1.0.0",
"id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"description": "This object represents a Catalog in a SpatioTemporal Asset Catalog.",
"links": [
{
"rel": "child",
"href": "https://ogc.iudx.io/collections/af1c526b-283e-441b-a4fb-09e6760de9c7",
"type": "application/json",
"title": "Link to the STAC collection"
},
{
"rel": "child",
"href": "https://ogc.iudx.io/collections/f64743f6-1f74-4ada-8020-45cfb2d08a1b",
"type": "application/json",
"title": "Link to the STAC collection"
},
{
"rel": "self",
"href": "https://ogc.iudx.io/catalog",
"type": "application/json",
"title": "Link to the STAC catalog"
},
{
"rel": "root",
"href": "https://ogc.iudx.io/catalog",
"type": "application/json",
"title": "Link to the STAC catalog"
}
]
}
98 changes: 98 additions & 0 deletions docs/stac_example/collection.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
[
{
"description": "This object represents Collections in a SpatioTemporal Asset Catalog.",
"stac_version": "1.0.0",
"type": "Collection",
"id": "af1c526b-283e-441b-a4fb-09e6760de9c7",
"license": "CC-BY-4.0",
"title": "Simple Example Collection",
ThorodanBrom marked this conversation as resolved.
Show resolved Hide resolved
"extent": {
"spatial": {
"bbox": [
[
-180,
-90,
180,
90
]
]
},
"temporal": {
"interval": [
[
"2022-01-01T00:00:00Z",
"2022-12-31T23:59:59Z"
]
]
}
},
"links": [
{
"href": "https://ogc.iudx.io/collections/af1c526b-283e-441b-a4fb-09e6760de9c7",
"rel": "self",
"title": "Buildings in Bangalore Google",
"description": "Buildings in Bangalore provided by Google"
},
ThorodanBrom marked this conversation as resolved.
Show resolved Hide resolved
{
"href": "https://ogc.iudx.io/collections/af1c526b-283e-441b-a4fb-09e6760de9c7/items",
"rel": "items",
"title": "Buildings in Bangalore Google",
"type": "application/geo+json"
},
{
"href": "https://ogc.iudx.io/collections/af1c526b-283e-441b-a4fb-09e6760de9c7/items/{featureId}",
"rel": "item",
"title": "Link template for af1c526b-283e-441b-a4fb-09e6760de9c7 features",
"templated": "true"
}
]
},
{
"description": "This object represents Collections in a SpatioTemporal Asset Catalog.",
"stac_version": "1.0.0",
"type": "Collection",
"id": "f64743f6-1f74-4ada-8020-45cfb2d08a1b",
"license": "CC-BY-4.0",
"title": "Simple Example Collection",
"extent": {
"spatial": {
"bbox": [
[
-180,
-90,
180,
90
]
]
},
"temporal": {
"interval": [
[
"2022-01-01T00:00:00Z",
"2022-12-31T23:59:59Z"
]
]
}
},
"links": [
{
"href": "https://ogc.iudx.io/collections/f64743f6-1f74-4ada-8020-45cfb2d08a1b",
"rel": "self",
"title": "Buildings in Bangalore MS",
"description": "Buildings in Bangalore provided by Microsoft"
},
{
"href": "https://ogc.iudx.io/collections/f64743f6-1f74-4ada-8020-45cfb2d08a1b/items",
"rel": "items",
ThorodanBrom marked this conversation as resolved.
Show resolved Hide resolved
"title": "Buildings in Bangalore MS",
"type": "application/geo+json"
},
{
"href": "https://ogc.iudx.io/collections/f64743f6-1f74-4ada-8020-45cfb2d08a1b/items/{featureId}",
"rel": "item",
"title": "Link template for f64743f6-1f74-4ada-8020-45cfb2d08a1b features",
"templated": "true"
ThorodanBrom marked this conversation as resolved.
Show resolved Hide resolved
}
]
}
]
142 changes: 142 additions & 0 deletions docs/stac_example/collection1_items.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
[
{
"type": "Feature",
"stac_version": "1.0.0",
"id": "d83b3669-b49d-4b52-bf80-81a67bc0d8fe",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
77.523040743,
12.90244043
],
[
77.523000118,
12.902447438
],
[
77.523017048,
12.902541897
],
[
77.523057673,
12.902534889
],
[
77.523040743,
12.90244043
]
]
]
]
},
"bbox": [
77.523000118,
12.90244043,
77.523057673,
12.902541897
],
"properties": {
"datetime": "2022-01-15T12:00:00Z",
"title": "Example STAC Item",
"description": "An example STAC Item with minimal properties"
},
"links": [
{
"rel": "self",
"href": "https://ogc.iudx.io/collections/af1c526b-283e-441b-a4fb-09e6760de9c7/items/d83b3669-b49d-4b52-bf80-81a67bc0d8fe",
"type": "application/json",
"title": "Link to this STAC Item"
},
{
"rel": "collection",
"href": "https://ogc.iudx.io/collections/af1c526b-283e-441b-a4fb-09e6760de9c7",
"type": "application/json",
"title": "Link to this collection of STAC item"
}
],
"assets": {
"thumbnail": {
"href": "https://storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg",
"title": "Thumbnail",
"type": "image/png",
"roles": [
"thumbnail"
]
}
},
"collection": "af1c526b-283e-441b-a4fb-09e6760de9c7"
},
{
"type": "Feature",
"stac_version": "1.0.0",
"id": "06d39016-e754-43e2-9307-faedc78a34d2",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
77.562294223,
12.967550966
],
[
77.562284236,
12.967513838
],
[
77.562256996,
12.967520886
],
[
77.562266983,
12.967558014
],
[
77.562294223,
12.967550966
]
]
]
]
},
"bbox": [
77.562256996,
12.967513838,
77.562294223,
12.967558014
],
"properties": {
"datetime": "2022-01-18T12:00:00Z",
"title": "Example STAC Item",
"description": "An example STAC Item with minimal properties"
},
"links": [
{
"rel": "self",
"href": "https://ogc.iudx.io/collections/af1c526b-283e-441b-a4fb-09e6760de9c7/items/06d39016-e754-43e2-9307-faedc78a34d2",
"type": "application/json",
"title": "Link to this STAC Item"
},
{
"rel": "collection",
"href": "https://ogc.iudx.io/collections/af1c526b-283e-441b-a4fb-09e6760de9c7",
"type": "application/json",
"title": "Link to this collection of STAC item"
}
],
"assets": {
"thumbnail": {
"href": "https://storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg",
"title": "Thumbnail",
"type": "image/png",
"roles": [
"thumbnail"
]
}
},
"collection": "af1c526b-283e-441b-a4fb-09e6760de9c7"
}
]
Loading