-
Notifications
You must be signed in to change notification settings - Fork 0
/
bluebike.rml.ttl
429 lines (404 loc) · 10.9 KB
/
bluebike.rml.ttl
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
#
# RML mapping rules for https://api.blue-bike.be/pub/location
# (c) Dylan Van Assche, Brecht Van de Vyvere and Julián Rojas (2023)
# IDLab - Ghent University - imec
#
@prefix rml: <http://semweb.mmlab.be/ns/rml#> .
@prefix rr: <http://www.w3.org/ns/r2rml#> .
@prefix rmlt: <http://semweb.mmlab.be/ns/rml-target#> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix comp: <http://semweb.mmlab.be/ns/rml-compression#> .
@prefix formats: <http://www.w3.org/ns/formats/> .
@prefix w3: <http://www.w3.org/ns/locn#> .
@prefix gbfs: <https://w3id.org/gbfs#> .
@prefix ql: <http://semweb.mmlab.be/ns/ql#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix td: <https://www.w3.org/2019/wot/td#> .
@prefix htv: <http://www.w3.org/2011/http#> .
@prefix hctl: <https://www.w3.org/2019/wot/hypermedia#> .
@prefix schema: <http://schema.org/> .
@prefix mobivoc: <http://schema.mobivoc.org/#> .
@prefix gtfs: <http://vocab.gtfs.org/terms#> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix fnml: <http://semweb.mmlab.be/ns/fnml#> .
@prefix fno: <https://w3id.org/function/ontology#> .
@prefix grel: <http://users.ugent.be/~bjdmeest/function/grel.ttl#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix elements: <http://purl.org/dc/elements/1.1/> .
@prefix tree: <https://w3id.org/tree#> .
@prefix ldes: <https://w3id.org/ldes#> .
@prefix idlab: <http://example.com/idlab/function/> .
@prefix hubs: <https://purl.eu/ns/mobility/passenger-transport-hubs#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix opengis: <http://www.opengis.net/ont/geosparql#> .
@prefix dienst: <https://purl.eu/ns/mobility/passenger-transport-hubs#Mobiliteitsdienst.> .
_:TDForm a td:Form;
# URL
hctl:hasTarget "https://api.blue-bike.be/pub/location";
# Content type
hctl:forContentType "application/json";
# Read only
hctl:hasOperationType td:readproperty;
# Set HTTP method and headers
htv:methodName "GET";
htv:headers ([
htv:fieldName "User-Agent";
htv:fieldValue "IDLab - Ghent University - imec (RMLMapper)";
]);
.
_:WoTWebAPISource a td:PropertyAffordance;
td:hasForm _:TDForm;
.
_:WoTWebAPI a td:Thing;
td:hasPropertyAffordance _:WoTWebResource;
.
# Member mappings
_:ResourceReport a rr:TriplesMap;
rml:logicalSource [
a rml:LogicalSource;
rml:source _:WoTWebAPISource;
rml:referenceFormulation ql:JSONPath;
rml:iterator "$.[*]";
];
# hubs:ResourceReport
rr:subjectMap [
rr:termType rr:IRI;
rr:template "https://blue-bike.be/resourcereports/{id}#{last_seen}";
];
# rdf:type
rr:predicateObjectMap [
rr:predicate rdf:type;
rr:objectMap [
rr:constant hubs:ResourceReport; rr:termType rr:IRI;
];
];
# hubs:number
rr:predicateObjectMap [
rr:predicate hubs:number;
rr:objectMap [
rml:reference "bikes_available"; rr:datatype xsd:integer;
];
];
# hubs:service
rr:predicateObjectMap [
rr:predicate hubs:service;
rr:objectMap[
rr:constant "https://blue-bike.be/#me"; rr:termType rr:IRI;
];
];
# elements:date
rr:predicateObjectMap [
rr:predicate elements:date;
rr:objectMap[
rml:reference "last_seen";
rr:datatype xsd:dateTime;
];
];
# Referene to Vervoermiddel (dienst:vervoermiddel)
rr:predicateObjectMap[
rr:predicate dienst:vervoermiddel;
rr:objectMap [
rr:termType rr:IRI;
rr:template "https://blue-bike.be/resourcereports/vervoermiddel/{id}#{last_seen}";
];
];
# Reference to Status (hubs:status)
rr:predicateObjectMap[
rr:predicate hubs:status;
rr:objectMap[
rr:termType rr:IRI;
rr:template "https://blue-bike.be/resourcereports/status/{id}#{last_seen}";
];
];
# Reference to Actuator (hubs:propulsion)
rr:predicateObjectMap[
rr:predicate hubs:propulsion;
rr:objectMap[
rr:termType rr:IRI;
rr:template "https://blue-bike.be/resourcereports/actuator/{id}#{last_seen}";
];
];
# Reference to Type (dcterms:type)
rr:predicateObjectMap[
rr:predicate dcterms:type;
rr:objectMap[
rr:termType rr:IRI;
rr:template "https://blue-bike.be/resourcereports/type/{id}#{last_seen}";
];
];
# Reference to Station (hubs:location)
rr:predicateObjectMap [
rr:predicate hubs:location;
rr:objectMap[
rr:termType rr:IRI;
rr:template "https://blue-bike.be/stations/{id}#{last_seen}";
];
];
.
# Stations
_:StationsTriplesMap a rr:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:source _:WoTWebAPISource;
rml:referenceFormulation ql:JSONPath;
rml:iterator "$.[*]";
];
# Unique IRI generation: $stationId#$generatedAtTime (id#last_seen)
rr:subjectMap [
rr:termType rr:IRI;
rr:template "https://blue-bike.be/stations/{id}#{last_seen}";
];
# rdf:type
rr:predicateObjectMap [
rr:predicate rdf:type;
rr:objectMap [
rr:constant mobivoc:BicycleParkingStation;
rr:termType rr:IRI
];
];
# schema:name
rr:predicateObjectMap [
rr:predicate schema:name ;
rr:objectMap [ rml:reference "name"; rr:datatype xsd:string; ]
];
# dcterms:isVersionOf
rr:predicateObjectMap [
rr:predicate dcterms:isVersionOf ;
rr:objectMap [
rr:template "https://blue-bike.be/stations/{id}";
rr:termType rr:IRI;
]
];
# Reference to Capacity (mobivoc:capacity)
rr:predicateObjectMap[
rr:predicate mobivoc:capacity;
rr:objectMap [
rr:termType rr:IRI;
rr:template "https://blue-bike.be/stations/capacity/{id}#{last_seen}";
];
];
# w3:geometry
rr:predicateObjectMap[
rr:predicate w3:geometry;
rr:objectMap [
rr:termType rr:IRI;
rr:template "https://blue-bike.be/stations/geometry/{id}#{last_seen}";
];
];
.
# Capacities
_:Capacity a rr:TriplesMap;
rml:logicalSource [
a rml:LogicalSource;
rml:source _:WoTWebAPISource;
rml:referenceFormulation ql:JSONPath;
rml:iterator "$.[*]";
];
rr:subjectMap [
rr:termType rr:IRI;
rr:template "https://blue-bike.be/stations/capacity/{id}#{last_seen}";
];
# rdf:type
rr:predicateObjectMap[
rr:predicate rdf:type;
rr:objectMap [rr:constant mobivoc:Capacity; rr:termType rr:IRI;];
];
# Total capacity (mobivoc:totalCapacity) as the sum of bikes_in_use + bikes_available
rr:predicateObjectMap[
rr:predicate mobivoc:totalCapacity;
rr:objectMap[
fnml:functionValue [
rr:predicateObjectMap [
rr:predicate fno:executes ;
rr:objectMap [ rr:constant grel:array_sum ]
];
rr:predicateObjectMap [
rr:predicate grel:p_array_a ;
rr:objectMap [ rml:reference "bikes_in_use"; rr:datatype xsd:integer;]
];
rr:predicateObjectMap [
rr:predicate grel:p_array_a ;
rr:objectMap [ rml:reference "bikes_available"; rr:datatype xsd:integer; ]
];
];
rr:datatype xsd:integer;
];
];
# Reference to Vehicle Type (hubs:vehicleType)
rr:predicateObjectMap[
rr:predicate hubs:vehicleType;
rr:objectMap [
rr:termType rr:IRI;
rr:template "https://blue-bike.be/stations/vehicleType/{id}#{last_seen}";
];
];
.
# Geometries
_:Geometry a rr:TriplesMap;
rml:logicalSource [
a rml:LogicalSource;
rml:source _:WoTWebAPISource;
rml:referenceFormulation ql:JSONPath;
rml:iterator "$.[*]";
];
rr:subjectMap [
rr:termType rr:IRI;
rr:template "https://blue-bike.be/stations/geometry/{id}#{last_seen}";
];
# rdf:type
rr:predicateObjectMap[
rr:predicate rdf:type;
rr:objectMap[
rr:constant w3:Geometry ; rr:termType rr:IRI;
];
];
# opengis:asWKT
rr:predicateObjectMap[
rr:predicate opengis:asWKT;
rr:objectMap[
rr:template "POINT({longitude} {latitude})";
rr:datatype opengis:wktLiteral;
];
];
.
# Vehicle types
_:VehicleType a rr:TriplesMap;
rml:logicalSource [
a rml:LogicalSource;
rml:source _:WoTWebAPISource;
rml:referenceFormulation ql:JSONPath;
rml:iterator "$.[*]";
];
rr:subjectMap [
rr:termType rr:IRI;
rr:template "https://blue-bike.be/stations/vehicleType/{id}#{last_seen}";
];
# rdf:type
rr:predicateObjectMap [
rr:predicate rdf:type;
rr:objectMap [
rr:constant skos:Concept; rr:termType rr:IRI;
];
];
# skos:prefLabel
rr:predicateObjectMap[
rr:predicate skos:prefLabel;
rr:objectMap [
rr:constant "bicycle";
rr:language "en";
];
];
.
# VervoerMiddel
_:VervoerMiddel a rr:TriplesMap;
rml:logicalSource [
a rml:LogicalSource;
rml:source _:WoTWebAPISource;
rml:referenceFormulation ql:JSONPath;
rml:iterator "$.[*]";
];
rr:subjectMap [
rr:termType rr:IRI;
rr:template "https://blue-bike.be/resourcereports/vervoermiddel/{id}#{last_seen}";
];
# rdf:type
rr:predicateObjectMap [
rr:predicate rdf:type;
rr:objectMap [
rr:constant skos:Concept; rr:termType rr:IRI;
];
];
# skos:prefLabel
rr:predicateObjectMap[
rr:predicate skos:prefLabel;
rr:objectMap [
rr:constant "bicycle";
rr:language "en";
];
];
.
# Status
_:Status a rr:TriplesMap;
rml:logicalSource [
a rml:LogicalSource;
rml:source _:WoTWebAPISource;
rml:referenceFormulation ql:JSONPath;
rml:iterator "$.[*]";
];
rr:subjectMap [
rr:termType rr:IRI;
rr:template "https://blue-bike.be/resourcereports/status/{id}#{last_seen}";
];
# rdf:type
rr:predicateObjectMap [
rr:predicate rdf:type;
rr:objectMap [
rr:constant skos:Concept; rr:termType rr:IRI;
];
];
# skos:prefLabel
rr:predicateObjectMap[
rr:predicate skos:prefLabel;
rr:objectMap [
rr:constant "available";
rr:language "en";
];
];
.
# Actuators
_:Actuator a rr:TriplesMap;
rml:logicalSource [
a rml:LogicalSource;
rml:source _:WoTWebAPISource;
rml:referenceFormulation ql:JSONPath;
rml:iterator "$.[*]";
];
rr:subjectMap [
rr:termType rr:IRI;
rr:template "https://blue-bike.be/resourcereports/actuator/{id}#{last_seen}";
];
# rdf:type
rr:predicateObjectMap [
rr:predicate rdf:type;
rr:objectMap [
rr:constant skos:Concept; rr:termType rr:IRI;
];
];
# skos:prefLabel
rr:predicateObjectMap[
rr:predicate skos:prefLabel;
rr:objectMap [
rr:constant "human";
rr:language "en";
];
];
.
# Types
_:Type a rr:TriplesMap;
rml:logicalSource [
a rml:LogicalSource;
rml:source _:WoTWebAPISource;
rml:referenceFormulation ql:JSONPath;
rml:iterator "$.[*]";
];
rr:subjectMap [
rr:termType rr:IRI;
rr:template "https://blue-bike.be/resourcereports/type/{id}#{last_seen}";
];
# rdf:type
rr:predicateObjectMap [
rr:predicate rdf:type;
rr:objectMap [
rr:constant skos:Concept; rr:termType rr:IRI;
];
];
# skos:prefLabel
rr:predicateObjectMap[
rr:predicate skos:prefLabel;
rr:objectMap [
rr:constant "vehicle";
rr:language "en";
];
];
.