This repository has been archived by the owner on Sep 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCityOntology-1.0
858 lines (854 loc) · 43.5 KB
/
CityOntology-1.0
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
<?xml version="1.0"?>
<Ontology xmlns="http://www.w3.org/2002/07/owl#"
xml:base="https://w3id.org/seas/CityOntology"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
ontologyIRI="https://w3id.org/seas/CityOntology"
versionIRI="https://w3id.org/seas/CityOntology-1.0">
<Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/>
<Prefix name="rdf" IRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
<Prefix name="xml" IRI="http://www.w3.org/XML/1998/namespace"/>
<Prefix name="xsd" IRI="http://www.w3.org/2001/XMLSchema#"/>
<Prefix name="rdfs" IRI="http://www.w3.org/2000/01/rdf-schema#"/>
<Import>https://w3id.org/seas/ZoneLightingOntology</Import>
<Annotation>
<AnnotationProperty IRI="http://purl.org/vocab/vann/preferredNamespacePrefix"/>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">seas</Literal>
</Annotation>
<Annotation>
<AnnotationProperty abbreviatedIRI="owl:versionInfo"/>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">v1.0</Literal>
</Annotation>
<Annotation>
<AnnotationProperty IRI="http://purl.org/dc/terms/contributor"/>
<IRI>http://www.maxime-lefrancois.info/me#</IRI>
</Annotation>
<Annotation>
<AnnotationProperty IRI="http://purl.org/dc/terms/issued"/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#date">2017-08-23</Literal>
</Annotation>
<Annotation>
<AnnotationProperty IRI="http://purl.org/dc/terms/creator"/>
<AnonymousIndividual nodeID="_:genid559"/>
</Annotation>
<Annotation>
<AnnotationProperty IRI="http://purl.org/dc/terms/description"/>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">The SEAS City ontology contains subclasses of zones usefull to describe cities</Literal>
</Annotation>
<Annotation>
<AnnotationProperty IRI="http://purl.org/vocab/vann/preferredNamespaceUri"/>
<IRI>-1.0</IRI>
</Annotation>
<Annotation>
<AnnotationProperty IRI="http://purl.org/dc/terms/modified"/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#date">2017-08-23</Literal>
</Annotation>
<Annotation>
<AnnotationProperty IRI="http://purl.org/dc/terms/title"/>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">The SEAS City Ontology.</Literal>
</Annotation>
<Annotation>
<AnnotationProperty IRI="http://purl.org/dc/terms/license"/>
<IRI>https://www.apache.org/licenses/LICENSE-2.0</IRI>
</Annotation>
<Declaration>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Backroad"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Avenue"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Passageway"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://purl.org/dc/terms/title"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://purl.org/dc/terms/issued"/>
</Declaration>
<Declaration>
<Class IRI="http://purl.org/vocommons/voaf#Vocabulary"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Bridge"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Street"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Park"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Bikeway"/>
</Declaration>
<Declaration>
<DataProperty IRI="http://xmlns.com/foaf/0.1/name"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Boulevard"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://purl.org/vocab/vann/preferredNamespaceUri"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://purl.org/vocab/vann/preferredNamespacePrefix"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/ThoroughfareSection"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/CityCenter"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/ShoppingCityCenter"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/City"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/PrimaryPathway"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/OldCityCenter"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Tunnel"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/SecondaryPathway"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://purl.org/dc/terms/creator"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/TertiaryPathway"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Road"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Pedestrian_way"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Bypass"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Highway"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/CarPark"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Dead_end"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://purl.org/dc/terms/modified"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Garden"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Stadium"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/Thoroughfare"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://purl.org/dc/terms/contributor"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://purl.org/dc/terms/license"/>
</Declaration>
<Declaration>
<Class IRI="http://xmlns.com/foaf/0.1/Person"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://purl.org/dc/terms/description"/>
</Declaration>
<Declaration>
<Class IRI="https://w3id.org/seas/CivilEngineeringWork"/>
</Declaration>
<Declaration>
<NamedIndividual IRI=""/>
</Declaration>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Avenue"/>
<Class IRI="https://w3id.org/seas/Road"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Backroad"/>
<Class IRI="https://w3id.org/seas/Road"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Bikeway"/>
<Class IRI="https://w3id.org/seas/Thoroughfare"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Boulevard"/>
<Class IRI="https://w3id.org/seas/Road"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Bridge"/>
<Class IRI="https://w3id.org/seas/CivilEngineeringWork"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Bridge"/>
<Class IRI="https://w3id.org/seas/Zone"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Bypass"/>
<Class IRI="https://w3id.org/seas/Road"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/CarPark"/>
<Class IRI="https://w3id.org/seas/CivilEngineeringWork"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/CarPark"/>
<Class IRI="https://w3id.org/seas/Zone"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/City"/>
<Class IRI="https://w3id.org/seas/Zone"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/CityCenter"/>
<Class IRI="https://w3id.org/seas/Zone"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/CityCenter"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="https://w3id.org/seas/subSystemOf"/>
<Class IRI="https://w3id.org/seas/City"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Dead_end"/>
<Class IRI="https://w3id.org/seas/Road"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Garden"/>
<Class IRI="https://w3id.org/seas/Zone"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Highway"/>
<Class IRI="https://w3id.org/seas/Road"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/OldCityCenter"/>
<Class IRI="https://w3id.org/seas/Zone"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/OldCityCenter"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="https://w3id.org/seas/subSystemOf"/>
<Class IRI="https://w3id.org/seas/City"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Park"/>
<Class IRI="https://w3id.org/seas/Zone"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Passageway"/>
<Class IRI="https://w3id.org/seas/Thoroughfare"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Pedestrian_way"/>
<Class IRI="https://w3id.org/seas/Thoroughfare"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/PrimaryPathway"/>
<Class IRI="https://w3id.org/seas/Thoroughfare"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Road"/>
<Class IRI="https://w3id.org/seas/Thoroughfare"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/SecondaryPathway"/>
<Class IRI="https://w3id.org/seas/Thoroughfare"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/ShoppingCityCenter"/>
<Class IRI="https://w3id.org/seas/Zone"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/ShoppingCityCenter"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="https://w3id.org/seas/subSystemOf"/>
<Class IRI="https://w3id.org/seas/City"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Stadium"/>
<Class IRI="https://w3id.org/seas/CivilEngineeringWork"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Stadium"/>
<Class IRI="https://w3id.org/seas/Zone"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Street"/>
<Class IRI="https://w3id.org/seas/Road"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/TertiaryPathway"/>
<Class IRI="https://w3id.org/seas/Thoroughfare"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Thoroughfare"/>
<Class IRI="https://w3id.org/seas/CivilEngineeringWork"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/ThoroughfareSection"/>
<Class IRI="https://w3id.org/seas/CivilEngineeringWork"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/ThoroughfareSection"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="https://w3id.org/seas/subSystemOf"/>
<Class IRI="https://w3id.org/seas/Thoroughfare"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="https://w3id.org/seas/Tunnel"/>
<Class IRI="https://w3id.org/seas/Thoroughfare"/>
</SubClassOf>
<ClassAssertion>
<Class IRI="http://purl.org/vocommons/voaf#Vocabulary"/>
<NamedIndividual IRI=""/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://xmlns.com/foaf/0.1/Person"/>
<AnonymousIndividual nodeID="_:genid559"/>
</ClassAssertion>
<DataPropertyAssertion>
<DataProperty IRI="http://xmlns.com/foaf/0.1/name"/>
<AnonymousIndividual nodeID="_:genid559"/>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Lynda TEMAL</Literal>
</DataPropertyAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Avenue</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">an landscaping, an avenue or allée is traditionally a straight path or road with a line of trees or large shrubs running along each side,
which is used, as its French source venir ("to come") indicates, to emphasize the "coming to," or arrival at a landscape or architectural feature.
In most cases, the trees planted in an avenue will be all of the same species or cultivar, so as to give uniform appearance along the full length of the
avenue. (source : wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Avenue</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Avenue</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Avenue</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/Avenue</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Backroad</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A back road is a secondary type of road, usually found in rural areas. (source : wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Backroad</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Backroad</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Back road</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/Backroad</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Bikeway</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A bike way is a lane, route, way or path which in some manner is specifically designed and /or designated for bicycle travel</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Bikeway</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Bikeway</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Bike way</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/Bikeway</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Boulevard</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A boulevard (French, from Dutch: Bolwerk – bulwark, meaning bastion), often abbreviated Blvd, is a type of large road, usually running through a city.
In modern American usage it often means a wide, multi-lane arterial thoroughfare, divided with a median down the center, and perhaps with roadways along each side designed as slow travel and parking lanes and for bicycle and pedestrian usage, often with an above-average quality of landscaping and scenery. (source:Wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Boulevard</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Boulevard</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Boulevard</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/Boulevard</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Bridge</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A bridge is a structure built to span physical obstacles without closing the way underneath such as a body of water, valley, or road,
for the purpose of providing passage over the obstacle.(source:wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Bridge</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Bridge</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Bridge</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/Bridge</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Bypass</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A bypass is a road that avoids or "bypasses" a built-up area, town, or village, to let through traffic flow without interference from local traffic,
to reduce congestion in the built-up area, and to improve road safety. A bypass specifically designated for trucks may be called a truck route. (source: wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Bypass</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Bypass</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Bypass</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/CarPark</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A parking lot (American English) or car park (British English), also known as a car lot, is a cleared area that is intended for parking vehicles.(source:wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/CarPark</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/CarPark</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">CarPark</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/CarPark</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/City</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A City is a Zone which is a relatively large and permanent human settlement (source:wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/City</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/City</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">City</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/City</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/CityCenter</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A City center is the commercial, cultural and often the historical,
political and geographic heart of a city. The term "city center" is not usually used in American English;
rather, in North America, the term Downtown is used.(source:wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/CityCenter</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/CityCenter</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">City Center</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/CityCenter</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Dead_end</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A dead end, also known as a cul-de-sac, is a street with only one inlet/outlet. (source: wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Dead_end</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Dead_end</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Dead end</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/Dead_end</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Garden</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A garden is a planned space, usually outdoors, set aside for the display, cultivation, and enjoyment of plants and other forms of nature.
The garden can incorporate both natural and man-made materials. (source:wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Garden</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Garden</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Garden</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/Garden</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Highway</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A highway is any public road or other public way on land. It is used for major roads, but also includes other public roads and public tracks:
It is not an equivalent term to controlled-access highway, or a translation for autobahn, auto-route, etc. (source: wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Highway</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Highway</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Highway</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/OldCityCenter</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">An Old City center is a city center which was constructed a long time ago.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/OldCityCenter</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/OldCityCenter</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Old City Center</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/OldCityCenter</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Park</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A park is an area of natural, semi-natural or planted space set aside for human enjoyment and recreation or for the protection of wildlife or natural habitats.(source:wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Park</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Park</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Park</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/Park</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Passageway</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Passageway is a long, narrow way, typically having walls either side, that allows access between buildings or to different rooms within a building.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Passageway</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Passageway</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Passageway</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/Passageway</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Pedestrian_way</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Pedestrian_way</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Pedestrian-way</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/Pedestrian_way</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/PrimaryPathway</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A Primary pathway is a thoroughfare, which is primary.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/PrimaryPathway</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/PrimaryPathway</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Primary pathway</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/PrimaryPathway</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Road</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A road is a thoroughfare, route, or way on land between two places that has been paved or otherwise improved to allow travel by foot or some form of
onveyance, including a motor vehicle, cart, bicycle, or horse.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Road</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Road</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Road</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/Road</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/SecondaryPathway</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A Secondary pathway is a thoroughfare, which is secondary.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/SecondaryPathway</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/SecondaryPathway</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Secondary pathway</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/SecondaryPathway</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/ShoppingCityCenter</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A Shopping City center is a city center which where there are a lot of shops.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/ShoppingCityCenter</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/ShoppingCityCenter</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Shopping City Center</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/ShoppingCityCenter</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Stadium</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A stadium is a place or venue for (mostly) outdoor sports, concerts, or other events and consists of a field or stage either partly or completely
surrounded by a tiered structure designed to allow spectators to stand or sit and view the event.(source:wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Stadium</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Stadium</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Stadium</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/Stadium</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Street</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A street is a public thoroughfare (usually paved) in a built environment.
It is a public parcel of land adjoining buildings in an urban context, on which people may freely assemble, interact, and move about.(source: wikipedia) </Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Street</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Street</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Street</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/Street</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/TertiaryPathway</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A Tertiary pathway is a thoroughfare, which is tertiary.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/TertiaryPathway</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/TertiaryPathway</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Tertiary pathway</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/TertiaryPathway</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Thoroughfare</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A thoroughfare is a transportation route connecting one location to another. On land a thoroughfare may refer to anything from a multi-lane
highway with grade separated junctions, to a rough trail.[citation needed] Thoroughfares used by a variety of traffic, such as cars on roads and
highways. On water a thoroughfare may refer to a strait, channel or waterway. The term may also refer to access to a route, distinct from the route
itself. In other words thoroughfare may refer to the legal right to use a particular way. (source:Wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Thoroughfare</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Thoroughfare</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Thoroughfare</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/Thoroughfare</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/ThoroughfareSection</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A Thoroughfare Section is a part of the thoroughfare. (source: wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/ThoroughfareSection</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/ThoroughfareSection</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Thoroughfare Section</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>https://w3id.org/seas/Tunnel</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">A tunnel is an underground passageway, dug through the surrounding soil/earth/rock and enclosed except for entrance and exit, commonly at each end.
A pipeline is not a tunnel, though some recent tunnels have used immersed tube construction techniques rather than traditional tunnel boring methods. (source: wikipedia)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>https://w3id.org/seas/Tunnel</IRI>
<IRI></IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://w3id.org/seas/Tunnel</IRI>
<Literal xml:lang="en" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">Tunnel</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<IRI>https://w3id.org/seas/Tunnel</IRI>
<Literal datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">testing</Literal>
</AnnotationAssertion>
</Ontology>
<!-- Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi -->