-
Notifications
You must be signed in to change notification settings - Fork 8
/
Road-Segment.jsonld
87 lines (87 loc) · 2.32 KB
/
Road-Segment.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
{
"@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/Road-Segment-context.jsonld"
],
"id": "urn:ngsi-ld:RoadSegment:27109fe0-0c60-4302-a9eb-e7065eca876e",
"type": "RoadSegment",
"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,
"road": {
"type": "Relationship",
"object": "urn:ngsi-ld:Road:19b6f4b7-a9b4-4114-8391-3133bf96aedc"
},
"startPoint": {
"type": "GeoProperty",
"value": {
"type": "Point",
"coordinates": [
52.026536,
0.603404
]
}
},
"endPoint": {
"type": "GeoProperty",
"value": {
"type": "Point",
"coordinates": [
52.058727,
0.700214
]
}
},
"relatedSegments": {
"type": "Relationship",
"object": [
"urn:ngsi-ld:RoadSegment:75460f68-5911-11e8-abc1-2f5262349650",
"urn:ngsi-ld:RoadSegment:7b2c9d70-5911-11e8-8484-7704bd54bf6b"
]
},
"roadClass": {
"type": "Property",
"value": "Motorway"
},
"name": {
"type": "Property",
"value": "M1 J13 to J14"
},
"path": {
"type": "GeoProperty",
"value": {
"type": "LineString",
"coordinates": [
[
52.026536,
0.603404
],
[
52.034828,
0.637166
],
[
52.037105,
0.643839
],
[
52.048449,
0.669202
],
[
52.058727,
0.700214
]
]
}
},
"POIs": {
"type": "Relationship",
"object": [
"urn:ngsi-ld:POI:b8873fb6-5aad-11e8-abb2-5b6a411669cd",
"urn:ngsi-ld:POI:c1ac7a0c-5aad-11e8-86f2-97ddd7d561f4"
]
}
}