generated from stac-extensions/template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcollection.json
50 lines (50 loc) · 1001 Bytes
/
collection.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/file/v2.1.0/schema.json"
],
"id": "example",
"type": "Collection",
"title": "File Example",
"description": "This examples shows how to use the file extension for collection assets.",
"extent": {
"spatial": {
"bbox": [
[
-180,
-90,
180,
90
]
]
},
"temporal": {
"interval": [
[
"2012-01-15T12:00:00Z",
"2014-12-15T12:00:00Z"
]
]
}
},
"license": "Apache-2.0",
"links": [
{
"href": "https://example.com",
"type": "text/html",
"rel": "about"
}
],
"assets": {
"thumbnail": {
"href": "logo.png",
"title": "A preview image for visualization.",
"type": "image/png",
"roles": [
"thumbnail"
],
"file:checksum": "90e4021044a8995dd50b6657a037a7839304535b",
"file:size": 153600
}
}
}