-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgrid.covjson
59 lines (59 loc) · 1.39 KB
/
grid.covjson
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
{
"type" : "Coverage",
"domain" : {
"type" : "Domain",
"domainType" : "Grid",
"axes": {
"x" : { "start": 7, "stop": 14, "num": 4 },
"y" : { "start": 54, "stop": 48, "num": 4 }
},
"referencing": [{
"components": ["x","y"],
"system": {
"type": "GeodeticCRS",
"id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
}
}]
},
"parameters" : {
"temperature": {
"type" : "Parameter",
"description": {
"en": "Air temperature measured in degrees Celsius."
},
"unit" : {
"label": {
"en": "Degree Celsius"
},
"symbol": {
"value": "Cel",
"type": "http://www.opengis.net/def/uom/UCUM/"
}
},
"observedProperty" : {
"id": "http://vocab.nerc.ac.uk/standard_name/air_temperature/",
"label" : {
"en": "Air temperature",
"de": "Lufttemperatur"
},
"description": {
"en": "Air temperature is the bulk temperature of the air, not the surface (skin) temperature."
}
}
}
},
"ranges" : {
"temperature" : {
"type" : "NdArray",
"dataType": "float",
"axisNames": ["y", "x"],
"shape": [4, 4],
"values" : [
17.3, 18.2, 16.5, 18.7,
18.1, 19.4, 17.2, 18.6,
19.2, 20.4, 21.1, 20.7,
21.1, 21.3, 20.5, 19.2
]
}
}
}