-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathWeather-Observed.jsonld
125 lines (125 loc) · 3.15 KB
/
Weather-Observed.jsonld
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
{
"@context": [
"https://forge.etsi.org/gitlab/NGSI-LD/NGSI-LD/raw/master/coreContext/ngsi-ld-core-context.json",
"https://raw.githubusercontent.com/GSMADeveloper/NGSI-LD-Entities/master/examples/Weather-Observed-context.jsonld"
],
"id": "urn:ngsi-ld:WeatherObserved:adb144fb-e732-4944-a192-8690bd17de8c",
"type": "WeatherObserved",
"createdAt": "2017-01-01T01:20:00Z",
"modifiedAt": "2017-05-04T12:30:00Z",
"source": "https://source.example.com",
"dataProvider": "https://provider.example.com",
"entityVersion": 2.0,
"name": {
"type": "Property",
"value": "London City"
},
"location": {
"type": "GeoProperty",
"value": {
"type": "Point",
"coordinates": [
-104.99404,
39.75621
]
}
},
"POI": {
"type": "Relationship",
"object": "urn:ngsi-ld:POI:b16f4666-5a6b-11e8-be71-3b0aa1fc6248"
},
"stationCode": {
"type": "Property",
"value": "LCW100"
},
"devices": {
"type": "Relationship",
"object": [
"urn:ngsi-ld:Device:4514d07a-59ae-11e8-8d8d-8fb340a9451f",
"urn:ngsi-ld:Device:4bdbd926-59ae-11e8-a29d-1f6336c78c14",
"urn:ngsi-ld:Device:52890d20-59ae-11e8-8449-ef9315a0a3ca",
"urn:ngsi-ld:581fc4e0-59ae-11e8-99fe-17206cbbcec7"
]
},
"observedAt": {
"type": "Property",
"value": "2017-05-04T10:18:16Z"
},
"weatherType": {
"type": "Property",
"value": "sunnyDay"
},
"visibility": {
"type": "Property",
"value": 1500,
"unitCode": "MTR"
},
"address": {
"type": "Property",
"value": {
"@type": "https://schema.org/PostalAddress",
"addressLocality": "London",
"postalCode": "EC4N 8AF",
"streetAddress": "25 Walbrook"
}
},
"temperature": {
"type": "Property",
"value": 30,
"unitCode": "CEL"
},
"windDirection": {
"type": "Property",
"value": 122,
"unitCode": "DD"
},
"windSpeed": {
"type": "Property",
"value": 3,
"unitCode": "MTS"
},
"relativeHumidity": {
"type": "Property",
"value": 0.1,
"unitCode": "C62"
},
"dewPoint": {
"type": "Property",
"value": 10,
"unitCode": "CEL"
},
"atmosphericPressure": {
"type": "Property",
"value": 10,
"unitCode": "CEL"
},
"pressureTendency": {
"type": "Property",
"value": 10
},
"rainRate": {
"type": "Property",
"value": {
"value": 10,
"unitText": "ml/h"
}
},
"rainFall": {
"type": "Property",
"value": {
"value": 340,
"referencePeriod": "dayStart"
},
"unitCode": "MMT"
},
"evapoTranspiration": {
"type": "Property",
"value": 40,
"unitCode": "C16"
},
"referenceEvapoTranspiration": {
"type": "Property",
"value": 100,
"unitCode": "C16"
}
}