forked from letmaik/webworldwind-covjson
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgrid.covjson
76 lines (74 loc) · 1.87 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"type" : "Coverage",
"domain" : {
"type" : "Domain",
"domainType" : "Grid",
"axes": {
"x" : { "start": 7, "stop": 14, "num": 4 },
"y" : { "start": 54, "stop": 48, "num": 4 },
"t" : { "values": ["2010-01-01T00:12:20Z", "2010-01-01T00:12:25Z", "2010-01-02T00:12:25Z"] }
},
"referencing": [{
"components": ["x","y"],
"system": {
"type": "GeodeticCRS",
"id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
}
}, {
"components": ["t"],
"system": {
"type": "TemporalRS",
"calendar": "Gregorian"
}
}]
},
"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", "t"],
"shape": [4, 4, 3],
"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,
17.3, 18.2, 16.5, 18.7,
18.1, 20.0, 17.2, 18.6,
19.2, 20.4, 99.0, 20.7,
21.1, 21.3, 100.1, 19.2,
17.3, 18.2, 16.5, 18.7,
18.1, 19.4, 200.0, 18.6,
205.1, 20.4, 21.1, 20.7,
21.1, 21.3, 20.5, 19.2
]
}
}
}