Skip to content

Commit a27c8ca

Browse files
Add missing logical schema fixture
1 parent c714899 commit a27c8ca

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"type": "object",
3+
"title": "New Simulated Weather Sensor - weather",
4+
"properties": {
5+
"time": {
6+
"title": "Sampling Time",
7+
"type": "string",
8+
"format": "date-time",
9+
"x-ogc-definition": "http://www.opengis.net/def/property/OGC/0/SamplingTime",
10+
"x-ogc-refFrame": "http://www.opengis.net/def/trs/BIPM/0/UTC",
11+
"x-ogc-unit": "http://www.opengis.net/def/uom/ISO-8601/0/Gregorian"
12+
},
13+
"temperature": {
14+
"title": "Air Temperature",
15+
"type": "number",
16+
"x-ogc-definition": "http://mmisw.org/ont/cf/parameter/air_temperature",
17+
"x-ogc-unit": "Cel"
18+
},
19+
"pressure": {
20+
"title": "Atmospheric Pressure",
21+
"type": "number",
22+
"x-ogc-definition": "http://mmisw.org/ont/cf/parameter/air_pressure",
23+
"x-ogc-unit": "hPa"
24+
},
25+
"windSpeed": {
26+
"title": "Wind Speed",
27+
"type": "number",
28+
"x-ogc-definition": "http://mmisw.org/ont/cf/parameter/wind_speed",
29+
"x-ogc-unit": "m/s"
30+
},
31+
"windDirection": {
32+
"title": "Wind Direction",
33+
"type": "number",
34+
"x-ogc-definition": "http://mmisw.org/ont/cf/parameter/wind_from_direction",
35+
"x-ogc-refFrame": "http://www.opengis.net/def/cs/OGC/0/NED",
36+
"x-ogc-axis": "z",
37+
"x-ogc-unit": "deg"
38+
}
39+
}
40+
}

0 commit comments

Comments
 (0)