-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcollection.json
More file actions
134 lines (134 loc) · 2.86 KB
/
collection.json
File metadata and controls
134 lines (134 loc) · 2.86 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/cf/v0.3.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
]
]
}
},
"assets": {
"example": {
"href": "https://example.com/examples/file.xyz"
}
},
"item_assets": {
"data": {
"roles": [
"data"
]
}
},
"summaries": {
"datetime": {
"minimum": "2015-06-23T00:00:00Z",
"maximum": "2019-07-10T13:44:56Z"
},
"cube:dimensions": {
"time_interval1": {
"type": "temporal",
"description": "time interval that cell_methods is applied over",
"values": [
-24
],
"unit": "h"
},
"vertical_dimension1": {
"type": "spatial",
"axis": "z",
"cf:standard_name": "height",
"description": "Height above ground level",
"unit": "m",
"values": [
10
]
},
"time_interval2": {
"type": "temporal",
"description": "time interval that cell_methods is applied over",
"values": [
-60
],
"unit": "min"
},
"vertical_dimension2": {
"type": "spatial",
"axis": "z",
"cf:standard_name": "height",
"description": "Air pressure",
"unit": "hPa",
"values": [
500
]
}
},
"cube:variables": {
"sea_surface_temperature": {
"type": "data",
"cf:standard_name": "sea_surface_temperature",
"description": "Average temperature on sea surface for preceding 24 hours",
"unit": "K",
"cf:cell_methods": [
"mean"
],
"dimensions": [
"time_interval1"
]
},
"wind_speed_at_10m": {
"type": "data",
"cf:standard_name": "wind_speed",
"description": "minimum wind speed in 1 hour at 10 m agl",
"unit": "kt",
"cf:cell_methods": [
null,
"minimum"
],
"dimensions": [
"vertical_dimension1",
"time_interval2"
]
},
"temp_at_500hPa": {
"type": "data",
"cf:standard_name": "air_temperature",
"description": "air temperature at 500 hPa",
"unit": "degC",
"dimensions": [
"vertical_dimension2"
]
}
}
},
"links": [
{
"href": "https://example.com/examples/collection.json",
"rel": "self"
},
{
"href": "https://example.com/examples/item.json",
"rel": "item"
}
]
}