diff --git a/examples/collection.json b/examples/collection.json deleted file mode 100644 index 4533ab7..0000000 --- a/examples/collection.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "stac_version": "1.0.0-rc.1", - "stac_extensions": [ - "https://stac-extensions.github.io/item-assets/v1.0.0/schema.json", - "https://stac-extensions.github.io/ml-aoi/v0.1.0/schema.json" - ], - "type": "Collection", - "id": "collection", - "title": "A title", - "description": "A description", - "license": "Apache-2.0", - "extent": { - "spatial": { - "bbox": [ - [ - 172.9, - 1.3, - 173, - 1.4 - ] - ] - }, - "temporal": { - "interval": [ - [ - "2015-06-23T00:00:00Z", - null - ] - ] - } - }, - "template:new_field": "test", - "template:xyz": { - "x": 1, - "y": 2, - "z": 3 - }, - "template:another_one": [ - 1, - 2, - 3 - ], - "assets": { - "example": { - "href": "https://example.com/examples/file.xyz", - "template:new_field": "test" - } - }, - "item_assets": { - "data": { - "roles": [ - "data" - ], - "template:new_field": "test" - } - }, - "summaries": { - "datetime": { - "minimum": "2015-06-23T00:00:00Z", - "maximum": "2019-07-10T13:44:56Z" - } - }, - "links": [ - { - "href": "https://example.com/examples/collection.json", - "rel": "self" - }, - { - "href": "https://example.com/examples/item.json", - "rel": "item" - } - ] -} \ No newline at end of file diff --git a/examples/item.json b/examples/item.json deleted file mode 100644 index c96d7b6..0000000 --- a/examples/item.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "stac_version": "1.0.0-rc.1", - "stac_extensions": [ - "https://stac-extensions.github.io/ml-aoi/v0.1.0/schema.json" - ], - "type": "Feature", - "id": "item", - "bbox": [ - 172.9, - 1.3, - 173, - 1.4 - ], - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 172.9, - 1.3 - ], - [ - 173, - 1.3 - ], - [ - 173, - 1.4 - ], - [ - 172.9, - 1.4 - ], - [ - 172.9, - 1.3 - ] - ] - ] - }, - "properties": { - "datetime": "2020-12-11T22:38:32Z", - "template:new_field": "test", - "template:xyz": { - "x": 1, - "y": 2, - "z": 3 - }, - "template:another_one": [ - 1, - 2, - 3 - ] - }, - "links": [ - { - "href": "https://example.com/examples/item.json", - "rel": "self" - } - ], - "assets": { - "data": { - "href": "https://example.com/examples/file.xyz", - "template:new_field": "test" - } - } -} \ No newline at end of file