-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeoThings.TTL
6509 lines (5331 loc) · 860 KB
/
GeoThings.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
@prefix cc: <http://creativecommons.org/ns#> .
@prefix adms: <http://www.w3.org/ns/adms#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix gn: <http://www.geonames.org/ontology#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix mrel: <http://id.loc.gov/vocabulary/relators/> .
<http://openthings.cc/ontology/County>
a owl:Class ;
rdfs:label "Quận hạt"@vi , "Landið"@is , "Piirikunta"@fi , "İlçe"@tr , "Contato"@ia , "Powiat"@pl , "Wokrjes"@hsb , "Fylke"@no , "Wokrejs"@dsb , "Okrožje"@sl , "District"@nl , "Округ"@sr-ec , "Hrabství"@cs , "Županija/grofovija"@hr , "县"@zh-hans , "Kondehan"@tl , "Okres"@sk , "Maakond"@et , "Län"@sv , "County"@en-gb , "Qark"@aln , "Comté"@fr , "Welat"@ku-latn , "Okrug"@sr-el , "郡"@ja , "Мастор"@myv , "Apskritis"@lt , "Грофовија"@mk , "Bezirk"@de , "مقاطعة"@arz , "مقاطعة"@ar , "Apgabals"@lv , "Уезд"@ru , "Comtat"@ca , "Megye"@hu , "هېواد"@ps , "Condado"@gl , "Condado"@es , "Distrikt"@nds , "Contea (in Italia NON usare)"@it , "Amt"@da , "Contee"@fur , "Distrik"@af , "מחוז"@he , "Kaunti"@ms , "Κομητεία"@el , "Município"@pt , "Município"@pt-br , "Konderria"@eu , "Kontelezh"@br , "Condáu, conceyu"@ast , "Раён"@be-tarask , "Район"@uk ;
rdfs:subClassOf <http://openthings.cc/ontology/Place> , <http://openthings.cc/ontology/County> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/County> , gn:U.MNDU , <http://www.data.ign.fr/rge/taxoign.owl#Mont> ;
skos:definition "a low, isolated, rounded hill"@en , "низкий холмик округлой формы на месте погребения"@ru ;
skos:prefLabel "gravkulle"@sv , "Могила"@bg , "mound"@en , "voll"@no , "могильный холм"@ru .
<http://openthings.cc/ontology/WaterwayFuel>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/WaterwayThing> , <http://openthings.cc/ontology/WaterwayFuel> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/WaterwayFuel> .
<http://openthings.cc/ontology/MonitoringStation>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/ManMadeThing> , <http://openthings.cc/ontology/MonitoringStation> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/MonitoringStation> .
<http://openthings.cc/ontology/NaturalValley>
a owl:Class ;
rdfs:label "Slėnis"@lt , "Val"@gl , "Val"@fur , "Dall"@lb , "谷"@ja , "Tal"@de , "Doł"@dsb , "Doł"@hsb , "Völgy"@hu , "Valley"@en-gb , "Dalurinn"@is , "Vallea"@ia , "Vale"@pt-br , "Vale"@pt , "Vallée"@fr , "Dolina"@sr-el , "Dolina"@sl , "Dolina"@sk , "Dolina"@pl , "Dolina"@hr , "Daal"@nds , "Dere/vadi"@tr , "Vall"@ca , "Thung lũng"@vi , "وادي"@ar , "وادي"@arz , "Laakso"@fi , "Haran"@eu , "Vallei"@nl , "Vallei"@af , "Lambak"@tl , "Traoñienn"@br , "Lembah"@ms , "دره"@fa , "دره"@ps , "Org"@et , "Ieleja"@lv , "עמק"@he , "Údolí"@cs , "Κοιλάδα"@el , "Lugaje"@aln , "Valle"@it , "Valle"@es , "Valle"@ast , "ველი"@ka , "Долина"@uk , "Долина"@sr-ec , "Долина"@ru , "Долина"@mk , "Даліна"@be-tarask , "山谷"@zh-hans , "Dal"@da , "Dal"@no , "Dal"@sv ;
rdfs:subClassOf <http://openthings.cc/ontology/NaturalThing> , <http://openthings.cc/ontology/NaturalValley> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass gn:U.VLSU , <http://www.data.ign.fr/rge/taxoign.owl#Allee> , <http://www.data.ign.fr/rge/taxoign.owl#Vallee> , gn:T.VAL , <http://www.data.ign.fr/rge/taxoign.owl#Ruelle> , <http://linkedgeodata.org/ontology/NaturalValley> , gn:U.VALU , gn:T.VALS , <http://dbpedia.org/ontology/Valley> ;
skos:definition "удлинённая впадина между гор или в холмистой местности; равнина вдоль речного русла"@ru , "an elongated depression usually traversed by a stream"@en ;
skos:prefLabel "valley"@en , "долина"@ru , "долина"@bg , "dal"@no , "dal"@sv .
<http://openthings.cc/ontology/JobCentre>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/JobCentre> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/JobCentre> .
<http://openthings.cc/ontology/Ambulance>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Ambulance> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Ambulance> .
<http://openthings.cc/ontology/WaterTower>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/ManMadeThing> , <http://openthings.cc/ontology/WaterTower> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/WaterTower> .
<http://openthings.cc/ontology/PowerLine>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/PowerThing> , <http://openthings.cc/ontology/PowerLine> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/PowerLine> .
<http://openthings.cc/ontology/IndustrialProductionBuilding>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/ManMadeThing> , <http://openthings.cc/ontology/IndustrialProductionBuilding> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/IndustrialProductionBuilding> .
<http://openthings.cc/ontology/Food>
a owl:Class ;
rdfs:label "Mataffär"@sv , "Maisto parduotuvė"@lt , "Fødevarehandel"@da , "Kedai Makanan"@ms , "Magazin de alimentation"@ia , "Tindahan ng Pagkain"@tl , "دكان مأكولات"@arz , "دكان مأكولات"@ar , "Food Shop"@en-gb , "Pārtikas veikals"@lv , "Tiệm Thực phẩm"@vi , "Potraviny"@cs , "食品販売店"@ja , "Sklep spożywczy"@pl , "Botiga de menjar"@ca , "Yiyecek Dükkanı"@tr , "Tenda de alimentación"@gl , "Magasin d'alimentation"@fr , "Alimentari"@it , "Продукты"@ru , "Ruokakauppa"@fi , "Wobchod za žiwidła"@hsb , "Trgovina prehranom"@hr , "Stal voued"@br , "Lebensmittelladen"@de , "Matbúðin"@is , "מכולת"@he , "Bakalnica"@sr-el , "Wobchod za žywidła"@dsb , "Matbutikk"@no , "Харчовая крама"@be-tarask , "Janari-denda"@eu , "Élelmiszerbolt"@hu , "Etenswarenwinkel"@nl , "Бакалница"@sr-ec , "Shitore Ushqimore"@aln , "Obchod s potravinami"@sk , "Продовольчі товари"@uk , "Prehrambena trgovina"@sl , "Продавница за храна"@mk , "Loja de alimentação"@pt-br , "Comestibles"@ast , "食品店"@zh-hant , "食品店"@zh-hans , "Tienda de alimentación"@es , "Toidupood"@et , "Koswinkel"@af ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Food> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Food> .
<http://openthings.cc/ontology/CaravanSite>
a owl:Class ;
rdfs:label "Lakókocsitábor"@hu , "Lugar ng Karabana"@tl , "موقع قافلة"@ar , "موقع قافلة"@arz , "אתר קרוואן"@he , "Kamp-prikolice"@sr-el , "Kamp-kućice (mjesto)"@hr , "拖车营地"@zh-hans , "Wohnwagen-Stellplatz"@de , "Kempings"@lv , "Karavan i faqes"@aln , "Caravankampeerterrein"@nl , "Камп-приколице"@sr-ec , "Караван-сарай"@ru , "Zmakanišćo za bydleńske wóze"@dsb , "Husvagnsuppställningsplats"@sv , "Terreno pro caravanas"@ia , "Campingplads"@da , "Càmping per a caravanes"@ca , "Campingplass"@no , "Autokemping"@cs , "Autokemping"@sk , "Area caravan e camper"@it , "Автокамп"@mk , "Karavan yeri"@tr , "Пляцоўка для трэйлераў"@be-tarask , "Camping para caravanas"@es , "Acampamento de Caravanas"@pt-br , "Site de caravane"@fr , "Kemperių aikštelė"@lt , "Leirintäalue"@fi , "Tachenn karavanennoù"@br , "Sitio de caravanas"@gl , "Camping pa caravanes"@ast , "Caravan Site"@en-gb , "Майданчик для трейлерів"@uk , "Campingowanišćo za caravany"@hsb , "Karavaanpark"@af , "Kamp"@sl , "Miejsce na przyczepę campingową"@pl ;
rdfs:subClassOf <http://openthings.cc/ontology/TourismThing> , <http://openthings.cc/ontology/Accomodation> , <http://openthings.cc/ontology/CaravanSite> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/CaravanSite> .
<http://openthings.cc/ontology/CandyShop>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/CandyShop> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/CandyShop> .
<http://openthings.cc/ontology/TelephoneShop>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/TelephoneShop> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/TelephoneShop> .
<http://openthings.cc/ontology/HorseStile>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/BarrierThing> , <http://openthings.cc/ontology/HorseStile> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/HorseStile> .
<http://openthings.cc/ontology/ManMadeFountain>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/ManMadeThing> , <http://openthings.cc/ontology/ManMadeFountain> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/ManMadeFountain> .
<http://openthings.cc/ontology/Stripclub>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Stripclub> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Stripclub> .
<http://openthings.cc/ontology/Garbage>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Garbage> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Garbage> .
<http://openthings.cc/ontology/Newsagent>
a owl:Class ;
rdfs:label "Tiệm Báo"@vi , "Prensa"@ast , "Quiosco"@gl , "Gwerzher kazetennoù"@br , "新聞販売店"@ja , "Trafika"@sl , "Stendë gazetash"@aln , "Jornaleiro"@pt-br , "وكاله أنباء"@arz , "Газетний кіоск"@uk , "Газэтны шапік"@be-tarask , "Весникара"@mk , "Zeitschriftenladen"@de , "Новинар"@sr-ec , "Straatkiosk"@nl , "وكالة أنباء"@ar , "Newsagent"@en-gb , "Киоск"@ru , "Venditor de jornales"@ia , "Kiosk nowin"@hsb , "Kiosk"@nds , "Kiosk"@pl , "Marchand de journaux"@fr , "Bladkiosk"@da , "Nyhetsbyrå"@no , "Novinový stánek"@cs , "报摊"@zh-hans , "Lehtikioski"@fi , "Tidningskiosk"@sv , "Pśedawaŕ casnikow"@dsb , "Ahente ng Balita"@tl , "Kioskoa"@eu , "Giornalaio"@it , "Novinar"@hr , "Novinar"@sr-el , "Nuusagent"@af , "Quiosc"@ca , "Kiosko de prensa"@es , "Újságárus"@hu , "Gazete bayii"@tr ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Newsagent> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Newsagent> .
<http://openthings.cc/ontology/AntiquesShop>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/AntiquesShop> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/AntiquesShop> .
<http://openthings.cc/ontology/MotorcycleRepair>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/MotorcycleRepair> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/MotorcycleRepair> .
<http://openthings.cc/ontology/Jewelry>
a owl:Class ;
rdfs:label "Bizhuteri Shop"@aln , "Kedai Barang Kemas"@ms , "Draguljarna"@sl , "Juwelier"@nl , "Juwelier"@nds , "Juwelier"@de , "珠寶店"@zh-hant , "Xoyería"@ast , "متجر مجوهرات"@arz , "متجر مجوهرات"@ar , "Joyería"@es , "חנות תכשיטים"@he , "Ékszerbolt"@hu , "Klenotnictví"@cs , "Zlatarna"@hr , "Debjenkowy wobchod"@hsb , "Juvelierizstrādājumu veikals"@lv , "Korukauppa"@fi , "Juwelierswinkel"@af , "Ювелирный магазин"@ru , "Joalheria"@pt-br , "Tindahan ng Alahas"@tl , "Pyšnotkowy wobchod"@dsb , "Joieleria"@ia , "Jewelry Shop"@en-gb , "Joieria"@ca , "Gullsmed"@no , "Joalharia"@pt , "Јувелир"@mk , "Bijouterie"@fr , "Gioielleria"@it , "Bijouterie"@lb , "Kuyumcu"@tr , "Tiệm Kim hoàn"@vi , "Guldsmed"@da , "Guldsmed"@sv , "Juveelipood"@et , "Ювэлірная крама"@be-tarask , "Xoiaría"@gl , "珠宝店"@zh-hans , "Bravigerezh"@br , "Zlatara"@sr-el , "Κοσμηματοπωλείο"@el , "Ювелірний магазин"@uk , "Bitxi-denda"@eu , "Sklep z biżuterią"@pl , "Buteghe dal oresin"@fur , "宝石店"@ja , "Juvelyrikos parduotuvė"@lt , "Златара"@sr-ec , "Zlatníctvo"@sk , "საიუველირო მაღაზია"@ka , "زرګري"@ps ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Jewelry> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Jewelry> .
<http://openthings.cc/ontology/Detached>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Building> , <http://openthings.cc/ontology/Detached> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Detached> .
<http://openthings.cc/ontology/CarRepairShop>
a owl:Class ;
rdfs:label "מוסך"@he , "Réparation de voitures"@fr , "Autofficina"@it , "Ауто-сервис"@sr-ec , "Bilværksted"@da , "Automobilių remontas"@lt , "Awtowa porjedźernja"@hsb , "Autowerkstatt"@de , "Autoservis"@hr , "Autoservis"@cs , "Autoservis"@sk , "Pórěźarnja awtow"@dsb , "Autogarage"@nl , "Autokorjaamo"@fi , "Авто майстерня"@uk , "Taller mecánico"@es , "Taller mecánico"@gl , "Garage"@lb , "汽车维修"@zh-hans , "Naprawa samochodów"@pl , "Oficina"@pt , "Motorherstel"@af , "Dresañ kirri"@br , "Аўтамабільная майстэрня"@be-tarask , "Oto tamir"@tr , "Reparació d'automòbils"@ca , "riparimin e makinave"@aln , "Autoparandus"@et , "Автомастерская"@ru , "Bilverkstad"@sv , "Riparazion di machinis"@fur , "Tiệm Sửa Xe"@vi , "Auto-servis"@sr-el , "ავტოსახელოსნო"@ka , "مرآب سيارات"@arz , "مرآب سيارات"@ar , "Autószerviz"@hu , "Bilverksted"@no , "Car Repair"@en-gb , "Auto remonts"@lv , "Avtoservis"@sl , "汽車維修"@zh-hant , "Taller d'automóviles"@ast , "Oficina mecânica"@pt-br , "Kumpunihan ng Kotse"@tl , "Autowarksteed"@nds , "Автосервис"@mk , "Reparation de automobiles"@ia ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/CarRepairShop> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/CarRepairShop> .
<http://openthings.cc/ontology/WasteContainer>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/WasteContainer> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/WasteContainer> .
<http://openthings.cc/ontology/Bookbinder>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Craft> , <http://openthings.cc/ontology/Bookbinder> , <http://openthings.cc/ontology/Shop> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Bookbinder> .
<http://openthings.cc/ontology/CharityShop>
a owl:Class ;
rdfs:label "Loja beneficente"@pt-br , "متجر جمعيه خيرية"@arz , "Tindahang Pangkawanggawa"@tl , "Negozio solidale"@it , "Labdaros parduotuvė"@lt , "Dobrodelni trgovina"@sl , "Charitativní obchod"@cs , "Rastru solidariu"@ast , "Dobrotnostny wobchod"@dsb , "متجر جمعية خيرية"@ar , "Stal garitez"@br , "Labdarības veikals"@lv , "Veldedighetsbutikk"@no , "Секонд-хэнд"@ru , "Magasin de bienfaisance"@fr , "Tienda benéfica"@es , "Cửa hàng Từ thiện"@vi , "Добротворна продавница"@mk , "Добротворна продавница"@sr-ec , "Botiga de caritat"@ca , "Magazin de beneficentia"@ia , "Dobrotvorna trgovina"@hr , "Dobroćelski wobchod"@hsb , "Liefdadigheidswinkel"@af , "Liefdadigheidswinkel"@nl , "Сэканд хэнд"@be-tarask , "Sklep charytatywny"@pl , "Charitatívny obchod"@sk , "Charity Shop"@en-gb , "Dobrotvorna prodavnica"@sr-el , "Bamirësi Shop"@aln , "חנות צדקה"@he , "მეორადი ტანსაცმელი"@ka , "Adománybolt"@hu , "Velgørenhedsbutik"@da , "Välgörenhetsbutik"@sv , "慈善商店"@zh-hans , "Соціальний магазин"@uk , "Wohltätigkeitsladen"@de , "Tenda benéfica"@gl ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/CharityShop> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/CharityShop> .
<http://openthings.cc/ontology/Kiosk>
a owl:Class ;
rdfs:label "Söluturninn"@is , "تلفون خِنِه"@mzn , "Kiosk Shop"@en-gb , "Kiosek"@cs , "ჯიხური"@ka , "Kiosk"@sv , "Kiosk"@sr-el , "Kiosk"@pl , "Kiosk"@no , "کیوسک"@fa , "Kiosk"@nds , "Kiosk"@hsb , "Kiosk"@de , "Kiosk"@br , "Kiosk"@da , "Kiosk"@dsb , "Kiosk"@et , "Kiosk"@hr , "Περίπτερο"@el , "Novinový stánok"@sk , "kiosk"@aln , "Kioskwinkel"@af , "Kioskwinkel"@nl , "Quiosc botiga"@ca , "Kioskas"@lt , "Trafik"@hu , "Трафика"@mk , "Kioski"@fi , "Шапік"@be-tarask , "Quioscu"@ast , "Kiosque"@fr , "キオスク"@ja , "Kiosque"@ia , "Tindahan ng Kubol"@tl , "Kiosko"@es , "Kiosko"@eu , "Quiosque"@pt-br , "礼品店"@zh-hans , "Киоск"@ru , "Киоск"@sr-ec , "Kiosks"@lv , "קיוסק"@he , "Quiosco"@gl , "كشك"@arz , "كشك"@ar , "Edicola"@it , "Кіоск"@uk , "Kiosk prodajalna"@sl ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Building> , <http://openthings.cc/ontology/Kiosk> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Kiosk> , <http://linkedgeodata.org/ontology/BuildingKiosk> .
<http://openthings.cc/ontology/ConstructionShop>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/ConstructionShop> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/ConstructionShop> .
<http://openthings.cc/ontology/VillageGreen>
a owl:Class ;
rdfs:label "Prau municipal"@ast , "მწვანე სოფელი"@ka , "Сеоско поље"@sr-ec , "Seoski travnjak"@hr , "Zelenica"@sl , "Parque municipal"@es , "Parque municipal"@gl , "Parque municipal"@pt-br , "Parco de village"@ia , "Village Green"@ca , "Village Green"@en-gb , "Takad natur foran"@br , "Stadsgroen"@nl , "Náves"@cs , "Zone publique herborée"@fr , "Közös mező"@hu , "Park miejski"@pl , "أرض خضراء"@ar , "Wejsny najs"@dsb , "Kırsal Yeşillik"@tr , "landsbypark"@no , "Verejná zeleň"@sk , "Nayong Lunti"@tl , "Nawjes"@hsb , "Гарадзкі парк"@be-tarask , "Селско зеленило"@mk , "Forte"@da , "Seosko polje"@sr-el , "Fshati Green"@aln , "绿色村庄"@zh-hans , "Зелёная деревня"@ru , "Dorfwiese"@de , "Сільська галявина"@uk ;
rdfs:subClassOf <http://openthings.cc/ontology/Landuse> , <http://openthings.cc/ontology/VillageGreen> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/VillageGreen> .
<http://openthings.cc/ontology/ManMadeLamp>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/ManMadeThing> , <http://openthings.cc/ontology/ManMadeLamp> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/ManMadeLamp> .
<http://openthings.cc/ontology/Carpets>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Carpets> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Carpets> .
<http://openthings.cc/ontology/ItOffice>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Office> , <http://openthings.cc/ontology/ItOffice> , <http://openthings.cc/ontology/Building> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/ItOffice> .
<http://openthings.cc/ontology/FireExtinguisher>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/EmergencyThing> , <http://openthings.cc/ontology/FireExtinguisher> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/FireExtinguisher> .
<http://openthings.cc/ontology/Carpet>
a owl:Class ;
rdfs:label "Tappeti"@it , "Botiga de catifes"@ca , "Kilimų parduotuvė"@lt , "Килими"@uk , "Дывановая крама"@be-tarask , "カーペットショップ"@ja , "Teppabúðin"@is , "Magazin de tapetes"@ia , "معرض سجاد"@ar , "معرض سجاد"@arz , "Carpet Shop"@en-gb , "Alfombres"@ast , "Magasin de tapis"@fr , "Obchod s koberci"@cs , "Tapijtzaak"@nl , "Tenda de alfombras"@gl , "Obchod s kobercami"@sk , "Teppichladen"@de , "Продавница тепиха"@sr-ec , "dyqan qilim"@aln , "Tiệm Thảm"@vi , "Tepichowy wobchod"@dsb , "Tindahan ng Karpet"@tl , "Prodajalna preprog"@sl , "Loja de tapetes"@pt-br , "Přestrjencowy wobchod"@hsb , "Дуќан за теписи"@mk , "Teppebutikk"@no , "Paklāju veikals"@lv , "Mattokauppa"@fi , "Mattaffär"@sv , "Trgovina tepisima"@hr , "Szőnyegbolt"@hu , "ხალიჩების მაღაზია"@ka , "Tienda de alfombras"@es , "Ковры"@ru , "Prodavnica tepiha"@sr-el , "Vaibakauplus"@et , "地毯店"@zh-hans , "Stal pallennoù"@br , "Halı Dükkanı"@tr , "Sklep z dywanami"@pl , "Tæppebutik"@da , "Mat-/tapytwinkel"@af , "חנות שטיחים"@he , "Buteghe di tapêts"@fur ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Carpet> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Carpet> .
<http://openthings.cc/ontology/AlpineHut>
a owl:Class ;
rdfs:label "Berghut"@af , "Berghut"@nl , "Vikendice"@aln , "Fjellhytte"@no , "كوخ جبلي"@arz , "كوخ جبلي"@ar , "Chata alpejska"@pl , "Aterpe alpinoa"@eu , "Горная гасьцініца"@be-tarask , "Rifugio alpino"@it , "Планинска куќарка"@mk , "Ndáko mɔkɛ́ na ngómba"@ln , "Refuge"@fr , "Alpine Hut"@en-gb , "Cabanya alpina"@ca , "Planinarski dom"@sr-el , "Kalnu būda"@lv , "Górski chromcyk"@dsb , "Refuxu de montaña"@ast , "Cabana alpin"@ia , "Alpska kuća"@hr , "Bjerghytte"@da , "高山小屋"@zh-hans , "בקתה אלפינית"@he , "Bod menez"@br , "Dağ evi"@tr , "Cabana alpina"@gl , "Cabana alpina"@pt-br , "Cabaña alpina"@es , "Berghütte"@de , "Koča"@sl , "Гірський притулок"@uk , "Alpesi kunyhó"@hu , "Hórska bawda"@hsb , "Alpimaja"@et , "Планинарски дом"@sr-ec , "Túp lều Trên Núi"@vi , "Fjällbod"@sv , "Высокогорная гостиница"@ru , "Vysokohorská chata"@sk , "Vysokohorská chata"@cs , "Kubong Pambundok"@tl , "Alppimaja"@fi , "Barghütt"@nds ;
rdfs:subClassOf <http://openthings.cc/ontology/Accomodation> , <http://openthings.cc/ontology/AlpineHut> , <http://openthings.cc/ontology/TourismThing> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/AlpineHut> .
<http://openthings.cc/ontology/Chimney>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/ManMadeThing> , <http://openthings.cc/ontology/Chimney> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Chimney> .
<http://openthings.cc/ontology/LineConnection>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/PowerThing> , <http://openthings.cc/ontology/LineConnection> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/LineConnection> .
<http://openthings.cc/ontology/UnclassifiedHighway>
a owl:Class ;
rdfs:label "Дорога без класифікації"@uk , "Дарога раённага значэньня"@be-tarask , "Ongeclassificeerde weg"@nl , "Landstraße"@de , "Via não classificada"@pt-br , "طريق غير مصنّف"@arz , "طريق غير مصنّف"@ar , "未分類の道路"@ja , "Uklassifisert vei"@no , "Sense classificar Road"@ca , "Silnice"@cs , "Carretera ensin clasificar"@ast , "Njezarjadowana dróha"@hsb , "Neklasifikovaná cesta"@sk , "Egyéb út"@hu , "Neklasificēts ceļš"@lv , "Unclassified Road"@en-gb , "Ongeklassifiseerde pad"@af , "Luokittelematon tie"@fi , "Jalan Tidak Terkelas"@ms , "Hent dirumm"@br , "Route mineure"@fr , "Đường Không Phân loại"@vi , "Neklasifikuotas kelias"@lt , "Paklasifikuara Road"@aln , "Anden vej"@da , "Estrada sen clasificar"@gl , "Strada minore"@it , "Carretera sin clasificar"@es , "Sınıflandırılmamış yolu"@tr , "Njezarědowana droga"@dsb , "כביש לא מסווג"@he , "Kalsadang Walang Kaurian"@tl , "Neopredeljena cesta"@sl , "Droga gminna"@pl , "Nerazvrstana cesta"@hr , "Via non classificate"@ia , "未分类道路"@zh-hans , "Nekategorisani put"@sr-el , "Некатегорисани пут"@sr-ec , "Дорога местная"@ru , "Некласификуван пат"@mk ;
rdfs:subClassOf <http://openthings.cc/ontology/HighwayThing> , <http://openthings.cc/ontology/UnclassifiedHighway> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/UnclassifiedHighway> .
<http://openthings.cc/ontology/PowerPole>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/PowerThing> , <http://openthings.cc/ontology/PowerPole> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/PowerPole> .
<http://openthings.cc/ontology/BureauDeChange>
a owl:Class ;
rdfs:label "Tiệm Đổi tiền"@vi , "Officio de cambio"@ia , "Tanggapang Palitan ng Pera"@tl , "Wechselstube"@de , "Casa de cambio"@es , "Casa de cambio"@gl , "Zmenáreň"@sk , "Menjačnica"@sr-el , "Valiutos keitimo punktas"@lt , "Valūtas maiņas punkts"@lv , "ვალუტის გადაცვლა"@ka , "Vekslingskontor"@no , "Wesselkontoor"@nds , "Casa de câmbio"@pt-br , "Ufizi di cambi"@fur , "Vekselkontor"@da , "مكتب صرافة"@ar , "مكتب صرافة"@arz , "Bureau de Change"@en-gb , "Мењачница"@sr-ec , "Oficina de canvi"@ca , "Pengurup Wang"@ms , "חלפן כספים"@he , "Směnárna"@cs , "Byroja Ndryshimi de"@aln , "Rahavahetus"@et , "Měnjernja"@hsb , "Rahanvaihto"@fi , "Växlingskontor"@sv , "Döviz bürosu"@tr , "Kantor"@pl , "Burev eskemm"@br , "Bureau de change"@fr , "Pénzváltó"@hu , "Diru-truke Bulegoa"@eu , "Gjaldeyrisskipti"@is , "Cambia valute"@it , "Troquéu de moneda"@ast , "Mjenjačnica"@hr , "Менувачница"@mk , "Wiesselbüro"@lb , "Абмен валюты"@be-tarask , "Обмен валют"@ru , "Zaměnjarnja"@dsb , "货币兑换"@zh-hans , "Menjalnica"@sl , "Wisselkantoor"@nl , "Wisselkantoor"@af , "Обмін валют"@uk ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/BureauDeChange> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/BureauDeChange> .
<http://openthings.cc/ontology/Beach>
a owl:Class ;
rdfs:label "Pludmale"@lv , "Spiaggia"@it , "Traezhenn"@br , "海滩"@zh-hans , "Hondartza"@eu , "砂浜"@ja , "Pantai"@ms , "Пляж"@be-tarask , "Пляж"@ru , "Пляж"@uk , "Pśibrjog"@dsb , "Plage"@lb , "Plage"@fr , "Part"@hu , "Plaj"@tr , "Plagia"@ia , "Playa"@ast , "Playa"@es , "Pllazh"@aln , "Beach"@en-gb , "Hiekkaranta"@fi , "Dalampasigan"@tl , "Παραλία"@el , "Obala"@sl , "Strand"@sv , "Strand"@af , "Strand"@da , "Strand"@de , "Strand"@nds , "Strand"@nl , "Strand"@no , "شاطئ"@arz , "شاطئ"@ar , "Pláž"@cs , "Pláž"@sk , "Přibrjóh"@hsb , "პლაჟი"@ka , "Praia"@pt-br , "Praia"@pt , "Praia"@gl , "Paplūdimys"@lt , "Ströndin"@is , "Bãi biển"@vi , "Splaze"@fur , "Plaža"@hr , "Plaża"@pl , "Plaža"@sr-el , "ساحل"@fa , "Rand"@et , "Platja"@ca , "Плажа"@sr-ec , "Плажа"@mk ;
rdfs:subClassOf <http://openthings.cc/ontology/NaturalThing> , <http://openthings.cc/ontology/Leisure> , <http://openthings.cc/ontology/Beach> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Beach> , gn:T.BCH ;
skos:definition "a shore zone of coarse unconsolidated sediment that extends from the low-water line to the highest reach of storm waves"@en , "отлогий намывной берег, удобный для купания и принятия солнечных ванн"@ru ;
skos:prefLabel "бряг"@bg , "strand"@no , "strand"@sv , "beach"@en , "пляж"@ru .
<http://openthings.cc/ontology/Place>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/GeoThing> , <http://openthings.cc/ontology/Place> , owl:Thing ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Place> .
<http://openthings.cc/ontology/Leather>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Leather> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Leather> .
<http://openthings.cc/ontology/Home>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Home> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Home> .
<http://openthings.cc/ontology/Farm>
a owl:Class ;
rdfs:label "Buuree-Bowark"@nds , "Công trình Nông trại"@vi , "Bauernhof"@de , "Ferma"@sq , "Ferma"@ia , "Ferma"@aln , "Saimniecības ēka"@lv , "Žywnosć"@dsb , "Sveitabærinn"@is , "مبنى مزرعة"@arz , "مبنى مزرعة"@ar , "Tanya"@hu , "Tarla"@tr , "Paiol"@pt-br , "Зграда фарме"@sr-ec , "Gårdsbygg"@no , "Фарма"@mk , "Фарма"@sr-ec , "Casería"@ast , "Budynek gospodarczy"@pl , "Ladang"@ms , "باغ"@mzn , "Zone agricole"@fr , "Trại"@vi , "Talumaja"@et , "Ti feurm"@br , "Gehöft"@de , "Atant"@br , "Baserria"@eu , "Maatila"@fi , "Plaas"@af , "Фэрма"@be-tarask , "ფერმა"@ka , "Kmetija"@sl , "Fermë"@aln , "Landbrugsbygning"@da , "مزرعة"@ar , "مزرعة"@arz , "Хверма"@myv , "Plaasgebou"@af , "Земјоделски објект"@mk , "Hospodárska budova"@sk , "Hospodarske twarjenje"@hsb , "Granxa"@gl , "Gusaling Pambukid"@tl , "Ферма"@ru , "Ферма"@uk , "مزرعه"@fa , "農場"@ja , "Gård"@no , "Gård"@da , "Farma (zgrada)"@hr , "Maatilan rakennus"@fi , "农场建筑物"@zh-hans , "Tanyaépület"@hu , "Granja"@ca , "Granja"@es , "Burski dom"@dsb , "Farm"@en-gb , "חווה"@he , "Edificio agricole"@ia , "Ferme"@fr , "牧場"@ja , "Zgrada farme"@sr-el , "Bangunan Ladang"@ms , "talu"@et , "Ūkio pastatas"@lt , "Bauerenhaff"@lb , "Ekonomibyggnad"@sv , "Saimniecība"@lv , "Boerderij"@nl , "Edificio rurale"@it , "Hospodářská budova"@cs , "Çiftlik Binası"@tr , "Bondgård"@sv , "Farma"@sr-el , "Farma"@sk , "Instal·lacions agrícoles"@ca , "Farma"@pl , "Farma"@hsb , "Farma"@hr , "Farma"@dsb , "Farma"@cs , "Çiftlik"@tr , "Farm Building"@en-gb , "Bukid"@tl , "Bâtiment de ferme"@fr , "Fazenda"@pt-br , "Fazenda"@pt , "Farm Ndërtimi"@aln , "農舎"@ja , "Area agricola"@it , "Ūkis"@lt , "Fattoria"@it , "Αγρόκτημα"@el , "Agrarisch gebouw"@nl , "Buurhoff"@nds , "فارم"@ps , "农场"@zh-hans ;
rdfs:subClassOf <http://openthings.cc/ontology/Building> , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Place> , <http://openthings.cc/ontology/Landuse> , <http://openthings.cc/ontology/Farm> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/BuildingFarm> , <http://linkedgeodata.org/ontology/Farm> , gn:S.FRM , <http://www.data.ign.fr/rge/taxoign.owl#Barrage> , <http://www.data.ign.fr/rge/taxoign.owl#Bras> , gn:S.DAM , gn:T.BAR , <http://www.data.ign.fr/rge/taxoign.owl#Parc> , <http://www.data.ign.fr/rge/taxoign.owl#Grange> , gn:L.PRK , <http://schema.org/Park> , <http://www.data.ign.fr/rge/taxoign.owl#BatimentAgricole> , <http://dbpedia.org/ontology/Park> ;
skos:definition "частное сельскохозяйственное предприятие, принадлежащее фермеру и ведущееся им на собственной или арендованной земле"@ru , "a tract of land with associated buildings devoted to agriculture"@en ;
skos:prefLabel "gård"@no , "ферма"@ru , "ферма"@bg , "farm"@en , "farm"@sv .
<http://openthings.cc/ontology/Resis>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Landuse> , <http://openthings.cc/ontology/Resis> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Resis> .
<http://openthings.cc/ontology/Brownfield>
a owl:Class ;
rdfs:label "მიტოვებული ადგილი"@ka , "Area con edifici in demolizione"@it , "Угар"@mk , "Industrijowe lědo"@dsb , "Заброшенная зона"@ru , "أرض مخلفات"@ar , "Очищена територія під забудову"@uk , "Terrain rasé"@fr , "Brownfield Land"@en-gb , "Terreno Industrial"@pt-br , "Brownfield Toka"@aln , "Gradbišče"@sl , "Terreno industrial subutilisate"@ia , "Terreo baldío"@gl , "Solar vacante"@es , "Industrijowe lado"@hsb , "Lupain ng Kayumangging Bukirin"@tl , "Grunty poprzemysłowe"@pl , "Tachenn rezet"@br , "Attīrīts būvlaukums"@lv , "Nadas"@tr , "Braakliggend terrein"@nl , "Прамысловая забруджаная глеба"@be-tarask , "Barnamező"@hu , "Brownfield"@cs , "Bebautes Land"@de , "Zemljište za prenamjenu"@hr , "Terrén en derribu"@ast , "棕色地带"@zh-hans , "Tidligere industriområde"@da , "Земљиште за пренамену"@sr-ec , "Tidligere industriområde"@no , "Zemljište za prenamenu"@sr-el , "Brownfield terra"@ca ;
rdfs:subClassOf <http://openthings.cc/ontology/Landuse> , <http://openthings.cc/ontology/Brownfield> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Brownfield> .
<http://openthings.cc/ontology/Printing>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Printing> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Printing> .
<http://openthings.cc/ontology/SurveyPoint>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/ManMadeThing> , <http://openthings.cc/ontology/SurveyPoint> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/SurveyPoint> .
<http://openthings.cc/ontology/TrainRoute>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/RouteThing> , <http://openthings.cc/ontology/TrainRoute> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/TrainRoute> .
<http://openthings.cc/ontology/WaterTank>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/ManMadeThing> , <http://openthings.cc/ontology/WaterTank> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/WaterTank> .
<http://openthings.cc/ontology/Baisschool>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Baisschool> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Baisschool> .
<http://openthings.cc/ontology/Showers>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Showers> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Showers> .
<http://openthings.cc/ontology/Signpost>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Signpost> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Signpost> .
<http://openthings.cc/ontology/Entry>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Building> , <http://openthings.cc/ontology/Entry> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Entry> .
<http://openthings.cc/ontology/Pub>
a owl:Class ;
rdfs:label "Pub"@ca , "Pub"@da , "Pub"@en-gb , "Παμπ"@el , "Паб"@uk , "Паб"@sr-ec , "Паб"@ru , "Bar"@fr , "Kocsma"@hu , "Pijetore"@aln , "Quán rượu"@vi , "Café"@nl , "Tavarn"@br , "Pab"@ms , "Pab"@sr-el , "Pöbbinn"@is , "Kjarcma"@dsb , "Пивница"@mk , "Hospoda"@cs , "Pangmadlang Bahay"@tl , "Krčma"@sk , "Aludė"@lt , "Pubi"@fi , "Pubi"@et , "Taverna"@ia , "Korčma"@hsb , "პაბი"@ka , "Шынок"@be-tarask , "パブ(立ち吞み屋)"@ja , "酒馆"@zh-hans , "Kneipe"@de , "Bistro"@lb , "میخانه"@fa , "Birahane"@tr , "Kroeg"@af , "Pivnica"@sl , "Pub"@sv , "Pub"@pt-br , "Pub"@pl , "Pub"@no , "Kroog"@nds , "Pub"@it , "Pub"@hr , "Pub"@gl , "حانة"@arz , "حانة"@ar , "פאב"@he , "Pub"@fur , "Pub"@es , "Krogs"@lv , "Pub"@ast ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Pub> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass gn:H.NRWS , gn:S.HUT , gn:H.SD , <http://linkedgeodata.org/ontology/Pub> , <http://www.data.ign.fr/rge/taxoign.owl#Cabane> , gn:S.HUTS , <http://www.data.ign.fr/rge/taxoign.owl#Goulet> , gn:U.MNDU ;
skos:definition "небольшой примитивный домик"@ru , "a small primitive house"@en ;
skos:prefLabel "hut"@en , "hytte"@no , "хижина"@ru , "хижа"@bg , "hydda"@sv .
<http://openthings.cc/ontology/Borderstone>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/ManMadeThing> , <http://openthings.cc/ontology/Borderstone> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Borderstone> .
<http://openthings.cc/ontology/Life-buoy>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Life-buoy> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Life-buoy> .
<http://openthings.cc/ontology/Weir>
a owl:Class ;
rdfs:label "ויר"@he , "Pendë"@aln , "Banzáu"@ast , "Pato"@fi , "Gaśeńska murja"@dsb , "هدار (سدّ منخفض)"@ar , "Vaira"@gl , "Stuwdam"@nl , "Jaz"@pl , "Weir"@en-gb , "Weir"@ca , "Jez"@cs , "Dambis"@lv , "Överfallsvärn"@sv , "Плаціна"@be-tarask , "Stankell"@br , "堰"@zh-hans , "Açude"@pt-br , "Јаз"@mk , "Bukógát"@hu , "Represa"@es , "Ставок"@uk , "Đập Cột nước Thấp"@vi , "Pilapil"@tl , "Брана"@sr-ec , "Wehr"@de , "Wehr"@nds , "Spušćadło"@hsb , "Плотина"@ru , "ダム"@ja , "Barrage"@fr , "Barrage"@ia , "Brana"@hr , "Brana"@sr-el , "Overløpskant"@no , "Uharka"@eu , "Splav"@sk , "Sbarramento idrico"@it , "Zapornica"@sl , "Overløbsdæmning"@da ;
rdfs:subClassOf <http://openthings.cc/ontology/WaterwayThing> , <http://openthings.cc/ontology/Weir> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass gn:S.DAM , <http://linkedgeodata.org/ontology/Weir> , gn:S.WEIR , <http://www.data.ign.fr/rge/taxoign.owl#RocherMarin> , <http://www.data.ign.fr/rge/taxoign.owl#Barrage> ;
skos:definition "a small dam in a stream, designed to raise the water level or to divert stream flow through a desired channel"@en , "гидротехническое сооружение, перегораживающее водоток для подъёма воды в реке, создания водохранилища или электростанции"@ru ;
skos:prefLabel "weir(s)"@en , "плотина"@ru , "бент(ове)"@bg , "fiskedam"@no , "damm, fördämning"@sv .
<http://openthings.cc/ontology/Shed>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Building> , <http://openthings.cc/ontology/Shed> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Shed> .
<http://openthings.cc/ontology/Townhall>
a owl:Class ;
rdfs:label "Rotušė"@lt , "Rātsnams"@lv , "Gradska skupština"@sr-el , "Városháza"@hu , "Dewan Bandar"@ms , "Hôtel de ville"@fr , "Urząd miejski"@pl , "Casa municipal"@ia , "Δημαρχείο"@el , "ქალაქის ადმინისტრაცია"@ka , "Radnica"@sk , "Radnica"@hsb , "Radnica"@dsb , "مبنى بلدية"@arz , "مبنى بلدية"@ar , "شهر داری"@fa , "Градски дом"@mk , "Casa conceyu"@ast , "Ajuntament"@ca , "Gradsko poglavarstvo"@hr , "Bulwagan ng Bayan"@tl , "Rathaus"@de , "Stadsaal"@af , "市庁舎"@ja , "עירייה"@he , "Municipi"@fur , "Concello"@gl , "Thị sảnh"@vi , "Municipio"@it , "Ti-kêr"@br , "Udaletxe"@eu , "Gemeentehuis"@nl , "市政厅"@zh-hans , "Mestna hiša"@sl , "Godina kryesore e qytetit"@aln , "Городская администрация"@ru , "Rådhus"@da , "Rådhus"@no , "Rådhus"@sv , "Ратуша"@be-tarask , "Ош кудо"@myv , "Міськвиконком"@uk , "Radnice"@cs , "Belediye binası"@tr , "Ayuntamiento"@es , "شهرداری"@mzn , "Prefeitura"@pt-br , "Stadhaus"@lb , "Town Hall"@en-gb , "Kaupungintalo"@fi , "Градска скупштина"@sr-ec ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Townhall> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Townhall> .
<http://openthings.cc/ontology/Beautician>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Beautician> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Beautician> .
<http://openthings.cc/ontology/Intermittent>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/GeoThing> , <http://openthings.cc/ontology/Intermittent> , owl:Thing ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Intermittent> .
<http://openthings.cc/ontology/LicensedClub>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/LicensedClub> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/LicensedClub> .
<http://openthings.cc/ontology/FunicularRailway>
a owl:Class ;
rdfs:label "Seilbahn"@de , "Vía de funicular"@gl , "Vía de funicular"@es , "ფუნიკულიორი"@ka , "Daambakal sa Matarik na Lupa"@tl , "Жичена железница"@mk , "Lanová dráha"@cs , "Lanová dráha"@sk , "Trošu dzelzceļš"@lv , "רכבל"@he , "Bergbana"@sv , "Tren funicular"@ast , "Funicolare"@it , "ケーブル鉄道"@ja , "Voie de funiculaire"@fr , "Funikulaari"@fi , "Hent-houarn fundren"@br , "Funicular"@pt , "Funicular"@pt-br , "Uspinjača"@hr , "缆索铁路"@zh-hans , "Đường sắt Leo núi"@vi , "Powrjozowa zeleznica"@dsb , "Füniküler hattı"@tr , "Kolejka linowa"@pl , "سكة حديدية معلقة"@ar , "Žična vzpenjača"@sl , "Seelbahn"@nds , "Фунікулер"@uk , "Ferrovia funicular"@ia , "Siklóvasút"@hu , "Me litar hekurudhave"@aln , "Фуникулер"@ru , "Funikulierius"@lt , "Kabelspoorweg"@af , "Kabelspoorweg"@nl , "Kabelbane"@da , "Kabelbane"@no , "Жичана железница"@sr-ec , "Žičana železnica"@sr-el , "Фунікулёр"@be-tarask , "Funicular Railway"@en-gb , "Funicular Railway"@ca , "Powjaznica"@hsb ;
rdfs:subClassOf <http://openthings.cc/ontology/RailwayThing> , <http://openthings.cc/ontology/FunicularRailway> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/FunicularRailway> .
<http://openthings.cc/ontology/PaydayLoans>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/PaydayLoans> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/PaydayLoans> .
<http://openthings.cc/ontology/AmbulanceStation>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/EmergencyThing> , <http://openthings.cc/ontology/AmbulanceStation> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/AmbulanceStation> .
<http://openthings.cc/ontology/Picknick>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Picknick> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Picknick> .
<http://openthings.cc/ontology/Cushion>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/GeoThing> , <http://openthings.cc/ontology/Cushion> , owl:Thing ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Cushion> .
<http://openthings.cc/ontology/CareHome>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/CareHome> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/CareHome> .
<http://openthings.cc/ontology/BeverageMarket>
a owl:Class ;
rdfs:label "Tindahan ng mga Inumin"@tl , "Negozio bevande"@it , "Напої"@uk , "Magasin de boissons"@fr , "Trgovina pićem"@hr , "Крама напояў"@be-tarask , "Pijet Shop"@aln , "Občerstvenie"@sk , "Venta de bébores"@ast , "Drikkevareforretning"@da , "Tiệm Đồ uống"@vi , "חנות משקאות"@he , "Frisdrankverkooppunt"@nl , "Tenda de bebidas"@gl , "Italbolt"@hu , "饮料店"@zh-hans , "Trgovina pijač"@sl , "Gėrimų parduotuvė"@lt , "Dzērienu veikals"@lv , "Boteca de bibitas"@ia , "Prodavnica pića"@sr-el , "Tienda de bebidas"@es , "飲料ショップ"@ja , "متجر مشروبات"@ar , "متجر مشروبات"@arz , "Stal evajoù"@br , "Napojowe wiki"@hsb , "Продавница пића"@sr-ec , "Beverages Shop"@en-gb , "Drikkevarerbutikk"@no , "Магазин напитков"@ru , "Prodej nápojů"@cs , "სასმელების მაღაზია"@ka , "Loja/depósito de bebidas"@pt-br , "Getränkemarkt"@de , "Sklep z napojami"@pl , "Botiga de begudes"@ca , "Пијалоци"@mk , "Piśowy mark"@dsb ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/BeverageMarket> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/BeverageMarket> .
<http://openthings.cc/ontology/Manhole>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/ManMadeThing> , <http://openthings.cc/ontology/Manhole> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Manhole> .
<http://openthings.cc/ontology/BirdHide>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Leisure> , <http://openthings.cc/ontology/BirdHide> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/BirdHide> .
<http://openthings.cc/ontology/WaterwayWreck>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/WaterwayThing> , <http://openthings.cc/ontology/WaterwayWreck> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/WaterwayWreck> .
<http://openthings.cc/ontology/CampingOffice>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Office> , <http://openthings.cc/ontology/CampingOffice> , <http://openthings.cc/ontology/Building> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/CampingOffice> .
<http://openthings.cc/ontology/Flowers>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Flowers> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Flowers> .
<http://openthings.cc/ontology/WLAN>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/WLAN> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/WLAN> .
<http://openthings.cc/ontology/Offices>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Building> , <http://openthings.cc/ontology/Offices> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Offices> .
<http://openthings.cc/ontology/PedestrianUse>
a owl:Class ;
rdfs:label "Дорога для пешеходов"@ru , "Laluan Pejalan Kaki"@ms , "Gågata"@sv , "Fousswee"@lb , "شارع أولوى للمشاة"@arz , "Hent evit an droadeien"@br , "Pešačka staza"@sr-el , "Gågade"@da , "Trafiğe kapalı yolu"@tr , "Strade pedonâl"@fur , "Voetpad"@nl , "Voetpad"@af , "საფეხმავლო გზა"@ka , "Chemin piéton"@fr , "Fußgängerweg"@de , "Пешаходная дарожка"@be-tarask , "נתיב להולכי רגל"@he , "Rua de pedestres"@pt-br , "Via Peatonal"@ca , "Пешачка патека"@mk , "Camiño peonil"@gl , "Jalakäijatele"@et , "Pločnik"@sl , "Rruge per kambsore"@aln , "Drožka za pěskowarjow"@dsb , "Пішохідна дорога"@uk , "Pěší zóna"@cs , "Tawiran ng Taong Naglalakad"@tl , "Chódnik"@hsb , "Đường bộ Lớn"@vi , "Jalkakäytävä"@fi , "Droga dla pieszych"@pl , "Πεζόδρομιο"@el , "طريق للمشاة"@ar , "Pėsčiųjų kelias"@lt , "Gangvei"@no , "Pješački put"@hr , "Gājēju ceļš"@lv , "پیاده راه"@fa , "Sétálóutca"@hu , "Vía peatonal"@es , "Vía peatonal"@ast , "Percorso pedonale"@it , "Pedestrian Way"@en-gb , "Footpadd"@nds , "Пешачка стаза"@sr-ec , "行人道路"@zh-hans , "Via pro pedones"@ia , "Chodník pre chodcov"@sk ;
rdfs:subClassOf <http://openthings.cc/ontology/HighwayThing> , <http://openthings.cc/ontology/PedestrianUse> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/PedestrianUse> .
<http://openthings.cc/ontology/WaterwayDrawbridge>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/WaterwayThing> , <http://openthings.cc/ontology/WaterwayDrawbridge> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/WaterwayDrawbridge> .
<http://openthings.cc/ontology/Bay>
a owl:Class ;
rdfs:label "خالیج"@fa , "Vịnh"@vi , "Baie"@fr , "Flóinn"@is , "Lahti"@fi , "Zalew"@dsb , "Zátoka, záliv"@sk , "خليج"@ar , "خليج"@arz , "Baia"@it , "Baia"@ia , "入り江"@ja , "Zaliv"@sr-el , "Zaliv"@sl , "Bay"@en-gb , "Golfu"@ast , "海湾"@zh-hans , "Bucht"@nds , "Bucht"@de , "Затока"@be-tarask , "Затока"@uk , "Zaljev"@hr , "ყურე"@ka , "Badia"@ca , "Badia"@eu , "Koy / körfez"@tr , "Teluk"@ms , "Līcis"@lv , "Įlanka"@lt , "Bahía"@es , "Rade"@fur , "Zatoka"@pl , "Zaliw"@hsb , "Залив"@sr-ec , "Baía"@gl , "Baía"@pt , "Baía"@pt-br , "Залив"@ru , "Залив"@mk , "Bukt"@no , "Bukt"@sv , "Baai"@af , "Baai"@nl , "Bugt"@da , "Bae"@br , "Laht"@et , "Gji"@aln , "Look"@tl , "Öböl"@hu , "Záliv"@cs ;
rdfs:subClassOf <http://openthings.cc/ontology/NaturalThing> , <http://openthings.cc/ontology/Bay> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass gn:S.QUAY , gn:T.LEV , gn:T.BCH , <http://www.data.ign.fr/rge/taxoign.owl#Baie> , <http://www.data.ign.fr/rge/taxoign.owl#Barrage> , gn:S.GATE , gn:H.CHN , <http://www.data.ign.fr/rge/taxoign.owl#Chenal> , <http://www.data.ign.fr/rge/taxoign.owl#Quai> , gn:H.RCH , gn:S.DAM , gn:H.BAYS , <http://www.data.ign.fr/rge/taxoign.owl#Bief> , gn:S.GHAT , <http://linkedgeodata.org/ontology/Bay> , gn:U.LEVU , gn:H.BAY ;
skos:definition "изгиб берега между двумя мысами, больше чем открытая гавань, но меньше чем залив"@ru , "a coastal indentation between two capes or headlands, larger than a cove but smaller than a gulf"@en ;
skos:prefLabel "vik, bukt"@sv , "bukt"@no , "bay"@en , "залив"@bg , "бухта"@ru .
<http://openthings.cc/ontology/UphillTerminal>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/ManMadeThing> , <http://openthings.cc/ontology/UphillTerminal> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Uphill+Terminal> .
<http://openthings.cc/ontology/Cheese>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Cheese> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Cheese> .
<http://openthings.cc/ontology/Oven>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/ManMadeThing> , <http://openthings.cc/ontology/Oven> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Oven> .
<http://openthings.cc/ontology/KentCarriageGap>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/BarrierThing> , <http://openthings.cc/ontology/KentCarriageGap> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/KentCarriageGap> .
<http://openthings.cc/ontology/Basin>
a owl:Class ;
rdfs:label "Elveområde"@no , "Dorzecze"@pl , "Basin (Vodná nádrž)"@sk , "盆地"@zh-hans , "Poull"@br , "Waterbekken"@nl , "Conca"@ast , "Conca"@ca , "Bacia"@pt-br , "Syvänne"@fi , "Bazen"@hr , "Cunca"@gl , "Havuz"@tr , "Basin"@en-gb , "Bassin"@da , "Bassin"@fr , "Pellgut"@aln , "Lembangan"@ms , "Becken"@de , "Becken"@nds , "Basen"@sr-el , "Λεκανοπέδιο"@el , "Басэйн"@be-tarask , "אגן"@he , "Čistilni bazen"@sl , "Lunas ng Ilog"@tl , "აუზი"@ka , "Cuenca"@es , "Vodní nádrž"@cs , "حوض"@arz , "حوض"@ar , "Basenk"@dsb , "Basenk"@hsb , "Басен"@mk , "Басен"@sr-ec , "Резервуар"@uk , "Baseinas"@lt , "Bassino"@ia , "Lưu vực"@vi , "Medence"@hu , "Bacino"@it , "Бассейн"@ru ;
rdfs:subClassOf <http://openthings.cc/ontology/Landuse> , <http://openthings.cc/ontology/Basin> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://www.data.ign.fr/rge/taxoign.owl#Canalisation> , <http://linkedgeodata.org/ontology/Basin> , gn:S.HUT , <http://www.data.ign.fr/rge/taxoign.owl#Cabane> , gn:S.HUTS ;
skos:definition "a small primitive house"@en , "небольшой примитивный домик"@ru ;
skos:prefLabel "хижа"@bg , "hydda"@sv , "hut"@en , "хижина"@ru , "hytte"@no .
<http://openthings.cc/ontology/Raceway>
a owl:Class ;
rdfs:label "Lenktynių trasa"@lt , "Renbaan"@af , "Trkačka staza"@sr-el , "Vial Ràpid"@ca , "מסלול מרוצים"@he , "Závodní dráha"@cs , "滚道"@zh-hans , "Dirkališče"@sl , "Kilparata"@fi , "Tävlingsbana"@sv , "Pista de carreras"@es , "Wuběgowanišćo"@dsb , "Pista de corrida"@pt-br , "Versenypálya"@hu , "Pista"@hsb , "Pista"@it , "Raceway"@en-gb , "Redva"@br , "Sacensību trase"@lv , "Koşu yolu"@tr , "Đường đua"@vi , "Гоночна траса"@uk , "Гоначная траса"@be-tarask , "Circuit"@fr , "Circuit"@fur , "Rennbahn"@nds , "حلبة سباق"@ar , "Jalan Lumba"@ms , "Circuíto"@gl , "Circuito"@ia , "Тркачка стаза"@sr-ec , "Pista de carreres"@ast , "Kanal na Daluyan ng Tubig"@tl , "Racerbane"@da , "Racerbane"@no , "Тркачка патека"@mk , "حلبه سباق"@arz , "Гоночная трасса"@ru , "Rennweg"@de , "Gara rrugën automobilave"@aln , "Tor wyścigowy"@pl , "Trkalište"@hr , "Racecircuit"@nl ;
rdfs:subClassOf <http://openthings.cc/ontology/HighwayThing> , <http://openthings.cc/ontology/Raceway> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Raceway> .
<http://openthings.cc/ontology/Computer>
a owl:Class ;
rdfs:label "Shitore e kompjuterave"@sq , "Shitore e kompjuterave"@aln , "Databutikk"@no , "კომპიუტერების მაღაზია"@ka , "Ordenagailu-denda"@eu , "Computerladen"@nds , "Obchod s počítačmi"@sk , "Комп’ютерна крамниця"@uk , "Computer Shop"@en-gb , "Computer Shop"@hr , "Computergeschäft"@de , "Prodej počítačů"@cs , "Datorveikals"@lv , "Tindahan ng Kompyuter"@tl , "Magasin informatique"@fr , "Sklep komputerowy"@pl , "Кампутарная крама"@be-tarask , "Kompjuterowy wobchod"@hsb , "Računalniška trgovina"@sl , "Bilgisayar Mağazası"@tr , "Arvutikauplus"@et , "Loja de informática"@pt , "Tietokonekauppa"@fi , "متجر كمبيوتر"@arz , "متجر كمبيوتر"@ar , "Computerowy wobchod"@dsb , "Продавница за сметачи"@mk , "Számítástechnikai bolt"@hu , "Computerwinkel"@nl , "Botiga d'informàtica"@ca , "電腦商店"@zh-hant , "Računarska oprema"@sr-el , "Рачунарска опрема"@sr-ec , "Tiệm Máy tính"@vi , "Tölvubúðin"@is , "Kedai Komputer"@ms , "Stal urzhiataerioù"@br , "Computerforretning"@da , "Loja de computação"@pt-br , "Magazin de computatores"@ia , "חנות מחשבים"@he , "Negozio di computer"@it , "电脑店"@zh-hans , "Datorbutik"@sv , "Tienda d'informática"@ast , "Tenda informática"@gl , "Компьютерный магазин"@ru , "Tienda de informática"@es , "Rekenaarwinkel"@af , "Kompiuterių parduotuvė"@lt ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Computer> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Computer> .
<http://openthings.cc/ontology/Charity>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Charity> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Charity> .
<http://openthings.cc/ontology/Company>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Company> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Company> .
<http://openthings.cc/ontology/WoodShop>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/WoodShop> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/WoodShop> .
<http://openthings.cc/ontology/Trunk>
a owl:Class ;
rdfs:label "Dalokowobchadowa droga"@dsb , "Trunk Road"@en-gb , "Valtatie"@fi , "Via national"@ia , "主干道路"@zh-hans , "国道"@ja , "Voie express"@fr , "Významná silnice"@cs , "بزرگراه"@fa , "Hitra cesta"@sl , "طريق رئيسي"@ar , "طريق رئيسي"@arz , "Trokpad"@af , "Superstrada"@it , "Магистрални пут"@sr-ec , "Шаша"@be-tarask , "Fernverkehrsstraße"@de , "Autovia de"@ca , "Xa lộ"@vi , "Motortrafikvej"@da , "Autóút"@hu , "Трасса"@ru , "Vía rápida"@es , "Hovedvei"@no , "Magistralinis kelias"@lt , "Магистрала"@mk , "Hent-tizh"@br , "rrugën kryesore"@aln , "Cesta rezervirana za motorna vozila"@hr , "Via de entroncamento"@pt-br , "Magistralni put"@sr-el , "Autosnelweg"@nl , "Dalokodróha"@hsb , "Carretera nacional"@ast , "Maģistrālais ceļš"@lv , "Estrada nacional"@gl , "Bölünmüş anayol"@tr , "Jalan Utama"@ms , "Cesta pre motorové vozidlá"@sk , "Droga ekspresowa"@pl , "Pangunahing Ruta"@tl , "Шосе"@uk ;
rdfs:subClassOf <http://openthings.cc/ontology/HighwayThing> , <http://openthings.cc/ontology/Trunk> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Trunk> .
<http://openthings.cc/ontology/Seat>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Seat> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Seat> .
<http://openthings.cc/ontology/SportThing>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/GeoThing> , <http://openthings.cc/ontology/SportThing> , owl:Thing ;
owl:equivalentClass <http://linkedgeodata.org/ontology/SportThing> .
<http://openthings.cc/ontology/Sluice>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/WaterwayThing> , <http://openthings.cc/ontology/Sluice> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Sluice> .
<http://openthings.cc/ontology/DryCleaning>
a owl:Class ;
rdfs:label "Хімчистка"@uk , "干洗"@zh-hans , "Dry Cleaning"@en-gb , "Limpeza en seco"@gl , "Textilreinigung"@de , "Хемијско чишћење"@sr-ec , "Στεγνό Καθάρισμα"@el , "乾洗"@zh-hant , "Paglilinis na Tuyo"@tl , "Хемиско чистење"@mk , "Keemiline puhastus"@et , "クリーニング"@ja , "Čistilnica"@sl , "Lavasecco"@it , "تنظيف جاف"@arz , "تنظيف جاف"@ar , "Хімчыстка"@be-tarask , "Chemická čistiareň"@sk , "ניקוי יבש"@he , "Lavanderia a sic"@ia , "Cysćarnja"@dsb , "Kuivapesula"@fi , "Botzerei"@lb , "Ķīmiskā tīrīšana"@lv , "Kemijska čistionica"@hr , "Nettoyage à sec"@fr , "Ruhatisztító"@hu , "Tintoreria"@ca , "Kuru Temizleme"@tr , "Sausasis valymas"@lt , "Stomerij"@nl , "Pralnia chemiczna"@pl , "Lavagem a seco"@pt-br , "Pastrimi kimik"@aln , "Chemická čistírna"@cs , "Droogskoonmaker"@af , "Naetaat ent sec'h"@br , "Tintorería"@ast , "Tintorería"@es , "Hấp tẩy"@vi , "Kemtvätt"@sv , "Hemijsko čišćenje"@sr-el , "Химчистка"@ru , "Čisćernja"@hsb , "Renseri"@da , "Renseri"@no ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/DryCleaning> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/DryCleaning> .
<http://openthings.cc/ontology/CaveEntrance>
a owl:Class ;
rdfs:label "Huleinngang"@no , "Entrada de gruta"@pt , "Boca de cueva"@ast , "洞窟入口"@ja , "Вход в пещеру"@ru , "Entrada a cova"@ca , "Pećina (ulaz)"@hr , "Entrada de Gruta"@pt-br , "Entrata de caverna"@ia , "Jamowy zachod"@dsb , "Cave Entrance"@en-gb , "Hellisop"@is , "Уваход у пячору"@be-tarask , "Влез во пештера"@mk , "Huleindgang"@da , "Улаз у пећину"@sr-ec , "Ulaz u pećinu"@sr-el , "Mağara girişi"@tr , "Höhleneingang"@de , "مدخل كهف"@arz , "مدخل كهف"@ar , "Entrada de cova"@gl , "Мода курго"@myv , "Είσοδος Σπηλιάς"@el , "Shpella Hyrja"@aln , "Shpella Hyrja"@sq , "Barlangbejárat"@hu , "Vhod v jamo"@sl , "Liang Gua"@ms , "Grotingang"@af , "Grotingang"@nl , "Kobazulo Sarrera"@eu , "Įėjimas į urvą"@lt , "Vstup do jeskyně"@cs , "Cửa vào Hang"@vi , "Entrée de grotte"@fr , "గుహ ద్వారం"@te , "Prózdnjeński zachod"@hsb , "გამოქვაბულში შესასვლელი"@ka , "ورودی غار"@fa , "Entrada a cueva"@es , "洞口"@zh-hans , "Koopa sissepääs"@et , "Входу в печеру"@uk , "Entrata di grotta/caverna"@it , "Wejście do jaskini"@pl , "Luolan sisäänkäynti"@fi , "Treuzoù mougev"@br , "Ieeja alā"@lv , "Höhleningang"@nds , "Grottmynning"@sv , "Vstup do jaskyne"@sk , "Pasukan ng Yungib"@tl ;
rdfs:subClassOf <http://openthings.cc/ontology/NaturalThing> , <http://openthings.cc/ontology/CaveEntrance> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/CaveEntrance> .
<http://openthings.cc/ontology/Vdsl-aru>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Vdsl-aru> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Vdsl-aru> .
<http://openthings.cc/ontology/HomeImprovement>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/HomeImprovement> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/HomeImprovement> .
<http://openthings.cc/ontology/ParquetLayer>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Craft> , <http://openthings.cc/ontology/ParquetLayer> , <http://openthings.cc/ontology/Shop> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/ParquetLayer> .
<http://openthings.cc/ontology/Tobacco>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Tobacco> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Tobacco> .
<http://openthings.cc/ontology/College>
a owl:Class ;
rdfs:label "Kolegj"@aln , "College"@da , "College"@en-gb , "Dalubhasaan"@tl , "კოლეჯი"@ka , "কলেজ"@bn , "Gymnasium"@sv , "Høyskole"@no , "Wysoka šula"@hsb , "Établissement d'enseignement supérieur"@fr , "Instituto"@gl , "Maktab"@ms , "大学"@ja , "Schola superior"@ia , "Lise"@tr , "پوهنځی"@ps , "Факултет"@sr-ec , "Trường Cao đẳng"@vi , "కళాశాల"@te , "Colégio"@pt , "Universidad o instituto"@es , "Skol-veur pe skol-uhel"@br , "Коледж"@uk , "Kolegioa"@eu , "מכללה"@he , "Institut"@ca , "Faculdade"@pt-br , "Fakultet"@hr , "Fakultet"@sr-el , "Srednja šola"@sl , "Főiskola"@hu , "Koledža"@lv , "Hogeschool"@nl , "Hochschule"@de , "Kollege"@af , "Колледж"@ru , "Uczelnia"@pl , "Oppilaitos"@fi , "Scuola superiore"@it , "كلّية"@arz , "كلّية"@ar , "Колеџ"@mk , "Κολέγιο"@el , "Vysoká škola"@cs , "Vysoká škola"@sk , "Colexu universitariu"@ast , "Wusoka šula"@dsb , "Hoogschool"@nds , "Каледж"@be-tarask , "Koledžas"@lt , "学院"@zh-hans ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/College> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://www.data.ign.fr/rge/taxoign.owl#Université> , <http://linkedgeodata.org/ontology/College> .
<http://openthings.cc/ontology/AutomotiveShop>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/AutomotiveShop> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/AutomotiveShop> .
<http://openthings.cc/ontology/Whatever>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Whatever> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Whatever> .
<http://openthings.cc/ontology/FireBeater>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/FireBeater> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/FireBeater> .
<http://openthings.cc/ontology/Dressmaker>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Craft> , <http://openthings.cc/ontology/Dressmaker> , <http://openthings.cc/ontology/Shop> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Dressmaker> .
<http://openthings.cc/ontology/HighwayFord>
a owl:Class ;
rdfs:label "Ford"@en-gb , "Ford"@hr , "مخاضة"@ar , "Khúc Sông Cạn"@vi , "Брод"@be-tarask , "Брод"@mk , "Брод"@ru , "Vao"@gl , "Harungan"@ms , "Roudour"@br , "Vadested"@da , "Vadested"@no , "Furt"@de , "Fiord"@aln , "Fiord"@ca , "Travessia de rio"@pt-br , "砦"@ja , "Akarsu geçidi"@tr , "מעברה (נקודת חציית נהר)"@he , "Prehod"@sl , "Bagtasan ng Tao"@tl , "Foord"@nds , "Bród"@pl , "Bród"@hsb , "Vadställe"@sv , "Броди"@uk , "Guado"@it , "Gázló"@hu , "Vado"@es , "Vado"@ia , "Koolmekoht"@et , "Келямо тарка"@myv , "浅滩"@zh-hans , "Brasta"@lt , "Voorde"@nl , "Vaðið"@is , "Kahluupaikka"@fi , "Vau"@ast , "Gué"@fr , "Gaz"@sr-el , "Brod"@cs , "Brod"@dsb , "Brod"@sk , "Газ"@sr-ec ;
rdfs:subClassOf <http://openthings.cc/ontology/HighwayThing> , <http://openthings.cc/ontology/HighwayFord> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://www.data.ign.fr/rge/taxoign.owl#Mare> , <http://dbpedia.org/ontology/Road> , <http://www.data.ign.fr/rge/taxoign.owl#Chemin> , <http://www.data.ign.fr/rge/taxoign.owl#Gue> , <http://www.data.ign.fr/rge/taxoign.owl#Fort> , gn:S.FT , gn:H.PNDS , gn:H.PND , gn:H.FJD , gn:T.FORD , gn:R.RD , <http://www.data.ign.fr/rge/taxoign.owl#Route> , gn:R.TRL , <http://www.data.ign.fr/rge/taxoign.owl#Radier> , <http://linkedgeodata.org/ontology/HighwayFord> , <http://www.data.ign.fr/rge/taxoign.owl#Etang> , <http://www.data.ign.fr/rge/taxoign.owl#Bois> ;
skos:definition "мелкое место во всю ширину реки, озера и т.п., удобное для перехода, переезда"@ru , "a shallow part of a stream which can be crossed on foot or by land vehicle"@en ;
skos:prefLabel "брод"@ru , "брод"@bg , "ford"@en , "vadställe"@sv , "vadested"@no .
<http://openthings.cc/ontology/RetailLanduse>
a owl:Class ;
rdfs:label "Kenwerzhioù"@br , "Maloobchody"@cs , "Varejo"@pt-br , "Drobne wikowanje"@dsb , "Einzelhandel"@de , "Retail (Obchodná zóna)"@sk , "Maloprodaja"@sr-el , "零售"@zh-hans , "Роздрібна торгівля"@uk , "Тэрыторыя дробнага гандлю"@be-tarask , "Kereskedelmi terület"@hu , "小売店"@ja , "Magazines"@ia , "Esnaf"@tr , "Khu vực Buôn bán"@vi , "Detailhandel"@da , "Mažmeninė prekyba"@lt , "Peruncitan"@ms , "Winkels"@nl , "Торговая территория"@ru , "Дуќани"@mk , "Kleinhandel"@af , "Detaljsalg"@no , "Tingi"@tl , "Mazumtirdzniecība"@lv , "بيع بالمفرق"@ar , "بيع بالمفرق"@arz , "Zona comercial"@gl , "Zona comercial"@es , "Vähittäiskauppa"@fi , "Negozi"@it , "Handel detaliczny"@pl , "Wobchody"@hsb , "Área comercial"@ast , "Al detall"@ca , "Me pakicë"@aln , "Zone commerciale"@fr , "Малопродаја"@sr-ec , "Trgovine"@sl , "Retail"@en-gb , "Trgovina"@hr ;
rdfs:subClassOf <http://openthings.cc/ontology/Landuse> , <http://openthings.cc/ontology/RetailLanduse> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/RetailLanduse> .
<http://openthings.cc/ontology/Solarium>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Solarium> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Solarium> .
<http://openthings.cc/ontology/Monastery>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Building> , <http://openthings.cc/ontology/Monastery> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/BuildingMonastery> , <http://linkedgeodata.org/ontology/Monastery> , gn:S.MSTY ;
skos:definition "религиозная община монахов, представляющая собой церковно-хозяйственную организацию, владеющую землями и капиталами"@ru , "a building and grounds where a community of monks lives in seclusion"@en ;
skos:prefLabel "мужской монастырь"@ru , "kloster"@no , "munkkloster"@sv , "monastery"@en , "манастир"@bg .
<http://openthings.cc/ontology/DogBin>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/DogBin> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/DogBin> .
<http://openthings.cc/ontology/Barfusspfad>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Barfusspfad> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Barfusspfad> .
<http://openthings.cc/ontology/SpeedCamera>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/HighwayThing> , <http://openthings.cc/ontology/SpeedCamera> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/SpeedCamera> .
<http://openthings.cc/ontology/Billboard>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Billboard> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Billboard> .
<http://openthings.cc/ontology/PassingPlaces>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/HighwayThing> , <http://openthings.cc/ontology/PassingPlaces> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/PassingPlaces> .
<http://openthings.cc/ontology/Doityourself>
a owl:Class ;
rdfs:label "Barkácsbolt"@hu , "Сделай-Сам"@ru , "Për ta bërë vetë"@aln , "Do-It-Yourself"@en-gb , "Orodjarna"@sl , "Magazin de bricolage"@ia , "Obchod pro kutily"@cs , "Gawin ng Sarili Mo"@tl , "براعه منزلية"@arz , "Tee-se-itse"@fi , "חנות עשה-זאת-בעצמך"@he , "Baumarkt"@de , "Sklep budowlany"@pl , "Gør-det-selv"@da , "Doe-het-zelf-winkel"@nl , "براعة منزلية"@ar , "Зроби сам"@uk , "Уради сам"@sr-ec , "Fai da-te"@it , "Зрабі сам"@be-tarask , "Faça você mesmo"@pt-br , "Направи-сам"@mk , "Bricolatge"@ca , "Tenda de bricolaxe"@gl , "Gör-det-själv"@sv , "Uradi sam"@hr , "Uradi sam"@sr-el , "Doen-dit-self-winkel"@af , "Magasin de bricolage"@fr , "Paslerska potrjeba"@hsb , "Pasidaryk pats"@lt , "Stal bitellat"@br , "DIY"@zh-hans , "Gjør-det-selv"@no , "Tienda de bricolaje"@es , "Tiệm Ngũ kim"@vi , "Bricolax"@ast , "Wobchod za baslarsku pótrjebu"@dsb , "Urob si sám"@sk ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Doityourself> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Doityourself> .
<http://openthings.cc/ontology/CyclewayTrack>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/CyclewayThing> , <http://openthings.cc/ontology/CyclewayTrack> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/CyclewayTrack> .
<http://openthings.cc/ontology/Riverbank>
a owl:Class ;
rdfs:label "Кеј"@mk , "Argine/Banchina"@it , "Ripa de fluvio/riviera"@ia , "Речна обала"@sr-ec , "Folyópart"@hu , "Margem de rio"@pt-br , "Rečna obala"@sr-el , "Flodbred"@da , "河岸"@zh-hans , "Brzeg rzeki"@pl , "Bờ sông"@vi , "Breh rieky"@sk , "Älvbank"@sv , "Pampang ng Ilog"@tl , "Бераг ракі"@be-tarask , "Rěcyny brjog"@dsb , "Breg"@sl , "Берег реки"@ru , "Jõekallas"@et , "Rěčny brjóh"@hsb , "Upes krasts"@lv , "Ribera'l ríu"@ast , "Берег ріки"@uk , "ضفة نهر"@ar , "Lit de rivière"@fr , "Riverbank"@ca , "Riverbank"@en-gb , "Riječna obala"@hr , "banka e lumit"@aln , "Stroomöver"@nds , "Naoz"@br , "Elvebredd"@no , "Upės krantas"@lt , "Rivierbedding"@af , "Beira do río"@gl , "Rivierbedding"@nl , "Břeh řeky"@cs , "Ribera"@es , "川岸"@ja , "גדת נהר"@he , "Irmak kenarı"@tr , "Flussufer"@de , "Joki"@fi , "ضفه نهر"@arz ;
rdfs:subClassOf <http://openthings.cc/ontology/WaterwayThing> , <http://openthings.cc/ontology/Riverbank> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Riverbank> .
<http://openthings.cc/ontology/Bandstand>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Leisure> , <http://openthings.cc/ontology/Bandstand> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Bandstand> .
<http://openthings.cc/ontology/Dormitory>
a owl:Class ;
rdfs:label "Asuntola"@fi , "Kollegium"@da , "Konvikt"@aln , "Dormitorio"@ia , "Dormitorio"@it , "Dormitoryo"@tl , "Dormitory"@en-gb , "Residència Universitària"@ca , "Asrama"@ms , "خوابگاه دانشجویی"@fa , "Yurt"@tr , "Dortoir"@fr , "Студентски дом"@sr-ec , "Студентски дом"@mk , "Інтэрнат"@be-tarask , "Ühiselamu"@et , "Kopmītnes"@lv , "Dormitório"@pt-br , "Studenthem"@sv , "Studentenwohnheim"@de , "Общежитие"@ru , "Residencia universitaria"@gl , "Κοιτώνας"@el , "Študentský domov"@sk , "عنبر نوم"@arz , "عنبر نوم"@ar , "Študentski dom"@sl , "Studentski dom"@hr , "Studentski dom"@sr-el , "宿舍"@zh-hans , "Internat"@hsb , "Internat"@dsb , "Studentenhuis"@nl , "Dormitoriu"@ast , "Residencia de estudiantes, colegio mayor"@es , "Dormitori"@fur , "საერთო საცხოვრებელი"@ka , "Kouskva"@br , "Studentski internat"@hsb , "Гуртожиток"@uk , "Bendrabutis"@lt , "Sovesal"@no , "Residencia de estudiantes"@es , "Kollégium"@hu , "Studentenhuus"@nds , "מעונות"@he , "Studentehuis"@af , "Kolej"@cs , "寮"@ja , "Bursa"@pl , "Ký túc xá"@vi ;
rdfs:subClassOf <http://openthings.cc/ontology/Building> , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Dormitory> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/BuildingDormitory> , <http://linkedgeodata.org/ontology/Dormitory> .
<http://openthings.cc/ontology/MilitaryRange>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/MilitaryThing> , <http://openthings.cc/ontology/MilitaryRange> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/MilitaryRange> .
<http://openthings.cc/ontology/PowerTower>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/PowerThing> , <http://openthings.cc/ontology/PowerTower> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/PowerTower> .
<http://openthings.cc/ontology/DogPark>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Leisure> , <http://openthings.cc/ontology/DogPark> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/DogPark> .
<http://openthings.cc/ontology/Stile>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/BarrierThing> , <http://openthings.cc/ontology/Stile> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Stile> .
<http://openthings.cc/ontology/Flooring>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Flooring> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Flooring> .
<http://openthings.cc/ontology/Information>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Information> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Information> .
<http://openthings.cc/ontology/Cathedral>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Building> , <http://openthings.cc/ontology/Cathedral> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Cathedral> .
<http://openthings.cc/ontology/ServiceStation>
a owl:Class ;
rdfs:label "Услуге на ауто-путу"@sr-ec , "Dinleme Tesisi"@tr , "Autobahnraststätte"@de , "Autópálya-pihenőhely"@hu , "Servicios de autostrata"@ia , "Прыдарожны сэрвіс"@be-tarask , "Avtocestno postajališče"@sl , "Gósćeńc pśi awtodroze"@dsb , "Servijoù gourhent"@br , "Autostradë Sherbime"@aln , "Usługi autostrady"@pl , "Придорожный сервис"@ru , "Moottoritiepalvelut"@fi , "Automagistralės paslaugos"@lt , "Snelweg Dienste"@af , "خدمات الطرق السريعة"@ar , "Awtodróhowy wotpočny hosćenc"@hsb , "خدمات الطرق السريعة"@arz , "Servicios n'autopista"@ast , "Motorway Services"@en-gb , "Services autoroutiers"@fr , "高速公路服务区"@zh-hans , "Autocesta - usluge"@hr , "Serviços de autoestrada"@pt-br , "Motorveitjenester"@no , "Motorvejsserviceområde"@da , "Stazione di servizio"@it , "Autosnelwegdienstverlening"@nl , "Крајпатен сервис"@mk , "Autobide Zerbitzuak"@eu , "Serveis en ruta"@ca , "Придорожній сервіс"@uk , "Dálniční odpočívadlo"@cs , "Dịch vụ Dọc đường Cao tốc"@vi , "Mga Palingkuran sa Daanan ng Sasakyang De-motor"@tl , "Usluge na auto-putu"@sr-el , "Área de servizo"@gl , "שירותי דרך"@he , "Vía de servicio"@es , "Perkhidmatan Lebuhraya"@ms ;
rdfs:subClassOf <http://openthings.cc/ontology/HighwayThing> , <http://openthings.cc/ontology/ServiceStation> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/ServiceStation> .
<http://openthings.cc/ontology/Diy>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Diy> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Diy> .
<http://openthings.cc/ontology/Daycare>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Daycare> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Daycare> .
<http://openthings.cc/ontology/Commercial>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Commercial> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Commercial> .
<http://openthings.cc/ontology/Attraction>
a owl:Class ;
rdfs:label "Lankytina vieta"@lt , "Atrakcja turystyczna"@pl , "Zanimivost"@sl , "Atracção"@pt , "Attraction"@en-gb , "Attraction"@fr , "Attraction"@ia , "Qef"@aln , "Славутасьць"@be-tarask , "Attraksjon"@no , "Atracción"@es , "Atracción"@gl , "Attractie"@nl , "Атракција"@mk , "Атракција"@sr-ec , "Atrakcija"@hr , "Atrakcija"@dsb , "Atrakcija"@hsb , "Atrakcija"@sr-el , "Atrakcija"@lv , "Nơi Du lịch"@vi , "معلم سياحي"@arz , "معلم سياحي"@ar , "ატრაქციონი"@ka , "Interés turísticu"@ast , "Цікаві місця"@uk , "Atração"@pt-br , "Turismiatraktsioon"@et , "אתר בעל עניין"@he , "Tra zedennus"@br , "Atrakzio"@eu , "Аттракцион"@ru , "جاذبه"@fa , "Pang-akit"@tl , "Turistická atrakce"@cs , "Atrakcia"@sk , "Látnivaló"@hu , "Atracció"@ca , "Attraktion"@de , "Attraktion"@sv , "Nähtävyys"@fi , "Gezelim görelim yeri"@tr , "Attraksie"@af , "アトラクション"@ja , "Seværdighed"@da , "景点"@zh-hans , "Attrazione turistica"@it , "Attraktioun"@lb ;
rdfs:subClassOf <http://openthings.cc/ontology/TourismThing> , <http://openthings.cc/ontology/Attraction> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Attraction> .
<http://openthings.cc/ontology/PowerGenerator>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/PowerThing> , <http://openthings.cc/ontology/PowerGenerator> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/PowerGenerator> .
<http://openthings.cc/ontology/Audiologist>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Audiologist> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Audiologist> .
<http://openthings.cc/ontology/ParkingPosition>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/AerowayThing> , <http://openthings.cc/ontology/ParkingPosition> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/ParkingPosition> .
<http://openthings.cc/ontology/AnimalsShop>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/AnimalsShop> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/AnimalsShop> .
<http://openthings.cc/ontology/Hospice>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Hospice> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Hospice> .
<http://openthings.cc/ontology/Moor>
a owl:Class ;
rdfs:label "Močvirje"@sl , "أرض جرداء"@ar , "أرض جرداء"@arz , "Mur"@ms , "Dažnai užliejama vieta"@lt , "Bataklık"@tr , "Lanneier"@br , "Páramo"@gl , "Páramo"@es , "Bjerghede"@da , "Lupang Pugalan ng Tubig"@tl , "Amarradera"@ast , "Торф"@uk , "Veen"@nl , "Bagno"@dsb , "Brejo"@pt-br , "Truông"@vi , "Nummi"@fi , "Торфяник"@ru , "Amarratge"@ca , "Močiar"@sk , "ביצה"@he , "Raba"@et , "Močvara"@hr , "Мочвара"@sr-ec , "Močvara"@sr-el , "Vřesoviště"@cs , "Mocsár"@hu , "Molo"@it , "Landa"@ia , "Пустара"@mk , "Knete"@aln , "Maure"@fr , "Тарфянік"@be-tarask , "Hed"@sv , "泊"@zh-hans , "沼地"@ja , "Moor"@de , "Moor"@en-gb , "Moor"@nds , "Mouer"@lb , "Myr"@no , "Tīrelis"@lv , "Bahno"@hsb , "Torfowisko"@pl , "دشت"@fa ;
rdfs:subClassOf <http://openthings.cc/ontology/NaturalThing> , <http://openthings.cc/ontology/Moor> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://www.data.ign.fr/rge/taxoign.owl#Bois> , <http://linkedgeodata.org/ontology/Moor> , gn:H.PND , <http://www.data.ign.fr/rge/taxoign.owl#ParcZoologique> , gn:H.PNDS , <http://www.data.ign.fr/rge/taxoign.owl#Mare> , gn:S.ZOO , gn:H.MOOR ;
skos:definition "зоологический парк, где содержат диких животных с целью их демонстрации"@ru , "a zoological garden or park where wild animals are kept for exhibition"@en ;
skos:prefLabel "зоопарк"@ru , "зоопарк"@bg , "dyrehage"@no , "zoo"@en , "zoo"@sv .
<http://openthings.cc/ontology/Groceries>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Groceries> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Groceries> .
<http://openthings.cc/ontology/Outlet>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Outlet> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Outlet> .
<http://openthings.cc/ontology/Fruit>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Fruit> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Fruit> .
<http://openthings.cc/ontology/Chicane>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/GeoThing> , <http://openthings.cc/ontology/Chicane> , owl:Thing ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Chicane> .
<http://openthings.cc/ontology/ConstructionLanduse>
a owl:Class ;
rdfs:label "Teren budowy"@pl , "Konstruksie"@af , "Būvlaukums"@lv , "Byggeri"@da , "Градилиште"@mk , "Градилиште"@sr-ec , "Twar"@hsb , "Pembinaan"@ms , "Construción"@gl , "Savadur"@br , "In costruzion"@fur , "Công trường Xây dựng"@vi , "Будівництво"@uk , "Construction"@en-gb , "Construction"@fr , "Construction"@ia , "Costruzione"@it , "Gradilište"@hr , "Gradilište"@sr-el , "Baustelle"@de , "Staveniště"@cs , "Ndërtim"@aln , "工事中"@ja , "ورشه بناء"@arz , "Twarnišćo"@dsb , "Eraikuntza"@eu , "Стройка"@ru , "Gradbišče"@sl , "Építési terület"@hu , "Construcción"@ast , "Construcción"@es , "In aanbouw"@nl , "Stavba"@sk , "建设"@zh-hans , "ورشة بناء"@ar , "İnşaat"@tr , "Construcció"@ca , "Rakennustyömaa"@fi , "Будаўніцтва"@be-tarask , "Kontruksjon"@no , "Konstruksyon"@tl , "Construção"@pt-br , "მშენებლობა"@ka , "Statyba"@lt ;
rdfs:subClassOf <http://openthings.cc/ontology/Landuse> , <http://openthings.cc/ontology/ConstructionLanduse> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/ConstructionLanduse> .
<http://openthings.cc/ontology/Trade>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Trade> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Trade> .
<http://openthings.cc/ontology/RailwayStop>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/RailwayThing> , <http://openthings.cc/ontology/RailwayStop> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass gn:S.RSTP , <http://linkedgeodata.org/ontology/RailwayStop> ;
skos:definition "a place lacking station facilities where trains stop to pick up and unload passengers and freight"@en , "пункт, место, установленные для посадки и высадки пассажиров электропоезда"@ru ;
skos:prefLabel "жп спирка"@bg , "остановка поезда"@ru , "jernbanestoppested"@no , "railroad stop"@en , "järnvägsstopp"@sv .
<http://openthings.cc/ontology/BusStation>
a owl:Class ;
rdfs:label "公交主站"@zh-hans , "د بسونو اډه"@ps , "Autobus-geltoki"@eu , "Trạm Xe buýt"@vi , "محطه حافلات"@arz , "Arrêt de bus"@fr , "Busowe dwórnišćo"@dsb , "Busowe dwórnišćo"@hsb , "Bushalte"@af , "תחנת אוטובוס"@he , "Stacioni i Autobusave"@aln , "Bussijaam"@et , "Аўтобусны прыпынак"@be-tarask , "Autoosta"@lv , "Σταθμός Λεωφορείου"@el , "Estació d'autobusos"@ca , "Avtobusna postaja"@sl , "Stazion des corieris"@fur , "Stacja autobusowa"@pl , "বাস স্টেশন"@bn , "Stesen Bas"@ms , "ავტობუსის გაჩერება"@ka , "Автовокзал"@uk , "Bus Station"@en-gb , "Station de autobus"@ia , "Estación de autobuses"@es , "Autobusová stanica"@sk , "Estación de autobuses"@gl , "Estación d'autobús"@ast , "Arsav bus"@br , "Autobusové nádraží"@cs , "محطة حافلات"@ar , "Autobusų stotis"@lt , "Stazione degli autobus"@it , "Linja-autoasema"@fi , "Автобусная станция"@ru , "Strætóstöð"@is , "Busarrêt"@lb , "Autóbusz-állomás"@hu , "Autobusni kolodvor"@hr , "Estação de Ônibus/Rodoviária"@pt-br , "Himpilan ng Bus"@tl , "バス停"@ja , "Аутобуска станица"@sr-ec , "Autobuska stanica"@sr-el , "Busstation"@da , "Busstation"@nl , "Busstation"@sv , "Busstasjon"@no , "Автобуска станица"@mk , "Otogar"@tr , "Busbahnhof"@de ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/BusStation> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass gn:S.BUSTN , <http://linkedgeodata.org/ontology/BusStation> ;
skos:definition "a facility comprising ticket office, platforms, etc. for loading and unloading passengers"@en , "транспортное предприятие для обслуживания пассажиров междугородных и пригородных автобусных сообщений"@ru ;
skos:prefLabel "автостанция"@ru , "bus station"@en .
<http://openthings.cc/ontology/HouseConnectionBox>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/PowerThing> , <http://openthings.cc/ontology/HouseConnectionBox> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/HouseConnectionBox> .
<http://openthings.cc/ontology/Motorcycle>
a owl:Class ;
rdfs:label "Motorradgeschäft"@de , "Venta de motos"@ast , "摩托车店"@zh-hans , "Motocyklový obchod"@sk , "Prodej motocyklů"@cs , "Motosiklet Dükkanı"@tr , "Trgovina z motorji"@sl , "Shitore e Motorrave"@aln , "Мотоцикли"@uk , "Sklep z motocyklami"@pl , "Motoorradladen"@nds , "Motorsykkelbutikk"@no , "摩托車店"@zh-hant , "バイクショップ"@ja , "Wobchod za motorske"@dsb , "Wobchod za motorske"@hsb , "Motorcykelhandlare"@sv , "متجر دراجات نارية"@ar , "متجر دراجات نارية"@arz , "Botiga de motocicletes"@ca , "Моторцикли"@mk , "Motorfietsenwinkel"@nl , "Motociklų parduotuvė"@lt , "Moto Shop"@hr , "Loja de motocicletas"@pt-br , "Tenda de motocicletas"@gl , "חנות אופנועים"@he , "Prodavnica motocikala"@sr-el , "Cửa hàng Xe mô tô"@vi , "Motorcycle Shop"@en-gb , "Motorcykelbutik"@da , "Магазин по продаже мотоциклов"@ru , "Magazin de motocyclos"@ia , "Tindahan ng Motorsiklo"@tl , "Stal marc'hoù-tan"@br , "Tienda de motocicletas"@es , "Moottoripyöräkauppa"@fi , "Продавница мотоцикала"@sr-ec , "Motorfietswinkel"@af , "Motociklu veikals"@lv , "Motorbolt"@hu , "Concessionario di motociclette"@it , "Крама матацыклаў"@be-tarask , "Magasin de moto"@fr ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Motorcycle> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Motorcycle> .
<http://openthings.cc/ontology/Consulate>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Consulate> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Consulate> .
<http://openthings.cc/ontology/Subdivision>
a owl:Class ;
rdfs:label "Trabantowe město"@hsb , "Deelgebied"@af , "Deelgebied"@nl , "Kabahaging kahatian"@tl , "Trabantowe město"@dsb , "Subdivisão"@pt-br , "Subdivizija"@lt , "Sotdivision"@fur , "Підрозділ"@uk , "التقسيم الفرعي"@ar , "التقسيم الفرعي"@arz , "Dzielnica"@pl , "Pododdelek"@sl , "Subdivisió"@ca , "Subdibisio"@eu , "Suddivisione"@it , "Subdivisión"@es , "Subdivisión"@ast , "Subdivisión"@gl , "Alt bölümü"@tr , "Underafdeling"@da , "Podgrupa"@hr , "Podgrupa"@sr-el , "区分"@ja , "Parcely"@cs , "Админ. подрачје"@mk , "Подгрупа"@sr-ec , "Pododdelenie"@sk , "חלוקת משנה"@he , "Υποδιαίρεση"@el , "Underavdelning"@sv , "Падразьдзел"@be-tarask , "Underavdeling"@no , "Naapurusto"@fi , "Untergruppe"@de , "Subdivision"@en-gb , "Subdivision"@fr , "Subdivision"@ia , "细分"@zh-hans , "Településrész"@hu , "Nenndamje"@aln , "Hàng xóm"@vi , "Isrann"@br , "Подразделение"@ru , "Subdivisão"@pt ;
rdfs:subClassOf <http://openthings.cc/ontology/Place> , <http://openthings.cc/ontology/Subdivision> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Subdivision> , <http://www.data.ign.fr/rge/taxoign.owl#Lotissement> .
<http://openthings.cc/ontology/Camera>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Camera> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Camera> .
<http://openthings.cc/ontology/ArtsCentre>
a owl:Class ;
rdfs:label "艺术中心"@zh-hans , "Arte Zentroa"@eu , "Centrum sztuki"@pl , "Centro artistic"@ia , "Trung tâm Nghệ thuật"@vi , "Konstcenter"@sv , "Sanat Merkezi"@tr , "Art Qendra"@aln , "Kunstcollectief"@nl , "מרכז אמנויות"@he , "Дом на уметности"@mk , "Κέντρο Τεχνών"@el , "ხელოვნების ცენტრი"@ka , "Mākslas centrs"@lv , "Umetnički centar"@sr-el , "Centro de Arte"@pt-br , "Taidekeskus"@fi , "Umjetnički centar"@hr , "Művészeti központ"@hu , "Lunduyan ng Sining"@tl , "Дом искусств"@ru , "Centri pes arts"@fur , "Centro artístico"@es , "Centro artístico"@gl , "Kultúrne stredisko"@sk , "Centru d'arte"@ast , "مركز فني/ثقافي"@ar , "مركز فني/ثقافي"@arz , "Centre d'Art"@ca , "Kunssentrum"@af , "Уметнички центар"@sr-ec , "Menų centras"@lt , "Kulturny centrum"@hsb , "Kulturny centrum"@dsb , "Kunstcenter"@nds , "Kunstcenter"@da , "Kunstcenter"@de , "Umetnostni center"@sl , "Kunstsenter"@no , "アートセンター"@ja , "Centre artistique"@fr , "Kreizenn arz"@br , "Arts Centre"@en-gb , "Мистецький центр"@uk , "Мастацкі цэнтар"@be-tarask , "Centro d'arte"@it , "Pusat Seni"@ms , "Kulturní centrum"@cs ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/ArtsCentre> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/ArtsCentre> .
<http://openthings.cc/ontology/Souvenir>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Souvenir> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Souvenir> .
<http://openthings.cc/ontology/SummitCross>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/ManMadeThing> , <http://openthings.cc/ontology/SummitCross> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/SummitCross> .
<http://openthings.cc/ontology/Sculptor>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Craft> , <http://openthings.cc/ontology/Sculptor> , <http://openthings.cc/ontology/Shop> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Sculptor> .
<http://openthings.cc/ontology/Palace>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/HistoricThing> , <http://openthings.cc/ontology/Palace> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass gn:S.PAL , <http://linkedgeodata.org/ontology/Palace> ;
skos:definition "здание, являющееся жилищем, постоянным местопребыванием царствующей особы, главы государства, а также членов царствующей семьи"@ru , "a large stately house, often a royal or presidential residence"@en ;
skos:prefLabel "дворец"@ru , "дворец"@bg , "palass"@no , "palats"@sv , "palace"@en .
<http://openthings.cc/ontology/Hump>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/GeoThing> , <http://openthings.cc/ontology/Hump> , owl:Thing ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Hump> .
<http://openthings.cc/ontology/GamblingShop>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/GamblingShop> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/GamblingShop> .
<http://openthings.cc/ontology/Hotel>
a owl:Class ;
rdfs:label "Leti"@br , "Гатэль"@be-tarask , "Hotell"@et , "Hotell"@no , "Hotell"@sv , "Hótel"@is , "Khách sạn"@vi , "Otel"@tl , "హోటెల్"@te , "ホテル"@ja , "Szálloda"@hu , "Гостиница"@ru , "Hôtel"@fr , "Готель"@uk , "Хотел"@sr-ec , "Хотел"@mk , "هتل"@fa , "Ξενοδοχείο"@el , "Ndáko na mobémbo"@ln , "فندق"@arz , "فندق"@ar , "სასტუმრო"@ka , "Hótelið"@is , "Viesnīca"@lv , "酒店"@zh-hans , "Hotel"@tr , "Hotel"@sr-el , "Hotel"@sq , "Hotel"@sl , "Hotel"@sk , "Hotel"@pt-br , "Hotel"@pt , "Hotel"@pl , "Hotel"@nl , "Hotel"@nds , "Hotel"@ms , "Hotel"@de , "Hotel"@af , "Hotel"@aln , "Hotel"@ast , "Hotel"@ca , "Hotel"@cs , "Hotel"@da , "Hotel"@dsb , "Hotel"@en-gb , "Hotel"@es , "Hotel"@eu , "Hotel"@gl , "Hotel"@hr , "Hotel"@hsb , "Hotel"@ia , "Hotel"@it , "Hotel"@ku-latn , "מלון"@he , "Hotel"@lb , "Viešbutis"@lt , "酒店"@zh-hant , "Гостинница"@ru , "Готел"@rue , "בית מלון"@he , "Hotelli"@fi , "هوټل"@ps ;
rdfs:subClassOf <http://openthings.cc/ontology/Accomodation> , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Hotel> , <http://openthings.cc/ontology/TourismThing> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://www.data.ign.fr/rge/taxoign.owl#Hôtel> , <http://linkedgeodata.org/ontology/Hotel> , gn:S.HTL , <http://schema.org/Hotel> , <http://dbpedia.org/ontology/Hotel> ;
skos:definition "a building providing lodging and/or meals for the public"@en , "то же, что и гостиница; дом для временного проживания туристов"@ru ;
skos:prefLabel "hotell"@no , "hotell"@sv , "хотел"@bg , "hotel"@en , "отель"@ru .
<http://openthings.cc/ontology/Internet>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Internet> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Internet> .
<http://openthings.cc/ontology/SubwayEntrance>
a owl:Class ;
rdfs:label "Metro Giriş"@tr , "Ingresso alla metropolitana"@it , "Zachod k pódzemskej"@dsb , "Podzemna - ulaz"@hr , "Είσοδος Στο Μετρό"@el , "Entrada do metrô"@pt-br , "Tunnelbaneingång"@sv , "Вход в метро"@ru , "U-Bahn-Zugang"@de , "Undergrundsindgang"@da , "مدخل مترو"@ar , "مدخل مترو"@arz , "Ulaz u metro"@sr-el , "Wejście na stację metra"@pl , "Zachod do podzemskeje železnicy"@hsb , "כניסה לתחנת רכבת תחתית"@he , "Улаз у метро"@sr-ec , "Влез во метро"@mk , "Metroingang"@af , "Metroingang"@nl , "მეტროში შესასვლელი"@ka , "Accés al Metro"@ca , "Metro Hyrja"@aln , "Entrata al metro"@ia , "Subway Entrance"@en-gb , "Metro Sarbidea"@eu , "Pasukan sa Pang-ilalim na Daambakal"@tl , "Antre metro"@br , "Metron sisäänkäynti"@fi , "Metro ieeja"@lv , "Bouche de métro"@fr , "Boca de metro"@es , "Boca de metro"@gl , "Metrókijárat"@hu , "地铁入口"@zh-hans , "Уваход у мэтро"@be-tarask , "Entrada de metro"@ast , "Įėjimas į metro"@lt , "Cửa vào Nhà ga Xe điện ngầm"@vi , "Vchod do metra"@sk , "Вхід в метро"@uk , "Vstup do metra"@cs , "Pintu Masuk Bawah Tanah"@ms , "Vhod na podzemno"@sl , "T-baneinngang"@no , "地下鉄駅入口"@ja ;
rdfs:subClassOf <http://openthings.cc/ontology/RailwayThing> , <http://openthings.cc/ontology/SubwayEntrance> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/SubwayEntrance> .
<http://openthings.cc/ontology/LawyerOffice>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Office> , <http://openthings.cc/ontology/LawyerOffice> , <http://openthings.cc/ontology/Building> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/LawyerOffice> .
<http://openthings.cc/ontology/Veterinary>
a owl:Class ;
rdfs:label "Zwěrjacy lěkar"@hsb , "Eläinlääkäri"@fi , "Ветеринарна клиника"@mk , "Veterinárna ordinácia"@sk , "Clínica veterinaria"@es , "Clínica veterinaria"@gl , "Skótny gójc"@dsb , "ვეტერინარული კლინიკა"@ka , "Veterinarijos chirurgija"@lt , "Вэтэрынарная клініка"@be-tarask , "Ciruxía veterinaria"@ast , "Ветлікарня"@uk , "Veterinario"@it , "Veterinární ordinace"@cs , "Veteriner"@tr , "Phẫu thuật Thú y"@vi , "Surjianerezh evit al loened"@br , "جراحة بيطرية"@ar , "Ветеринарска хирургија"@sr-ec , "獣医外科"@ja , "Kirurgji Veterinare"@aln , "Clinica veterinari"@ia , "Dierenarts"@nl , "מרפאה וטרינרית"@he , "Chirurgia weterynaryjna"@pl , "جراحه بيطرية"@arz , "Állatorvosi rendelő"@hu , "Κτηνιατρική Χειρουργική"@el , "Veterinærklinikk"@no , "Veterinar"@hr , "Tierarzt"@de , "Paninistis na Pangbeterinarya"@tl , "Veterinārā ķirurģija"@lv , "Chirurgie vétérinaire"@fr , "Veearts"@af , "Veterinarska klinika"@sl , "Doktor Haiwan"@ms , "Veterinari"@ca , "Veterinari"@fur , "Ветеринарная клиника"@ru , "Veterinär"@sv , "Veterinarska hirurgija"@sr-el , "兽医"@zh-hans , "Clínica veterinária"@pt-br , "Veterinary Surgery"@en-gb , "Dyrlæge"@da ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Veterinary> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Veterinary> .
<http://openthings.cc/ontology/ManMadeSign>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/ManMadeThing> , <http://openthings.cc/ontology/ManMadeSign> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/ManMadeSign> .
<http://openthings.cc/ontology/Terrace>
a owl:Class ;
rdfs:label "Шэраг жылых дамоў"@be-tarask , "Taras"@pl , "Terass"@sv , "Terase"@lv , "Teras"@tr , "Teres"@ms , "Řadová zástavba"@cs , "Terrazza"@it , "Radová zástavba"@sk , "Terras"@af , "Terras"@nl , "Savenn"@br , "Terrace"@en-gb , "Balkonahe"@tl , "Terrassa"@ia , "Sorház"@hu , "Terrassa"@ca , "صف منازل"@ar , "صف منازل"@arz , "阳台"@zh-hans , "Terraza"@gl , "Terraza"@ast , "Terraza"@es , "Terassi"@fi , "Terraço"@pt-br , "Terraço"@pt , "מרפסת פתוחה"@he , "テラス"@ja , "Terrass"@nds , "Тераса"@sr-ec , "Тераса"@mk , "Тераса"@uk , "Terasa"@hr , "Terasa"@dsb , "Terasa"@hsb , "Terasa"@lt , "Terasa"@sl , "Terasa"@sr-el , "Ряд жилых домов"@ru , "Tarracë"@aln , "Terrasse"@da , "Terrasse"@de , "Terrasse"@fr , "Terrasse"@lb , "Terrasse"@no , "Thềm"@vi ;
rdfs:subClassOf <http://openthings.cc/ontology/Building> , <http://openthings.cc/ontology/Terrace> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Terrace> .
<http://openthings.cc/ontology/RescueService>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/RescueService> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/RescueService> .
<http://openthings.cc/ontology/Meat>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Meat> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Meat> .
<http://openthings.cc/ontology/AirportGate>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/AerowayThing> , <http://openthings.cc/ontology/AirportGate> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/AirportGate> .
<http://openthings.cc/ontology/HighwayPrimaryLink>
a owl:Class ;
rdfs:label "Carretera principal"@ca , "Главни пут"@sr-ec , "一级道路"@zh-hans , "Estrada principal"@gl , "Галоўная дарога"@be-tarask , "Via principal"@ia , "Droga krajowa – dojazd"@pl , "Strada principale"@it , "Главен пат"@mk , "Glavni put"@sr-el , "Devlet Yolu bağlantısı"@tr , "Jalan Utama"@ms , "Pirmosios reikšmės kelias"@lt , "Főút"@hu , "Cesta I. triedy"@sk , "მთავარი გზა"@ka , "Droga prědnego rěda"@dsb , "Главная дорога"@ru , "幹線道路"@ja , "Pennhent"@br , "Primêre pad"@af , "Priključek na glavno cesto"@sl , "Silnice první třídy"@cs , "כביש ראשי"@he , "Galvenais valsts ceļš"@lv , "Rruge kryesore"@aln , "Primary Road"@en-gb , "Državna cesta"@hr , "Route principale"@fr , "Primaire weg"@nl , "Pangunahing Kalsada"@tl , "Kantatie"@fi , "З’єднання з головною дорогою"@uk , "Haaptstrooss"@lb , "Hovedvej (primærrute)"@da , "Enlace de carretera principal"@es , "Via Primária"@pt-br , "Enllaz de carretera primaria"@ast , "طريق أولي"@ar , "طريق أولي"@arz , "Errepide nagusi"@eu , "Primær vei"@no , "Đường Chính"@vi , "Primärauffahrt"@de , "Dróha prěnjeho rjada"@hsb ;
rdfs:subClassOf <http://openthings.cc/ontology/HighwayThing> , <http://openthings.cc/ontology/HighwayPrimaryLink> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/HighwayPrimaryLink> .
<http://openthings.cc/ontology/Collapsed>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Building> , <http://openthings.cc/ontology/Collapsed> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Collapsed> .
<http://openthings.cc/ontology/Locksmith>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Craft> , <http://openthings.cc/ontology/Shop> , <http://openthings.cc/ontology/Locksmith> , owl:Thing , <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Locksmith> .
<http://openthings.cc/ontology/CivilBoundary>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Boundary> , <http://openthings.cc/ontology/CivilBoundary> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/CivilBoundary> .
<http://openthings.cc/ontology/Vets>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/Vets> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/Vets> .
<http://openthings.cc/ontology/ThemePark>
a owl:Class ;
rdfs:label "Teemapuisto"@fi , "Lunapark"@tr , "Vergnügungspark"@de , "Parke tematiko"@eu , "Forlystelsespark"@da , "Công viên Giải trí"@vi , "Rozwjaseleński park"@dsb , "حديقه ملاهي"@arz , "თემატური პარკი"@ka , "Fornøyelsespark"@no , "Parc temàtic"@ca , "Тематичний парк"@uk , "Аттракционы"@ru , "Vidámpark"@hu , "Teemapark"@et , "Theme Park"@en-gb , "Parc à thème"@fr , "Тематічный парк"@rue , "Nöjespark"@sv , "Tematski park"@hr , "Tematski park"@sr-el , "テーマパーク"@ja , "Атракцыёны"@be-tarask , "פארק נושאי"@he , "Park tematek"@br , "Park zabawy"@hsb , "Taman Tema"@ms , "Atrakciju parks"@lv , "Liwasang may Tema"@tl , "主题公园"@zh-hans , "حديقة ملاهي"@ar , "Забавен парк"@mk , "Тематски парк"@sr-ec , "Parque temático"@es , "Parque temático"@gl , "Parque temático"@pt , "Parque temático"@pt-br , "Parco divertimenti"@it , "Park i lojnave"@aln , "Zábavní park"@cs , "Zábavný park"@sk , "Parque temáticu"@ast , "Parco de attractiones"@ia , "Zabaviščni park"@sl , "Park tematyczny"@pl , "Pretpark"@af , "Pretpark"@nl ;
rdfs:subClassOf <http://openthings.cc/ontology/TourismThing> , <http://openthings.cc/ontology/ThemePark> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/ThemePark> .
<http://openthings.cc/ontology/HistoricMilestone>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/HistoricThing> , <http://openthings.cc/ontology/HistoricMilestone> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/HistoricMilestone> .
<http://openthings.cc/ontology/ReceptionArea>
a owl:Class ;
rdfs:label "Empfangsbereich"@de , "Àrea de recepció"@ca , "Zona de recepción"@gl , "Takad degemer"@br , "Zone de réception"@fr , "Resepsiyon Alanı"@tr , "Recepcja"@pl , "接待区域"@zh-hans , "Uzņemšanas zona"@lv , "Llugar de recepción"@ast , "Recepce"@cs , "Vastaanottoalue"@fi , "Reception Area"@en-gb , "Ontvangsarea"@af , "Прыёмная"@be-tarask , "Priėmimo zona"@lt , "Приёмная"@ru , "Receptie"@nl , "Пријемно подручје"@sr-ec , "Modtagelsesområde"@da , "منطقة استقبال"@ar , "Χώρος Υποδοχής"@el , "Área de recepción"@es , "レセプションエリア"@ja , "Зона прийому"@uk , "Tanggapang Pook"@tl , "Prijemno područje"@sr-el , "Рецепција"@mk , "Área de recepção"@pt-br , "منطقه استقبال"@arz , "Přijimanski wobłuk"@hsb , "Recepcija"@hr , "Recepcija"@sl , "Oppsamlingsområde"@no , "איזור קבלה"@he , "Phòng Tiếp khách"@vi , "Vastuvõtt"@et , "Sambut Tetamu"@ms , "Area de reception"@ia , "Area accoglienza"@it , "Recepció"@hu , "მიმღები"@ka , "Wobcerk pśidostaśa"@dsb , "Zona e pritjes"@aln ;
rdfs:subClassOf <http://openthings.cc/ontology/Amenity> , <http://openthings.cc/ontology/ReceptionArea> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/ReceptionArea> .
<http://openthings.cc/ontology/HistoricTower>
a owl:Class ;
rdfs:label "Torni"@fi , "Turm"@de , "Tor"@fur , "Torn"@sv , "Torn"@et , "Torony"@hu , "Кула"@mk , "מגדל"@he , "Tornis"@lv , "Stolp"@sl , "Veža"@sk , "Toren"@nl , "კოშკი"@ka , "برج"@ar , "برج"@ps , "برج"@fa , "برج"@arz , "Tour"@br , "Tour"@fr , "Bokštas"@lt , "Торањ"@sr-ec , "Torre histórica"@pt-br , "Dorre"@eu , "Toring"@af , "Toranj"@hr , "Toranj"@sr-el , "Kullë"@aln , "Tuerm"@lb , "Kule"@tr , "Tore"@tl , "Věž"@cs , "Tower"@en-gb , "Tårn"@da , "Tårn"@no , "Tháp"@vi , "Menara"@ms , "Башня"@ru , "Turre"@ia , "Wieża"@pl , "Torm"@dsb , "Вежа"@be-tarask , "Башта"@uk , "塔"@zh-hans , "塔"@ja , "Toorn"@nds , "Torre"@pt , "Torre"@it , "Torre"@gl , "Torre"@es , "Torre"@ca , "Torre"@ast , "Wěža"@hsb ;
rdfs:subClassOf <http://openthings.cc/ontology/HistoricThing> , <http://openthings.cc/ontology/HistoricTower> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://www.data.ign.fr/rge/taxoign.owl#Tour> , <http://www.data.ign.fr/rge/taxoign.owl#Ã?gout> , gn:S.TOWR , <http://linkedgeodata.org/ontology/HistoricTower> ;
skos:definition "a high conspicuous structure, typically much higher than its diameter"@en , "высокое узкое архитектурное или инженерное сооружение (круглой, четырёхгранной или многогранной формы) различного назначения"@ru ;
skos:prefLabel "кула"@bg , "башня"@ru , "torn"@sv , "tower"@en , "tårn"@no .
<http://openthings.cc/ontology/BarrierThing>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/GeoThing> , <http://openthings.cc/ontology/BarrierThing> , owl:Thing ;
owl:equivalentClass <http://linkedgeodata.org/ontology/BarrierThing> .
<http://openthings.cc/ontology/DragLift>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/AerialwayThing> , <http://openthings.cc/ontology/DragLift> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/DragLift> .
<http://openthings.cc/ontology/WaterwayRock>
a owl:Class ;
rdfs:subClassOf <http://openthings.cc/ontology/WaterwayThing> , <http://openthings.cc/ontology/WaterwayRock> , owl:Thing , <http://openthings.cc/ontology/GeoThing> ;
owl:equivalentClass <http://linkedgeodata.org/ontology/WaterwayRock> .
<http://openthings.cc/ontology/FarmShop>
a owl:Class ;