-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathWeather-Forecast.jsonld
133 lines (133 loc) · 3.38 KB
/
Weather-Forecast.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
126
127
128
129
130
131
132
133
{
"@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-Forecast-context.jsonld"
],
"id": "urn:ngsi-ld:WeatherForecast:7453c443-290d-44ef-a60f-d4c087010c88",
"type": "WeatherForecast",
"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,
"POIs": {
"type": "Relationship",
"object": [
"urn:ngsi-ld:POI:cdfd9cb8-ae2b-47cb-a43a-b9767ffd5c84",
"urn:ngsi-ld:POI:42dcd5ea-46db-11e8-bea0-772aba733f93",
"urn:ngsi-ld:POI:4912d78e-46db-11e8-8572-ab2b8e55590b"
]
},
"location": {
"type": "GeoProperty",
"value": {
"type": "Point",
"coordinates": [
-104.99404,
39.75621
]
}
},
"retrievedAt": {
"type": "TemporalProperty",
"value": "2017-05-04T10:18:16Z"
},
"issuedAt": {
"type": "TemporalProperty",
"value": "2017-05-04T10:18:16Z"
},
"weatherType": {
"type": "Property",
"value": "sunnyDay"
},
"visibility": {
"type": "Property",
"value": 1500,
"unitCode": "MTR"
},
"name": {
"type": "Property",
"value": "London City"
},
"validFrom": {
"type": "TemporalProperty",
"value": "2016-08-10T10:18:16Z"
},
"validThrough": {
"type": "TemporalProperty",
"value": "2016-08-29T10:18:16Z"
},
"dayMinimum": {
"type": "Property",
"value": {
"temperature": {
"value": 30,
"unitCode": "CEL"
},
"feelsLikeTemperature": {
"value": 32,
"unitCode": "CEL"
},
"relativeHumidity": {
"value": 0.22,
"unitCode": "C62"
}
}
},
"dayMaximum": {
"type": "Property",
"value": {
"temperature": {
"value": 33,
"unitCode": "CEL"
},
"feelsLikeTemperature": {
"value": 38,
"unitCode": "CEL"
},
"relativeHumidity": {
"value": 0.52,
"unitCode": "C62"
}
}
},
"address": {
"type": "Property",
"value": {
"@type": "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"
},
"uVIndexMax": {
"type": "Property",
"value": 5,
"unitCode": "C62"
},
"relativeHumidity": {
"type": "Property",
"value": 0.1,
"unitCode": "C62"
},
"precipitationProbability": {
"type": "Property",
"value": 0.05,
"unitCode": "C62"
}
}