forked from sj-doyle/NGSI-LD-Entities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAir-Quality-Observed.jsonld
110 lines (110 loc) · 3.17 KB
/
Air-Quality-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
{
"@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/Air-Quality-Observed-context.jsonld"
],
"id": "urn:ngsi-ld:AirQualityObserved:c9f32b35-a185-48e2-835f-c521efc294ab",
"type": "AirQualityObserved",
"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 Walbrook Building"
},
"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": "LW101"
},
"devices": {
"type": "Relationship",
"object": [
"urn:ngsi-ld:Device:e8bbad7e-46db-11e8-b23a-8bb626923249",
"urn:ngsi-ld:Device:ef379c6c-46db-11e8-90ae-d3c85fee58c1",
"urn:ngsi-ld:Device:f581d088-46db-11e8-96f8-33f0aaf9d24d",
"urn:ngsi-ld:0be5c6ea-46dc-11e8-b16b-0ff93e4638ff"
]
},
"observedAt": {
"type": "TemporalProperty",
"value": "2017-05-04T10:18:16Z"
},
"airQualityIndex": {
"type": "Property",
"value": 238,
"unitText": "US EPA AQI",
"observedAt": "2017-05-04T12:30:00Z"
},
"CO": {
"type": "Property",
"value": 0.8,
"unitCode": "GQ",
"unitText": "microgramme per cubic metre",
"observedAt": "2017-05-04T12:30:00Z"
},
"NO": {
"type": "Property",
"value": 137,
"unitCode": "GQ",
"unitText": "microgramme per cubic metre",
"observedAt": "2017-05-04T12:30:00Z"
},
"NO2": {
"type": "Property",
"value": 63,
"unitCode": "GQ",
"unitText": "microgramme per cubic metre",
"observedAt": "2017-05-04T12:30:00Z"
},
"NOx": {
"type": "Property",
"value": 273,
"unitCode": "GQ",
"unitText": "microgramme per cubic metre",
"observedAt": "2017-05-04T12:30:00Z"
},
"O3": {
"type": "Property",
"value": 300,
"unitCode": "GQ",
"unitText": "microgramme per cubic metre",
"observedAt": "2017-05-04T12:30:00Z"
},
"PM2.5": {
"type": "Property",
"value": 187,
"unitCode": "GQ",
"unitText": "microgramme per cubic metre",
"observedAt": "2017-05-04T12:30:00Z"
},
"PM10": {
"type": "Property",
"value": 50,
"unitCode": "GQ",
"unitText": "microgramme per cubic metre",
"observedAt": "2017-05-04T12:30:00Z"
},
"SO2": {
"type": "Property",
"value": 7,
"unitCode": "GQ",
"unitText": "microgramme per cubic metre",
"observedAt": "2017-05-04T12:30:00Z"
}
}