forked from pietercolpaert/Blue-Bike-to-Linked-GBFS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bluebike-webapi.ttl
1192 lines (1088 loc) · 79.9 KB
/
bluebike-webapi.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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<http://irail.be/stations/bluebike/Aalst#2021-11-28T14:10:39.592Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 9;
<http://example.com/capacity> 11;
<http://example.com/docksAvailable> 2;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008895000>;
<http://purl.org/dc/terms/created> "2021-11-28T14:10:39.592Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Aalst>;
<http://schema.org/name> "Aalst";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.942901611328"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.038559913635"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Aalter#2021-11-28T14:14:29.423Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 4;
<http://example.com/capacity> 5;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008891140>;
<http://purl.org/dc/terms/created> "2021-11-28T14:14:29.423Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Aalter>;
<http://schema.org/name> "Aalter";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.092498779297"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.449820041656"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Aarschot#2021-11-28T14:11:13.401Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 15;
<http://example.com/capacity> 16;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008833209>;
<http://purl.org/dc/terms/created> "2021-11-28T14:11:13.401Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Aarschot>;
<http://schema.org/name> "Aarschot";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.984699249268"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.824250221252"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Antwerpen-Berchem#2021-11-28T14:11:07.599Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 50;
<http://example.com/capacity> 58;
<http://example.com/docksAvailable> 8;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821121>;
<http://purl.org/dc/terms/created> "2021-11-28T14:11:07.599Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Antwerpen-Berchem>;
<http://schema.org/name> "Antwerpen-Berchem";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.199600219727"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.431789875031"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Antwerpen-Centraal#2021-11-28T14:10:23.383Z> a
<http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 38;
<http://example.com/capacity> 41;
<http://example.com/docksAvailable> 3;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821006>;
<http://purl.org/dc/terms/created> "2021-11-28T14:10:23.383Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Antwerpen-Centraal>;
<http://schema.org/name> "Antwerpen-Centraal";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.217498779297"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.421050071716"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Antwerpen-Luchtbal#2021-11-28T14:16:15.400Z> a
<http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 5;
<http://example.com/capacity> 5;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821063>;
<http://purl.org/dc/terms/created> "2021-11-28T14:16:15.400Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Antwerpen-Luchtbal>;
<http://schema.org/name> "Antwerpen-Luchtbal";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.245498657227"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.424610137939"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Antwerpen-Noorderdokken#2021-11-28T14:16:19.632Z>
a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 4;
<http://example.com/capacity> 4;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821089>;
<http://purl.org/dc/terms/created> "2021-11-28T14:16:19.632Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Antwerpen-Noorderdokken>;
<http://schema.org/name> "Antwerpen-Noorderdokken";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.2617"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.42755"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Antwerpen-Zuid#2021-11-28T14:15:17.196Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 12;
<http://example.com/capacity> 15;
<http://example.com/docksAvailable> 3;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821196>;
<http://purl.org/dc/terms/created> "2021-11-28T14:15:17.196Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Antwerpen-Zuid>;
<http://schema.org/name> "Antwerpen-Zuid";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.198001861572"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.390810012817"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Asse#2021-11-28T14:10:43.925Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 10;
<http://example.com/capacity> 10;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008812070>;
<http://purl.org/dc/terms/created> "2021-11-28T14:10:43.925Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Asse>;
<http://schema.org/name> "Asse";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.906700134277"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.207960128784"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Bergen#2021-11-28T14:10:50.913Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 5;
<http://example.com/capacity> 5;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008881000>;
<http://purl.org/dc/terms/created> "2021-11-28T14:10:50.913Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Bergen>;
<http://schema.org/name> "Bergen";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.455600738525"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.944180011749"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Beveren#2021-11-28T14:15:43.628Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 10;
<http://example.com/capacity> 10;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008894748>;
<http://purl.org/dc/terms/created> "2021-11-28T14:15:43.628Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Beveren>;
<http://schema.org/name> "Beveren";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.208499908447"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.260260105133"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Blankenberge#2021-11-28T14:17:28.954Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 8;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008891405>;
<http://purl.org/dc/terms/created> "2021-11-28T14:17:28.954Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Blankenberge>;
<http://schema.org/name> "Blankenberge";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.3119"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.1338"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/BoechoutP%2BR%20Capenberg#2021-11-28T14:14:24.391Z>
a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 5;
<http://example.com/capacity> 5;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821634>;
<http://purl.org/dc/terms/created> "2021-11-28T14:14:24.391Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/BoechoutP%2BR%20Capenberg>;
<http://schema.org/name> "Boechout P+R Capenberg";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.16849899292"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.494080066681"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Bouwel#2021-11-28T14:16:42.239Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 7;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821725>;
<http://purl.org/dc/terms/created> "2021-11-28T14:16:42.239Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Bouwel>;
<http://schema.org/name> "Bouwel";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.165508"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.746427"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Brugge#2021-11-28T14:10:59.185Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 48;
<http://example.com/capacity> 61;
<http://example.com/docksAvailable> 13;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008891009>;
<http://purl.org/dc/terms/created> "2021-11-28T14:10:59.185Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Brugge>;
<http://schema.org/name> "Brugge";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.196998596191"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.218539953232"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Brugge(Kamgebouw)#2021-11-28T14:15:40.178Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 21;
<http://example.com/capacity> 24;
<http://example.com/docksAvailable> 3;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008891009>;
<http://purl.org/dc/terms/created> "2021-11-28T14:15:40.178Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Brugge(Kamgebouw)>;
<http://schema.org/name> "Brugge (Kamgebouw)";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.196800231934"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.216079950333"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Brussel-Centraal#2021-11-28T14:10:31.381Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 9;
<http://example.com/capacity> 14;
<http://example.com/docksAvailable> 5;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008813003>;
<http://purl.org/dc/terms/created> "2021-11-28T14:10:31.381Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Brussel-Centraal>;
<http://schema.org/name> "Brussel-Centraal";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.844898223877"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.35586977005"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Brussel-Luxemburg#2021-11-28T14:11:22.418Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 7;
<http://example.com/capacity> 7;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008811304>;
<http://purl.org/dc/terms/created> "2021-11-28T14:11:22.418Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Brussel-Luxemburg>;
<http://schema.org/name> "Brussel-Luxemburg";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.838199615479"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.372889995575"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Brussel-Zuid#2021-11-28T14:18:04.477Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 5;
<http://example.com/capacity> 5;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008814001>;
<http://purl.org/dc/terms/created> "2021-11-28T14:18:04.477Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Brussel-Zuid>;
<http://schema.org/name> "Brussel-Zuid";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.835529468767"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.333756181866"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/BrusselNoord#2021-11-28T14:11:28.344Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 25;
<http://example.com/capacity> 25;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008812005>;
<http://purl.org/dc/terms/created> "2021-11-28T14:11:28.344Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/BrusselNoord>;
<http://schema.org/name> "Brussel Noord";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.86009979248"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.360489845276"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/DePanne#2021-11-28T14:17:25.118Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 8;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008892338>;
<http://purl.org/dc/terms/created> "2021-11-28T14:17:25.118Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/DePanne>;
<http://schema.org/name> "De Panne";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.077376"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "2.601611"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Deinze#2021-11-28T14:11:32.716Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 56;
<http://example.com/capacity> 67;
<http://example.com/docksAvailable> 11;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008892106>;
<http://purl.org/dc/terms/created> "2021-11-28T14:11:32.716Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Deinze>;
<http://schema.org/name> "Deinze";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.978199005127"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.534009933472"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/DeinzeLeiespiegel#2021-11-28T14:14:32.696Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 12;
<http://example.com/capacity> 12;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008892106>;
<http://purl.org/dc/terms/created> "2021-11-28T14:14:32.696Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/DeinzeLeiespiegel>;
<http://schema.org/name> "Deinze Leiespiegel";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.982398986816"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.525919914246"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Dendermonde#2021-11-28T14:11:37.095Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 26;
<http://example.com/capacity> 26;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008893401>;
<http://purl.org/dc/terms/created> "2021-11-28T14:11:37.095Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Dendermonde>;
<http://schema.org/name> "Dendermonde";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.023498535156"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.101920127869"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Diegem#2021-11-28T14:16:23.489Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 7;
<http://example.com/capacity> 7;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008811213>;
<http://purl.org/dc/terms/created> "2021-11-28T14:16:23.489Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Diegem>;
<http://schema.org/name> "Diegem";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.889099121094"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.447710037231"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Diest#2021-11-28T14:11:40.900Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 13;
<http://example.com/capacity> 13;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008831401>;
<http://purl.org/dc/terms/created> "2021-11-28T14:11:40.900Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Diest>;
<http://schema.org/name> "Diest";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.993000030518"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "5.051129817963"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Drongen#2021-11-28T14:18:21.448Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 8;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008892031>;
<http://purl.org/dc/terms/created> "2021-11-28T14:18:21.448Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Drongen>;
<http://schema.org/name> "Drongen";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.047432"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.65493"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Eeklo#2021-11-28T14:13:21.663Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 11;
<http://example.com/capacity> 12;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008893708>;
<http://purl.org/dc/terms/created> "2021-11-28T14:13:21.663Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Eeklo>;
<http://schema.org/name> "Eeklo";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.180801391602"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.575040102005"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Ekeren(perron%201)#2021-11-28T14:16:07.685Z> a
<http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 6;
<http://example.com/capacity> 6;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821071>;
<http://purl.org/dc/terms/created> "2021-11-28T14:16:07.685Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Ekeren(perron%201)>;
<http://schema.org/name> "Ekeren (perron 1)";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.284198760986"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.43501996994"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Ekeren(perron%202)#2021-11-28T14:16:10.721Z> a
<http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 7;
<http://example.com/capacity> 7;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821071>;
<http://purl.org/dc/terms/created> "2021-11-28T14:16:10.721Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Ekeren(perron%202)>;
<http://schema.org/name> "Ekeren (perron 2)";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.281398773193"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.434390068054"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Essen#2021-11-28T14:17:15.381Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 7;
<http://example.com/capacity> 7;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821402>;
<http://purl.org/dc/terms/created> "2021-11-28T14:17:15.381Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Essen>;
<http://schema.org/name> "Essen";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.462176"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.451532"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Gavere-Asper#2021-11-28T14:15:59.137Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 3;
<http://example.com/capacity> 4;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008892643>;
<http://purl.org/dc/terms/created> "2021-11-28T14:15:59.137Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Gavere-Asper>;
<http://schema.org/name> "Gavere-Asper";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.929401397705"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.64013004303"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Gaveremobipunt#2021-11-28T14:16:03.445Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 4;
<http://example.com/capacity> 4;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008892643>;
<http://purl.org/dc/terms/created> "2021-11-28T14:16:03.445Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Gaveremobipunt>;
<http://schema.org/name> "Gavere mobipunt";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.930500030518"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.654690027237"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Geel#2021-11-28T14:13:26.104Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 14;
<http://example.com/capacity> 14;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008832433>;
<http://purl.org/dc/terms/created> "2021-11-28T14:13:26.104Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Geel>;
<http://schema.org/name> "Geel";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.168800354004"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.989160060883"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Genk#2021-11-28T14:11:41.350Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 10;
<http://example.com/capacity> 11;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008831765>;
<http://purl.org/dc/terms/created> "2021-11-28T14:11:41.350Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Genk>;
<http://schema.org/name> "Genk";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.967098236084"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "5.496369838715"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Gent-Dampoort#2021-11-28T14:11:41.798Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 47;
<http://example.com/capacity> 52;
<http://example.com/docksAvailable> 5;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008893120>;
<http://purl.org/dc/terms/created> "2021-11-28T14:11:41.798Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Gent-Dampoort>;
<http://schema.org/name> "Gent-Dampoort";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.055999755859"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.740159988403"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Gent-Sint-Pieters(M.%20Hendrikaplein)#2021-11-28T14:15:32.354Z>
a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 49;
<http://example.com/capacity> 54;
<http://example.com/docksAvailable> 5;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008892007>;
<http://purl.org/dc/terms/created> "2021-11-28T14:15:32.354Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Gent-Sint-Pieters(M.%20Hendrikaplein)>;
<http://schema.org/name> "Gent-Sint-Pieters (M. Hendrikaplein)";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.035999298096"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.711899995804"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Gent-Sint-Pieters(St.-Denijslaan)#2021-11-28T14:11:45.758Z>
a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 53;
<http://example.com/capacity> 60;
<http://example.com/docksAvailable> 7;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008892007>;
<http://purl.org/dc/terms/created> "2021-11-28T14:11:45.758Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Gent-Sint-Pieters(St.-Denijslaan)>;
<http://schema.org/name> "Gent-Sint-Pieters (St.-Denijslaan)";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.034900665283"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.709640026093"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Geraardsbergen#2021-11-28T14:14:07.596Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 4;
<http://example.com/capacity> 7;
<http://example.com/docksAvailable> 3;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008895505>;
<http://purl.org/dc/terms/created> "2021-11-28T14:14:07.596Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Geraardsbergen>;
<http://schema.org/name> "Geraardsbergen ";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.770500183105"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.872560024261"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Haacht#2021-11-28T14:16:45.215Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 7;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008822517>;
<http://purl.org/dc/terms/created> "2021-11-28T14:16:45.215Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Haacht>;
<http://schema.org/name> "Haacht";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.966578"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.613315"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Halle#2021-11-28T14:11:50.899Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 19;
<http://example.com/capacity> 20;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008814308>;
<http://purl.org/dc/terms/created> "2021-11-28T14:11:50.899Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Halle>;
<http://schema.org/name> "Halle";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.7333984375"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.239940166473"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Harelbeke#2021-11-28T14:15:53.206Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 11;
<http://example.com/capacity> 11;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008896115>;
<http://purl.org/dc/terms/created> "2021-11-28T14:15:53.206Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Harelbeke>;
<http://schema.org/name> "Harelbeke";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.855701446533"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.31374001503"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Hasselt#2021-11-28T14:11:56.053Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 57;
<http://example.com/capacity> 59;
<http://example.com/docksAvailable> 2;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008831005>;
<http://purl.org/dc/terms/created> "2021-11-28T14:11:56.053Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Hasselt>;
<http://schema.org/name> "Hasselt";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.930999755859"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "5.32742023468"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Heist#2021-11-28T14:17:37.620Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 6;
<http://example.com/capacity> 6;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008891645>;
<http://purl.org/dc/terms/created> "2021-11-28T14:17:37.620Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Heist>;
<http://schema.org/name> "Heist";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.334168"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.239668"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Heist-op-den-Berg#2021-11-28T14:13:39.610Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 13;
<http://example.com/capacity> 13;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821832>;
<http://purl.org/dc/terms/created> "2021-11-28T14:13:39.610Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Heist-op-den-Berg>;
<http://schema.org/name> "Heist-op-den-Berg";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.074199676514"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.708779811859"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Herentals#2021-11-28T14:12:03.489Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 24;
<http://example.com/capacity> 28;
<http://example.com/docksAvailable> 4;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821717>;
<http://purl.org/dc/terms/created> "2021-11-28T14:12:03.489Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Herentals>;
<http://schema.org/name> "Herentals";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.180999755859"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.828859806061"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Heusden#2021-11-28T14:16:32.745Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 7;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008832243>;
<http://purl.org/dc/terms/created> "2021-11-28T14:16:32.745Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Heusden>;
<http://schema.org/name> "Heusden";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.03833"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "5.281699"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Heverlee#2021-11-28T14:15:47.689Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 3;
<http://example.com/capacity> 4;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008833126>;
<http://purl.org/dc/terms/created> "2021-11-28T14:15:47.689Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Heverlee>;
<http://schema.org/name> "Heverlee ";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.862598419189"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.695439815521"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Hove#2021-11-28T14:17:11.963Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 7;
<http://example.com/capacity> 7;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821337>;
<http://purl.org/dc/terms/created> "2021-11-28T14:17:11.963Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Hove>;
<http://schema.org/name> "Hove";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.1541195"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.464733"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Ieper#2021-11-28T14:14:11.674Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 6;
<http://example.com/capacity> 9;
<http://example.com/docksAvailable> 3;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008896503>;
<http://purl.org/dc/terms/created> "2021-11-28T14:14:11.674Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Ieper>;
<http://schema.org/name> "Ieper";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.848400115967"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "2.876270055771"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Izegem#2021-11-28T14:15:25.090Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 10;
<http://example.com/capacity> 11;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008896909>;
<http://purl.org/dc/terms/created> "2021-11-28T14:15:25.090Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Izegem>;
<http://schema.org/name> "Izegem";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.9208984375"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.214819908142"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Kalmthout-%20Heide#2021-11-28T14:14:47.650Z> a
<http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 12;
<http://example.com/capacity> 12;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821519>;
<http://purl.org/dc/terms/created> "2021-11-28T14:14:47.650Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Kalmthout-%20Heide>;
<http://schema.org/name> "Kalmthout - Heide";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.365100860596"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.460559844971"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Knokke#2021-11-28T14:17:41.425Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 12;
<http://example.com/capacity> 12;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008891660>;
<http://purl.org/dc/terms/created> "2021-11-28T14:17:41.425Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Knokke>;
<http://schema.org/name> "Knokke";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.34018"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.28454"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Kontich-Lint#2021-11-28T14:14:56.637Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 8;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821311>;
<http://purl.org/dc/terms/created> "2021-11-28T14:14:56.637Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Kontich-Lint>;
<http://schema.org/name> "Kontich-Lint";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.134300231934"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.476119995117"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Kortrijk#2021-11-28T14:12:07.012Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 52;
<http://example.com/capacity> 60;
<http://example.com/docksAvailable> 8;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008896008>;
<http://purl.org/dc/terms/created> "2021-11-28T14:12:07.012Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Kortrijk>;
<http://schema.org/name> "Kortrijk";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.823799133301"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.263269901276"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Landegem#2021-11-28T14:17:51.236Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 8;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008892056>;
<http://purl.org/dc/terms/created> "2021-11-28T14:17:51.236Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Landegem>;
<http://schema.org/name> "Landegem";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.064208"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.575647"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Landen#2021-11-28T14:17:19.909Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 7;
<http://example.com/capacity> 7;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008833605>;
<http://purl.org/dc/terms/created> "2021-11-28T14:17:19.909Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Landen>;
<http://schema.org/name> "Landen";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.74829"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "5.079402"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Leuven(Kop%20van%20Kessel-Lo)#2021-11-28T14:15:36.368Z>
a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 14;
<http://example.com/capacity> 21;
<http://example.com/docksAvailable> 7;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008833001>;
<http://purl.org/dc/terms/created> "2021-11-28T14:15:36.368Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Leuven(Kop%20van%20Kessel-Lo)>;
<http://schema.org/name> "Leuven (Kop van Kessel-Lo)";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.882499694824"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.716639995575"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Leuven(Tiensevest)#2021-11-28T14:12:07.495Z> a
<http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 71;
<http://example.com/capacity> 82;
<http://example.com/docksAvailable> 11;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008833001>;
<http://purl.org/dc/terms/created> "2021-11-28T14:12:07.495Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Leuven(Tiensevest)>;
<http://schema.org/name> "Leuven (Tiensevest)";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.87979888916"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.715939998627"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Lier#2021-11-28T14:12:13.156Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 26;
<http://example.com/capacity> 29;
<http://example.com/docksAvailable> 3;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821600>;
<http://purl.org/dc/terms/created> "2021-11-28T14:12:13.156Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Lier>;
<http://schema.org/name> "Lier";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.135799407959"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.56152009964"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/LierP%2BR%20De%20Mol#2021-11-28T14:14:19.206Z>
a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 8;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821600>;
<http://purl.org/dc/terms/created> "2021-11-28T14:14:19.206Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/LierP%2BR%20De%20Mol>;
<http://schema.org/name> "Lier P+R De Mol";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.125301361084"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.573339939117"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/LierVeemarkt#2021-11-28T14:14:15.415Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 2;
<http://example.com/capacity> 4;
<http://example.com/docksAvailable> 2;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821600>;
<http://purl.org/dc/terms/created> "2021-11-28T14:14:15.415Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/LierVeemarkt>;
<http://schema.org/name> "Lier Veemarkt";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.128299713135"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.583220005035"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Lokeren#2021-11-28T14:12:16.448Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 12;
<http://example.com/capacity> 14;
<http://example.com/docksAvailable> 2;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008894201>;
<http://purl.org/dc/terms/created> "2021-11-28T14:12:16.448Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Lokeren>;
<http://schema.org/name> "Lokeren";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.107398986816"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.986469984055"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Lommel#2021-11-28T14:17:09.109Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 7;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008832565>;
<http://purl.org/dc/terms/created> "2021-11-28T14:17:09.109Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Lommel>;
<http://schema.org/name> "Lommel";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.21177"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "5.312579"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Luik#2021-11-28T14:12:21.113Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 4;
<http://example.com/capacity> 6;
<http://example.com/docksAvailable> 2;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008841004>;
<http://purl.org/dc/terms/created> "2021-11-28T14:12:21.113Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Luik>;
<http://schema.org/name> "Luik";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.625801086426"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "5.565639972687"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Mechelen#2021-11-28T14:12:26.111Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 63;
<http://example.com/capacity> 72;
<http://example.com/docksAvailable> 9;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008822004>;
<http://purl.org/dc/terms/created> "2021-11-28T14:12:26.111Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Mechelen>;
<http://schema.org/name> "Mechelen";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.0178"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.48299"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Mechelen-Nekkerspoel#2021-11-28T14:13:50.920Z>
a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 16;
<http://example.com/capacity> 16;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008822343>;
<http://purl.org/dc/terms/created> "2021-11-28T14:13:50.920Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Mechelen-Nekkerspoel>;
<http://schema.org/name> "Mechelen-Nekkerspoel";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.030200958252"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.489570140839"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/MechelenVeemarkt#2021-11-28T14:14:51.951Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 3;
<http://example.com/capacity> 6;
<http://example.com/docksAvailable> 3;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008822343>;
<http://purl.org/dc/terms/created> "2021-11-28T14:14:51.951Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/MechelenVeemarkt>;
<http://schema.org/name> "Mechelen Veemarkt";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.029300689697"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.484320163727"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Meise#2021-11-28T14:16:39.205Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 8;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008812047>;
<http://purl.org/dc/terms/created> "2021-11-28T14:16:39.205Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Meise>;
<http://schema.org/name> "Meise";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.932948204381"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.329820851913"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Merelbeke#2021-11-28T14:18:26.140Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 6;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 2;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008893013>;
<http://purl.org/dc/terms/created> "2021-11-28T14:18:26.140Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Merelbeke>;
<http://schema.org/name> "Merelbeke";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.019818"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.764542"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Mol#2021-11-28T14:12:31.341Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 14;
<http://example.com/capacity> 17;
<http://example.com/docksAvailable> 3;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008832409>;
<http://purl.org/dc/terms/created> "2021-11-28T14:12:31.341Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Mol>;
<http://schema.org/name> "Mol";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.190498352051"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "5.115129947662"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Mol-%20De%20Nete#2021-11-28T14:18:10.371Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 7;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008832409>;
<http://purl.org/dc/terms/created> "2021-11-28T14:18:10.371Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Mol-%20De%20Nete>;
<http://schema.org/name> "Mol - De Nete";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.18119"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "5.112421"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Mortsel-Oude-God#2021-11-28T14:12:36.399Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 5;
<http://example.com/capacity> 7;
<http://example.com/docksAvailable> 2;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821238>;
<http://purl.org/dc/terms/created> "2021-11-28T14:12:36.399Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Mortsel-Oude-God>;
<http://schema.org/name> "Mortsel-Oude-God";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.171199798584"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.455999851227"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Namen#2021-11-28T14:12:41.167Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 6;
<http://example.com/capacity> 6;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008863008>;
<http://purl.org/dc/terms/created> "2021-11-28T14:12:41.167Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Namen>;
<http://schema.org/name> "Namen";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.468601226807"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.862239837646"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Ninove#2021-11-28T14:13:33.200Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 9;
<http://example.com/capacity> 11;
<http://example.com/docksAvailable> 2;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008895760>;
<http://purl.org/dc/terms/created> "2021-11-28T14:13:33.200Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Ninove>;
<http://schema.org/name> "Ninove";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.839500427246"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.026179790497"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Noorderkempen#2021-11-28T14:14:43.866Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 12;
<http://example.com/capacity> 12;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821105>;
<http://purl.org/dc/terms/created> "2021-11-28T14:14:43.866Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Noorderkempen>;
<http://schema.org/name> "Noorderkempen";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.35710144043"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.632410049438"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Oostende#2021-11-28T14:12:44.410Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 55;
<http://example.com/capacity> 61;
<http://example.com/docksAvailable> 6;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008891702>;
<http://purl.org/dc/terms/created> "2021-11-28T14:12:44.410Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Oostende>;
<http://schema.org/name> "Oostende";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.228298187256"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "2.925649881363"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Oudenaarde#2021-11-28T14:13:59.173Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 6;
<http://example.com/capacity> 6;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008892601>;
<http://purl.org/dc/terms/created> "2021-11-28T14:13:59.173Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Oudenaarde>;
<http://schema.org/name> "Oudenaarde ";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.851299285889"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.601880073547"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Poperinge#2021-11-28T14:14:40.134Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 7;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008896735>;
<http://purl.org/dc/terms/created> "2021-11-28T14:14:40.134Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Poperinge>;
<http://schema.org/name> "Poperinge";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.854499816895"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "2.735719919205"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Roeselare#2021-11-28T14:12:48.123Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 23;
<http://example.com/capacity> 27;
<http://example.com/docksAvailable> 4;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008896800>;
<http://purl.org/dc/terms/created> "2021-11-28T14:12:48.123Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Roeselare>;
<http://schema.org/name> "Roeselare";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.949001312256"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.130480051041"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Sint-Genesius-Rode#2021-11-28T14:17:46.182Z> a
<http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 9;
<http://example.com/capacity> 9;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008814167>;
<http://purl.org/dc/terms/created> "2021-11-28T14:17:46.182Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Sint-Genesius-Rode>;
<http://schema.org/name> "Sint-Genesius-Rode";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.747786"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.361626"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Sint-Niklaas#2021-11-28T14:12:51.372Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 28;
<http://example.com/capacity> 28;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008894508>;
<http://purl.org/dc/terms/created> "2021-11-28T14:12:51.372Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Sint-Niklaas>;
<http://schema.org/name> "Sint-Niklaas";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.171398162842"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.143700122833"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Sint-Truiden#2021-11-28T14:12:54.915Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 6;
<http://example.com/capacity> 7;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008831807>;
<http://purl.org/dc/terms/created> "2021-11-28T14:12:54.915Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Sint-Truiden>;
<http://schema.org/name> "Sint-Truiden";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.817401885986"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "5.176330089569"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Temse#2021-11-28T14:16:53.647Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 7;
<http://example.com/capacity> 7;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008894672>;
<http://purl.org/dc/terms/created> "2021-11-28T14:16:53.647Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Temse>;
<http://schema.org/name> "Temse";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.125867"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.221333"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Tielt#2021-11-28T14:15:01.917Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 8;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008892254>;
<http://purl.org/dc/terms/created> "2021-11-28T14:15:01.917Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Tielt>;
<http://schema.org/name> "Tielt";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.990600585938"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.329819917679"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Tienen#2021-11-28T14:14:36.581Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 12;
<http://example.com/capacity> 16;
<http://example.com/docksAvailable> 4;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008833308>;
<http://purl.org/dc/terms/created> "2021-11-28T14:14:36.581Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Tienen>;
<http://schema.org/name> "Tienen ";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.808200836182"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.92561006546"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/TienenP%26amp%3BR%20Sporthalstraat#2021-11-28T14:18:15.952Z>
a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 8;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008833308>;
<http://purl.org/dc/terms/created> "2021-11-28T14:18:15.952Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/TienenP%26amp%3BR%20Sporthalstraat>;
<http://schema.org/name> "Tienen P&R Sporthalstraat";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.819656"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "4.944743"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Tongeren#2021-11-28T14:13:45.849Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 8;
<http://example.com/capacity> 8;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008831310>;
<http://purl.org/dc/terms/created> "2021-11-28T14:13:45.849Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Tongeren>;
<http://schema.org/name> "Tongeren";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "50.78450012207"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "5.473400115967"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Torhout#2021-11-28T14:13:00.161Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 10;
<http://example.com/capacity> 10;
<http://example.com/docksAvailable> 0;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008891314>;
<http://purl.org/dc/terms/created> "2021-11-28T14:13:00.161Z";
<http://purl.org/dc/terms/isVersionOf> <http://irail.be/stations/bluebike/Torhout>;
<http://schema.org/name> "Torhout";
<http://www.w3.org/2003/01/geo/wgs84_pos#latitude> "51.064800262451"^^<http://www.w3.org/2001/XMLSchema#float>;
<http://www.w3.org/2003/01/geo/wgs84_pos#longitude> "3.105509996414"^^<http://www.w3.org/2001/XMLSchema#float> .
<http://irail.be/stations/bluebike/Turnhout#2021-11-28T14:13:06.651Z> a <http://schema.org/ParkingFacility>;
<http://example.com/bikesAvailable> 9;
<http://example.com/capacity> 10;
<http://example.com/docksAvailable> 1;
<http://example.com/nearby> <http://irail.be/stations/NMBS/008821907>;