forked from oSoc18Spain/onto-transacc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransportAccessibilityv3.owl
1115 lines (719 loc) · 49 KB
/
TransportAccessibilityv3.owl
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
<?xml version="1.0"?>
<rdf:RDF xmlns="http://transacc.linkeddata.es/def/core#"
xml:base="http://transacc.linkeddata.es/def/core"
xmlns:ns="http://www.w3.org/2003/06/sw-vocab-status/ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:gtfs="http://vocab.gtfs.org/terms#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:ns2="http://creativecommons.org/ns#"
xmlns:skos1="http://www.w3.org/2008/05/skos#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:wgs84_pos="http://www.w3.org/2003/01/geo/wgs84_pos#"
xmlns:dcat="http://www.w3.org/ns/dcat#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:wot="http://xmlns.com/wot/0.1/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<owl:Ontology rdf:about="http://transacc.linkeddata.es/def/core#">
<owl:versionIRI rdf:resource="http://transacc.linkeddata.es/def/core#"/>
<terms:creator>Edna Ruckhaus</terms:creator>
<terms:description>Ontology that extends the GTFS (General Transit Feed Specification) model to include accessibility features. Case study is public transportation in Madrid, specifically the Bus and Metro systems.</terms:description>
<rdfs:comment>Ontology for the description of accessibility features of public transportation</rdfs:comment>
<terms:title>Public Transport Accessibility</terms:title>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/elements/1.1/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description">
<terms:description xml:lang="en">Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.</terms:description>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#description-006"/>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">1999-07-02</terms:issued>
<terms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</terms:modified>
<rdfs:comment xml:lang="en">An account of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en">Description</rdfs:label>
<skos:note xml:lang="en">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/identifier -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/identifier">
<terms:description xml:lang="en">Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. </terms:description>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#identifier-006"/>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">1999-07-02</terms:issued>
<terms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</terms:modified>
<rdfs:comment xml:lang="en">An unambiguous reference to the resource within a given context.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en">Identifier</rdfs:label>
<skos:note xml:lang="en">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document "DCMI Metadata Terms" (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description"/>
<!-- http://purl.org/dc/terms/hasVersion -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/hasVersion"/>
<!-- http://purl.org/dc/terms/identifier -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/identifier">
<terms:description xml:lang="en">Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. </terms:description>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#identifierT-001"/>
<rdfs:comment xml:lang="en">An unambiguous reference to the resource within a given context.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Identifier</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/identifier"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/issued -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/issued"/>
<!-- http://purl.org/dc/terms/modified -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/modified"/>
<!-- http://vocab.gtfs.org/terms#comment -->
<owl:AnnotationProperty rdf:about="http://vocab.gtfs.org/terms#comment"/>
<!-- http://www.w3.org/2003/01/geo/wgs84_pos#lat -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2003/01/geo/wgs84_pos#lat"/>
<!-- http://www.w3.org/2003/01/geo/wgs84_pos#long -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2003/01/geo/wgs84_pos#long"/>
<!-- http://www.w3.org/2003/06/sw-vocab-status/ns#term_status -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<!-- http://www.w3.org/2004/02/skos/core#note -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#note"/>
<!-- http://www.w3.org/2008/05/skos#definition -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2008/05/skos#definition"/>
<!-- http://xmlns.com/foaf/0.1/age -->
<owl:AnnotationProperty rdf:about="http://xmlns.com/foaf/0.1/age"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2001/XMLSchema#date -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#date"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://transacc.linkeddata.es/def/core#adresses -->
<owl:ObjectProperty rdf:about="http://transacc.linkeddata.es/def/core#adresses">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#DisabilityFeature"/>
<rdfs:range rdf:resource="http://transacc.linkeddata.es/def/core#DisabilityType"/>
<rdfs:comment xml:lang="es">A disability feature adresses a certain disability type</rdfs:comment>
</owl:ObjectProperty>
<!-- http://transacc.linkeddata.es/def/core#annotates -->
<owl:ObjectProperty rdf:about="http://transacc.linkeddata.es/def/core#annotates">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#Annotation"/>
<rdfs:range rdf:resource="http://transacc.linkeddata.es/def/core#ElementWDisabFeature"/>
<rdfs:comment xml:lang="es">Any transportation element (station, exterior access, platform) disability feature can be annotated by a user in different dates</rdfs:comment>
</owl:ObjectProperty>
<!-- http://transacc.linkeddata.es/def/core#content -->
<owl:ObjectProperty rdf:about="http://transacc.linkeddata.es/def/core#content">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#Notice"/>
<rdfs:range rdf:resource="http://www.w3.org/2008/05/skos#Concept"/>
<rdfs:comment>The content of a Notice, is a SKOS concept</rdfs:comment>
</owl:ObjectProperty>
<!-- http://transacc.linkeddata.es/def/core#exteriorAccessTo -->
<owl:ObjectProperty rdf:about="http://transacc.linkeddata.es/def/core#exteriorAccessTo">
<rdfs:subPropertyOf rdf:resource="http://vocab.gtfs.org/terms#parentStation"/>
<rdfs:range rdf:resource="http://vocab.gtfs.org/terms#Station"/>
</owl:ObjectProperty>
<!-- http://transacc.linkeddata.es/def/core#feature -->
<owl:ObjectProperty rdf:about="http://transacc.linkeddata.es/def/core#feature">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#DisabilityFeature"/>
<rdfs:range rdf:resource="http://www.w3.org/2008/05/skos#Concept"/>
<rdfs:comment>The disability feature of a transportation element (bus stop, station, exterior access, etc.). Is a SKOS concept</rdfs:comment>
</owl:ObjectProperty>
<!-- http://transacc.linkeddata.es/def/core#hasDirection -->
<owl:ObjectProperty rdf:about="http://transacc.linkeddata.es/def/core#hasDirection">
<rdfs:domain rdf:resource="http://vocab.gtfs.org/terms#Route"/>
<rdfs:range rdf:resource="http://transacc.linkeddata.es/def/core#RouteDirection"/>
<rdfs:comment xml:lang="es">a Route can have in general two directions, characterized by headsign</rdfs:comment>
</owl:ObjectProperty>
<!-- http://transacc.linkeddata.es/def/core#hasDisabilityFeature -->
<owl:ObjectProperty rdf:about="http://transacc.linkeddata.es/def/core#hasDisabilityFeature">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#ElementWDisabFeature"/>
<rdfs:range rdf:resource="http://transacc.linkeddata.es/def/core#DisabilityFeature"/>
</owl:ObjectProperty>
<!-- http://transacc.linkeddata.es/def/core#hasDisabilityType -->
<owl:ObjectProperty rdf:about="http://transacc.linkeddata.es/def/core#hasDisabilityType">
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<rdfs:range rdf:resource="http://transacc.linkeddata.es/def/core#DisabilityType"/>
<rdfs:comment xml:lang="es">A person has a type of disability</rdfs:comment>
</owl:ObjectProperty>
<!-- http://transacc.linkeddata.es/def/core#hasNotice -->
<owl:ObjectProperty rdf:about="http://transacc.linkeddata.es/def/core#hasNotice">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#ElementWNotice"/>
<rdfs:range rdf:resource="http://transacc.linkeddata.es/def/core#Notice"/>
<rdfs:comment xml:lang="es">A station, platform, bus stop can have notices</rdfs:comment>
</owl:ObjectProperty>
<!-- http://transacc.linkeddata.es/def/core#hasStair -->
<owl:ObjectProperty rdf:about="http://transacc.linkeddata.es/def/core#hasStair">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#FootPass"/>
<rdfs:range rdf:resource="http://transacc.linkeddata.es/def/core#Stair"/>
<rdfs:comment xml:lang="es">An exterior access may have stairs</rdfs:comment>
</owl:ObjectProperty>
<!-- http://transacc.linkeddata.es/def/core#impairment -->
<owl:ObjectProperty rdf:about="http://transacc.linkeddata.es/def/core#impairment">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#DisabilityType"/>
<rdfs:range rdf:resource="http://www.w3.org/2008/05/skos#Concept"/>
</owl:ObjectProperty>
<!-- http://transacc.linkeddata.es/def/core#madeBy -->
<owl:ObjectProperty rdf:about="http://transacc.linkeddata.es/def/core#madeBy">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#Annotation"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/10/swap/pim/contact#Person"/>
<rdfs:comment xml:lang="es">An annotation is made by a person (user)</rdfs:comment>
</owl:ObjectProperty>
<!-- http://transacc.linkeddata.es/def/core#ofDisabilityFeature -->
<owl:ObjectProperty rdf:about="http://transacc.linkeddata.es/def/core#ofDisabilityFeature">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#Annotation"/>
<rdfs:range rdf:resource="http://transacc.linkeddata.es/def/core#DisabilityFeature"/>
<rdfs:comment>An annotation corresponds to a certain disability feature of a transportation element (station, platform, exterior access, bus stop)</rdfs:comment>
</owl:ObjectProperty>
<!-- http://transacc.linkeddata.es/def/core#toRouteDirection -->
<owl:ObjectProperty rdf:about="http://transacc.linkeddata.es/def/core#toRouteDirection">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#Platform"/>
<rdfs:range rdf:resource="http://transacc.linkeddata.es/def/core#RouteDirection"/>
<rdfs:comment xml:lang="es">A platform corresponds to a direction of a route (RouteDirection) in a certain stattion</rdfs:comment>
</owl:ObjectProperty>
<!-- http://transacc.linkeddata.es/def/core#toStation -->
<owl:ObjectProperty rdf:about="http://transacc.linkeddata.es/def/core#toStation">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#Platform"/>
<rdfs:range rdf:resource="http://vocab.gtfs.org/terms#Station"/>
<rdfs:comment xml:lang="es">A platform corresponds to a direction of a route in a certain station</rdfs:comment>
</owl:ObjectProperty>
<!-- http://vocab.gtfs.org/terms#destinationStop -->
<owl:ObjectProperty rdf:about="http://vocab.gtfs.org/terms#destinationStop">
<rdfs:range rdf:resource="http://vocab.gtfs.org/terms#Stop"/>
<gtfs:comment xml:lang="es">Conectado a to_stop_id en transfers.txt</gtfs:comment>
<gtfs:comment xml:lang="en">Map from to_stop_id in transfers.txt</gtfs:comment>
<rdfs:comment xml:lang="es">Enlace al gtfs:Stop hacia el que va el viaje</rdfs:comment>
<rdfs:comment xml:lang="en">Link to gtfs:Stop to go to</rdfs:comment>
<rdfs:label xml:lang="en">Destination Stop</rdfs:label>
<rdfs:label xml:lang="es">parada de destino</rdfs:label>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:ObjectProperty>
<!-- http://vocab.gtfs.org/terms#originStop -->
<owl:ObjectProperty rdf:about="http://vocab.gtfs.org/terms#originStop">
<rdfs:range rdf:resource="http://vocab.gtfs.org/terms#Stop"/>
<gtfs:comment xml:lang="es">Conectado a from_stop_id en transfers.txt</gtfs:comment>
<gtfs:comment xml:lang="en">Map from from_stop_id in transfers.txt</gtfs:comment>
<rdfs:comment xml:lang="es">Enlace al gtfs:Stop desde el que empieza el viaje</rdfs:comment>
<rdfs:comment xml:lang="en">Link to gtfs:Stop to start from</rdfs:comment>
<rdfs:label xml:lang="en">Origin Stop</rdfs:label>
<rdfs:label xml:lang="es">parada de origen</rdfs:label>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:ObjectProperty>
<!-- http://vocab.gtfs.org/terms#parentStation -->
<owl:ObjectProperty rdf:about="http://vocab.gtfs.org/terms#parentStation">
<rdfs:domain rdf:resource="http://vocab.gtfs.org/terms#Stop"/>
<rdfs:range rdf:resource="http://vocab.gtfs.org/terms#Station"/>
<gtfs:comment xml:lang="es">Enlaza a una línea en stop.txt donde locationType=1.</gtfs:comment>
<gtfs:comment xml:lang="en">Links to a row in stop.txt where locationType=1.</gtfs:comment>
<rdfs:comment xml:lang="es">gtfs:parentStation identifica la estación asociada a la parada</rdfs:comment>
<rdfs:comment xml:lang="en">gtfs:parentStation identifies the station associated with the stop</rdfs:comment>
<rdfs:label xml:lang="en">Parent Station</rdfs:label>
<rdfs:label xml:lang="es">estación matriz</rdfs:label>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:ObjectProperty>
<!-- http://vocab.gtfs.org/terms#route -->
<owl:ObjectProperty rdf:about="http://vocab.gtfs.org/terms#route">
<rdfs:domain rdf:resource="http://vocab.gtfs.org/terms#Trip"/>
<rdfs:range rdf:resource="http://vocab.gtfs.org/terms#Route"/>
<rdfs:comment xml:lang="es">Este viaje forma parte de esta gtfs:Route</rdfs:comment>
<rdfs:comment xml:lang="en">This thing is applicable to this gtfs:Route</rdfs:comment>
<rdfs:label xml:lang="en">Route</rdfs:label>
<rdfs:label xml:lang="es">ruta</rdfs:label>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:ObjectProperty>
<!-- http://vocab.gtfs.org/terms#shape -->
<owl:ObjectProperty rdf:about="http://vocab.gtfs.org/terms#shape">
<rdfs:range rdf:resource="http://vocab.gtfs.org/terms#Shape"/>
<rdfs:comment xml:lang="es">Un enlace al recorrido que sigue el viaje.</rdfs:comment>
<rdfs:comment xml:lang="en">a link to a shape the trip follows.</rdfs:comment>
<rdfs:label xml:lang="en">Shape</rdfs:label>
<rdfs:label xml:lang="es">forma del recorrido, trayecto, itinerario</rdfs:label>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:ObjectProperty>
<!-- http://vocab.gtfs.org/terms#shapePoint -->
<owl:ObjectProperty rdf:about="http://vocab.gtfs.org/terms#shapePoint">
<rdfs:domain rdf:resource="http://vocab.gtfs.org/terms#Shape"/>
<rdfs:range rdf:resource="http://vocab.gtfs.org/terms#ShapePoint"/>
<rdfs:comment xml:lang="es">Enlaza a gtfs:ShapePoint</rdfs:comment>
<rdfs:comment xml:lang="en">Links to a gtfs:ShapePoint</rdfs:comment>
<rdfs:label xml:lang="en">Shape Point</rdfs:label>
<rdfs:label xml:lang="es">punto de recorrido</rdfs:label>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:ObjectProperty>
<!-- http://vocab.gtfs.org/terms#stop -->
<owl:ObjectProperty rdf:about="http://vocab.gtfs.org/terms#stop">
<rdfs:range rdf:resource="http://vocab.gtfs.org/terms#Stop"/>
<rdfs:comment xml:lang="es">Indica que este concepto tiene cierta parada.</rdfs:comment>
<rdfs:comment xml:lang="en">Indicates that this has a certain stop.</rdfs:comment>
<rdfs:label xml:lang="en">Stop</rdfs:label>
<rdfs:label xml:lang="es">parada</rdfs:label>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:ObjectProperty>
<!-- http://vocab.gtfs.org/terms#trip -->
<owl:ObjectProperty rdf:about="http://vocab.gtfs.org/terms#trip">
<rdfs:range rdf:resource="http://vocab.gtfs.org/terms#Trip"/>
<rdfs:comment xml:lang="es">Indica que este concepto es parte de cierto gtfs:Trip</rdfs:comment>
<rdfs:comment xml:lang="en">Indicates that this is part of a certain gtfs:Trip</rdfs:comment>
<rdfs:label xml:lang="en">Trip</rdfs:label>
<rdfs:label xml:lang="es">viaje</rdfs:label>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:ObjectProperty>
<!-- http://vocab.gtfs.org/terms#wheelchairAccessible -->
<owl:ObjectProperty rdf:about="http://vocab.gtfs.org/terms#wheelchairAccessible">
<rdfs:domain rdf:resource="http://vocab.gtfs.org/terms#Stop"/>
<rdfs:range rdf:resource="http://vocab.gtfs.org/terms#WheelchairBoardingStatus"/>
<gtfs:comment xml:lang="es">Si wheelchair_accessible es 0, mapee a gtfs:CheckParentStation; si es 1, mapee a gtfs:WheelchairAccessible; si es 2, mapee a gtfs:NotWheelchairAccessible.</gtfs:comment>
<gtfs:comment xml:lang="en">When wheelchair_accessible is 0, map to gtfs:CheckParentStation; if 1 map to gtfs:WheelchairAccessible; if 2 map to gtfs:NotWheelchairAccessible.</gtfs:comment>
<rdfs:comment xml:lang="es">La parada o estación específica es accesible para silla de ruedas. Si esta parada es parte de una estación, hay también una ruta accesible desde el exterior de la estación hasta la parada.</rdfs:comment>
<rdfs:comment xml:lang="en">Wheelchair boardings are possible from the specified stop or station. If this stop is part of a station, there is also a wheelchair accessible path from outside the station towards the stop.</rdfs:comment>
<rdfs:label xml:lang="es">accesible para silla de ruedas</rdfs:label>
<rdfs:label xml:lang="en">wheelchair boarding</rdfs:label>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:ObjectProperty>
<!-- http://www.w3.org/2008/05/skos#inScheme -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2008/05/skos#inScheme">
<rdfs:range rdf:resource="http://www.w3.org/2008/05/skos#ConceptScheme"/>
<terms:issued>2008-05-xx</terms:issued>
<rdfs:comment xml:lang="en">A concept may be a member of more than one concept scheme.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2008/05/skos"/>
<rdfs:label xml:lang="en">in scheme</rdfs:label>
<skos1:definition xml:lang="en">A concept scheme in which the concept is included.</skos1:definition>
</owl:ObjectProperty>
<!-- http://xmlns.com/foaf/0.1/account -->
<owl:ObjectProperty rdf:about="http://xmlns.com/foaf/0.1/account">
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
<rdfs:comment>Indicates an account held by this agent.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
<rdfs:label>account</rdfs:label>
<ns:term_status>testing</ns:term_status>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://transacc.linkeddata.es/def/core#code -->
<owl:DatatypeProperty rdf:about="http://transacc.linkeddata.es/def/core#code">
<rdfs:domain rdf:resource="http://vocab.gtfs.org/terms#Stop"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</owl:DatatypeProperty>
<!-- http://transacc.linkeddata.es/def/core#dateAnnotation -->
<owl:DatatypeProperty rdf:about="http://transacc.linkeddata.es/def/core#dateAnnotation">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#Annotation"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<rdfs:comment>The date an annotation was made</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://transacc.linkeddata.es/def/core#routeId -->
<owl:DatatypeProperty rdf:about="http://transacc.linkeddata.es/def/core#routeId">
<rdfs:domain rdf:resource="http://vocab.gtfs.org/terms#Route"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#positiveInteger"/>
<rdfs:comment>The id of a route</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://transacc.linkeddata.es/def/core#state -->
<owl:DatatypeProperty rdf:about="http://transacc.linkeddata.es/def/core#state">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#Annotation"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:comment xml:lang="es">In an annotation, state of a disability feature in a transport element (for example "out of order"</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://transacc.linkeddata.es/def/core#stopId -->
<owl:DatatypeProperty rdf:about="http://transacc.linkeddata.es/def/core#stopId">
<rdfs:domain rdf:resource="http://vocab.gtfs.org/terms#Stop"/>
<rdfs:isDefinedBy xml:lang="es">idParada</rdfs:isDefinedBy>
</owl:DatatypeProperty>
<!-- http://transacc.linkeddata.es/def/core#typeBusStop -->
<owl:DatatypeProperty rdf:about="http://transacc.linkeddata.es/def/core#typeBusStop">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#BusStop"/>
<rdfs:range>
<rdfs:Datatype>
<owl:oneOf>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>marquee</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>pole</rdf:first>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</owl:oneOf>
</rdfs:Datatype>
</rdfs:range>
<rdfs:comment>Type of bus stop, marquee or pole</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://transacc.linkeddata.es/def/core#typePlatform -->
<owl:DatatypeProperty rdf:about="http://transacc.linkeddata.es/def/core#typePlatform">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#Platform"/>
<rdfs:range>
<rdfs:Datatype>
<owl:oneOf>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>indoor</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>outdoor</rdf:first>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</owl:oneOf>
</rdfs:Datatype>
</rdfs:range>
<rdfs:comment>type of platform, indoor or outdoor</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://transacc.linkeddata.es/def/core#typeStair -->
<owl:DatatypeProperty rdf:about="http://transacc.linkeddata.es/def/core#typeStair">
<rdfs:domain rdf:resource="http://transacc.linkeddata.es/def/core#Stair"/>
<rdfs:range>
<rdfs:Datatype>
<owl:oneOf>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>escalator</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>stairs</rdf:first>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</owl:oneOf>
</rdfs:Datatype>
</rdfs:range>
<rdfs:comment>type of stairs, escalator or regular stairs</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://vocab.gtfs.org/terms#direction -->
<owl:DatatypeProperty rdf:about="http://vocab.gtfs.org/terms#direction">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
<rdfs:comment xml:lang="en">A binary property to indicate the direction the trip is going (e.g., outbound/inbound, center/airport)</rdfs:comment>
<rdfs:comment xml:lang="es">Apunta a un valor binario que indica la dirección del viaje (e.g., ida/vuelta, centro/aeropuerto)</rdfs:comment>
<rdfs:label xml:lang="en">Direction</rdfs:label>
<rdfs:label xml:lang="es">dirección</rdfs:label>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:DatatypeProperty>
<!-- http://vocab.gtfs.org/terms#headsign -->
<owl:DatatypeProperty rdf:about="http://vocab.gtfs.org/terms#headsign">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="es">Esta propiedad apunta al texto que indica el destino del viaje a los pasajeros.</rdfs:comment>
<rdfs:comment xml:lang="en">The gtfs:headsign property contains the text that appears on a sign that identifies the trip's destination to passengers.</rdfs:comment>
<rdfs:label xml:lang="en">Headsign</rdfs:label>
<rdfs:label xml:lang="es">destino del viaje</rdfs:label>
<rdfs:seeAlso rdf:resource="https://developers.google.com/transit/gtfs/examples/display-to-users#TripHeadsign"/>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:DatatypeProperty>
<!-- http://vocab.gtfs.org/terms#pointSequence -->
<owl:DatatypeProperty rdf:about="http://vocab.gtfs.org/terms#pointSequence">
<rdfs:domain rdf:resource="http://vocab.gtfs.org/terms#ShapePoint"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
<rdfs:comment xml:lang="es">El campo shape_pt_sequence asocia la latitud y longitud de un punto de recorrido con su orden de secuencia en el recorrido. Los valores para shape_pt_sequence deben ser números enteros positivos y crecientes conforme avanza el viaje.</rdfs:comment>
<rdfs:comment xml:lang="en">The shape_pt_sequence field associates the latitude and longitude of a shape point with its sequence order along the shape. The values for shape_pt_sequence must be non-negative integers, and they must increase along the trip.</rdfs:comment>
<rdfs:label xml:lang="en">Point Sequence</rdfs:label>
<rdfs:label xml:lang="es">secuencia de puntos</rdfs:label>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2002/07/owl#topDataProperty -->
<rdf:Description rdf:about="http://www.w3.org/2002/07/owl#topDataProperty">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</rdf:Description>
<!-- http://xmlns.com/foaf/0.1/familyName -->
<owl:DatatypeProperty rdf:about="http://xmlns.com/foaf/0.1/familyName">
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:comment>The family name of some person.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
<ns:term_status>testing</ns:term_status>
</owl:DatatypeProperty>
<!-- http://xmlns.com/foaf/0.1/givenName -->
<owl:DatatypeProperty rdf:about="http://xmlns.com/foaf/0.1/givenName">
<rdfs:comment>The given name of some person.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
<ns:term_status>testing</ns:term_status>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://transacc.linkeddata.es/def/core#Annotation -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#Annotation">
<rdfs:comment xml:lang="es">Annotation that a user writes on a disability feature</rdfs:comment>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#Billboard -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#Billboard">
<rdfs:subClassOf rdf:resource="http://transacc.linkeddata.es/def/core#Notice"/>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#BusRoute -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#BusRoute">
<rdfs:subClassOf rdf:resource="http://vocab.gtfs.org/terms#Route"/>
<owl:disjointWith rdf:resource="http://transacc.linkeddata.es/def/core#MetroRoute"/>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#BusStop -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#BusStop">
<rdfs:subClassOf rdf:resource="http://transacc.linkeddata.es/def/core#ElementWDisabFeature"/>
<rdfs:subClassOf rdf:resource="http://transacc.linkeddata.es/def/core#ElementWNotice"/>
<rdfs:subClassOf rdf:resource="http://vocab.gtfs.org/terms#Stop"/>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#DisabilityFeature -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#DisabilityFeature">
<rdfs:comment xml:lang="es">Transportation feature to address some disability type</rdfs:comment>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#DisabilityType -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#DisabilityType">
<rdfs:comment xml:lang="es">Disability category: cognitive, visual, heariing, etc.</rdfs:comment>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#ElementWDisabFeature -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#ElementWDisabFeature">
<rdfs:comment>Elements that may have features for disability that can be annotated</rdfs:comment>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#ElementWNotice -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#ElementWNotice">
<rdfs:comment>Elements that may have Notice(s)</rdfs:comment>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#Elevator -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#Elevator">
<rdfs:subClassOf rdf:resource="http://transacc.linkeddata.es/def/core#ExteriorAccess"/>
<owl:disjointWith rdf:resource="http://transacc.linkeddata.es/def/core#FootPass"/>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#ExteriorAccess -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#ExteriorAccess">
<rdfs:subClassOf rdf:resource="http://transacc.linkeddata.es/def/core#ElementWDisabFeature"/>
<rdfs:comment>Access from the street to the station</rdfs:comment>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#FootPass -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#FootPass">
<rdfs:subClassOf rdf:resource="http://transacc.linkeddata.es/def/core#ExteriorAccess"/>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#Luminous -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#Luminous">
<rdfs:subClassOf rdf:resource="http://transacc.linkeddata.es/def/core#Notice"/>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#MetroRoute -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#MetroRoute">
<rdfs:subClassOf rdf:resource="http://vocab.gtfs.org/terms#Route"/>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#MetroStop -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#MetroStop">
<rdfs:subClassOf rdf:resource="http://vocab.gtfs.org/terms#Stop"/>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#Notice -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#Notice">
<rdfs:subClassOf rdf:resource="http://transacc.linkeddata.es/def/core#ElementWDisabFeature"/>
<owl:disjointUnionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://transacc.linkeddata.es/def/core#Billboard"/>
<rdf:Description rdf:about="http://transacc.linkeddata.es/def/core#Luminous"/>
<rdf:Description rdf:about="http://transacc.linkeddata.es/def/core#Sign"/>
<rdf:Description rdf:about="http://transacc.linkeddata.es/def/core#Sound"/>
</owl:disjointUnionOf>
<rdfs:comment>Any written or luminous sign, billboard, or sound announcement</rdfs:comment>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#Platform -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#Platform">
<rdfs:subClassOf rdf:resource="http://transacc.linkeddata.es/def/core#ElementWDisabFeature"/>
<rdfs:subClassOf rdf:resource="http://transacc.linkeddata.es/def/core#ElementWNotice"/>
<rdfs:comment>a platform of a metro route in a certain stop and direction</rdfs:comment>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#RouteDirection -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#RouteDirection">
<rdfs:subClassOf rdf:resource="http://vocab.gtfs.org/terms#Trip"/>
<rdfs:comment xml:lang="es">Direction of a line characterized by its headsign</rdfs:comment>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#Sign -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#Sign">
<rdfs:subClassOf rdf:resource="http://transacc.linkeddata.es/def/core#Notice"/>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#Sound -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#Sound">
<rdfs:subClassOf rdf:resource="http://transacc.linkeddata.es/def/core#Notice"/>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#Stair -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#Stair">
<rdfs:subClassOf rdf:resource="http://transacc.linkeddata.es/def/core#ElementWDisabFeature"/>
<rdfs:comment>A Stair in an acces to a station</rdfs:comment>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#TrainStop -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#TrainStop">
<rdfs:subClassOf rdf:resource="http://vocab.gtfs.org/terms#Stop"/>
</owl:Class>
<!-- http://transacc.linkeddata.es/def/core#User -->
<owl:Class rdf:about="http://transacc.linkeddata.es/def/core#User">
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<rdfs:comment>User of the accesibility of transport descriptions</rdfs:comment>
</owl:Class>
<!-- http://vocab.gtfs.org/terms#Route -->
<owl:Class rdf:about="http://vocab.gtfs.org/terms#Route">
<rdfs:comment xml:lang="en">A gtfs:Route is a commercial route followed entirely or partly by gtfs:Trips</rdfs:comment>
<rdfs:comment xml:lang="es">Una gtfs:Route es un grupo de viajes (gtfs:Trips) que se muestran a los usuarios como servicio independiente</rdfs:comment>
<rdfs:label xml:lang="en">Route</rdfs:label>
<rdfs:label xml:lang="es">Ruta</rdfs:label>
<rdfs:seeAlso rdf:resource="https://developers.google.com/transit/gtfs/reference#routes_fields"/>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:Class>
<!-- http://vocab.gtfs.org/terms#RouteType -->
<owl:Class rdf:about="http://vocab.gtfs.org/terms#RouteType">
<rdfs:comment xml:lang="es">Describe el tipo de transporte usado en una ruta</rdfs:comment>
<rdfs:comment xml:lang="en">Describes the type of transportation used on a route</rdfs:comment>
<rdfs:label xml:lang="en">Route type</rdfs:label>
<rdfs:label xml:lang="es">Tipo de ruta</rdfs:label>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:Class>
<!-- http://vocab.gtfs.org/terms#Shape -->
<owl:Class rdf:about="http://vocab.gtfs.org/terms#Shape">
<rdfs:comment xml:lang="en">A polygon formed by gtfs:ShapePoints</rdfs:comment>
<rdfs:comment xml:lang="es">Un polígono o línea formado por gtfs:ShapePoints</rdfs:comment>
<rdfs:label xml:lang="en">Shape</rdfs:label>
<rdfs:label xml:lang="es">forma del recorrido, trayecto, itinerario</rdfs:label>
<rdfs:seeAlso rdf:resource="https://developers.google.com/transit/gtfs/reference#shapes_fields"/>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:Class>
<!-- http://vocab.gtfs.org/terms#ShapePoint -->
<owl:Class rdf:about="http://vocab.gtfs.org/terms#ShapePoint">
<rdfs:comment xml:lang="en">A geographic point within a gtfs:Shape</rdfs:comment>
<rdfs:comment xml:lang="es">Punto geográfico dentro de un recorrido (gtfs:Shape)</rdfs:comment>
<rdfs:label xml:lang="es">Punto de recorrido</rdfs:label>
<rdfs:label xml:lang="en">Shape Point</rdfs:label>
<rdfs:seeAlso rdf:resource="https://developers.google.com/transit/gtfs/reference#shapes_fields"/>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:Class>
<!-- http://vocab.gtfs.org/terms#Station -->
<owl:Class rdf:about="http://vocab.gtfs.org/terms#Station">
<rdfs:subClassOf rdf:resource="http://transacc.linkeddata.es/def/core#ElementWNotice"/>
<gtfs:comment xml:lang="en">Map a row in stops.txt to gtfs:Station when the location_type is 1.</gtfs:comment>
<gtfs:comment xml:lang="es">Mapee una línea en stops.txt a gtfs:Station cuando location_type sea 1.</gtfs:comment>
<rdfs:comment xml:lang="en">A physical structure or area that contains one or more stop.</rdfs:comment>
<rdfs:comment xml:lang="es">Estructura física o área que contiene una o más paradas.</rdfs:comment>
<rdfs:label xml:lang="es">Estación</rdfs:label>
<rdfs:label xml:lang="en">Station</rdfs:label>
<rdfs:seeAlso rdf:resource="https://developers.google.com/transit/gtfs/reference#stops_fields"/>
<ns:term_status xml:lang="es">inestable</ns:term_status>
<ns:term_status xml:lang="en">unstable</ns:term_status>
</owl:Class>
<!-- http://vocab.gtfs.org/terms#Stop -->
<owl:Class rdf:about="http://vocab.gtfs.org/terms#Stop">
<owl:disjointUnionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://transacc.linkeddata.es/def/core#BusStop"/>
<rdf:Description rdf:about="http://transacc.linkeddata.es/def/core#MetroStop"/>
<rdf:Description rdf:about="http://transacc.linkeddata.es/def/core#TrainStop"/>
</owl:disjointUnionOf>
<rdfs:comment xml:lang="en">A location where passengers board or disembark from a transit vehicle.</rdfs:comment>
<rdfs:comment xml:lang="es">Un lugar donde los pasajeros suben o bajan de un vehículo de transporte público.</rdfs:comment>
<rdfs:label xml:lang="es">Parada</rdfs:label>
<rdfs:label xml:lang="en">Stop</rdfs:label>
<rdfs:seeAlso rdf:resource="https://developers.google.com/transit/gtfs/reference#stops_fields"/>
<ns:term_status xml:lang="es">estable</ns:term_status>
<ns:term_status xml:lang="en">stable</ns:term_status>
</owl:Class>
<!-- http://vocab.gtfs.org/terms#Trip -->
<owl:Class rdf:about="http://vocab.gtfs.org/terms#Trip">
<rdfs:comment xml:lang="en">A collection of gtfs:StopTimes followed by a transit vehicle</rdfs:comment>
<rdfs:comment xml:lang="es">Trayecto de dos o más paradas realizadas por un vehículo que se produce a una gtfs:StopTime</rdfs:comment>