-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathMappings.sql
1827 lines (1802 loc) · 175 KB
/
Mappings.sql
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
--
-- PostgreSQL database dump
--
SET statement_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = off;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET escape_string_warning = off;
SET search_path = public, pg_catalog;
--
-- Data for Name: lgd_map_datatype; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY lgd_map_datatype (k, property, datatype) FROM stdin;
capacity http://linkedgeodata.org/capacity int
recycling:scrap_metal http://linkedgeodata.org/recycling-scrapMetal boolean
undefined http://linkedgeodata.org/undefined int
noexit http://linkedgeodata.org/noexit boolean
cables http://linkedgeodata.org/cables int
cutting http://linkedgeodata.org/cutting boolean
tunnel http://linkedgeodata.org/tunnel boolean
wheelchair http://linkedgeodata.org/wheelchair boolean
by_night http://linkedgeodata.org/byNight boolean
charge http://linkedgeodata.org/charge boolean
verified http://linkedgeodata.org/verified boolean
alternate http://linkedgeodata.org/alternate boolean
mooring http://linkedgeodata.org/mooring boolean
ref:fgkz http://linkedgeodata.org/ref-fgkz int
boat http://linkedgeodata.org/boat boolean
dispensing http://linkedgeodata.org/dispensing boolean
fuel:diesel http://linkedgeodata.org/fuel-diesel boolean
recycling:shoes http://linkedgeodata.org/recycling-shoes boolean
payment:electronic_purses http://linkedgeodata.org/payment-electronicPurses boolean
frequency http://linkedgeodata.org/frequency float
taxi http://linkedgeodata.org/taxi boolean
minspeed http://linkedgeodata.org/minspeed int
payment:notes http://linkedgeodata.org/payment-notes boolean
ruins http://linkedgeodata.org/ruins boolean
fuel:HGV_diesel http://linkedgeodata.org/fuel-HGVDiesel boolean
recycling:cans http://linkedgeodata.org/recycling-cans boolean
game:patrizier2:tuch http://linkedgeodata.org/game-patrizier2-tuch int
uic_ref http://linkedgeodata.org/uicRef int
snowmobile http://linkedgeodata.org/snowmobile boolean
atm http://linkedgeodata.org/atm boolean
level http://linkedgeodata.org/level boolean
family_spaces http://linkedgeodata.org/familySpaces int
recycling:glass http://linkedgeodata.org/recycling-glass boolean
payment:coins http://linkedgeodata.org/payment-coins boolean
horse http://linkedgeodata.org/horse boolean
park_ride http://linkedgeodata.org/parkRide boolean
lit http://linkedgeodata.org/lit boolean
permissive http://linkedgeodata.org/permissive boolean
osmarender:renderRef http://linkedgeodata.org/osmarender-renderRef boolean
oneway:bicycle http://linkedgeodata.org/oneway-bicycle boolean
openGeoDB:loc_id http://linkedgeodata.org/openGeoDB-locId int
toilet http://linkedgeodata.org/toilet boolean
ele http://linkedgeodata.org/ele float
step_count http://linkedgeodata.org/stepCount int
fuel:octane_91 http://linkedgeodata.org/fuel-octane91 boolean
segregated http://linkedgeodata.org/segregated boolean
traffic_signals:sound http://linkedgeodata.org/trafficSignals-sound boolean
payment:bob http://linkedgeodata.org/payment-bob boolean
game:patrizier2:bier http://linkedgeodata.org/game-patrizier2-bier int
gauge http://linkedgeodata.org/gauge int
osmarender:renderName http://linkedgeodata.org/osmarender-renderName boolean
StrVz http://linkedgeodata.org/StrVz int
lanes http://linkedgeodata.org/lanes int
recycling:green_waste http://linkedgeodata.org/recycling-greenWaste boolean
ncn http://linkedgeodata.org/ncn boolean
motorroad http://linkedgeodata.org/motorroad boolean
opengeodb:lon http://linkedgeodata.org/opengeodb-lon float
game:patrizier2:ziegel http://linkedgeodata.org/game-patrizier2-ziegel int
asb http://linkedgeodata.org/asb int
erected http://linkedgeodata.org/erected int
TMC:cid_58:tabcd_1:NextLocationCode http://linkedgeodata.org/TMC-cid58-tabcd1-nextlocationcode int
payment:geldkarte http://linkedgeodata.org/payment-geldkarte boolean
recycling:glass_bottles http://linkedgeodata.org/recycling-glassBottles boolean
fuel:GTL_diesel http://linkedgeodata.org/fuel-GTLDiesel boolean
payment:debit_cards http://linkedgeodata.org/payment-debitCards boolean
game:patrizier2:wolle http://linkedgeodata.org/game-patrizier2-wolle boolean
onkz http://linkedgeodata.org/onkz int
bench http://linkedgeodata.org/bench boolean
maxweight http://linkedgeodata.org/maxweight float
VzG http://linkedgeodata.org/VzG int
fenced http://linkedgeodata.org/fenced boolean
seats http://linkedgeodata.org/seats int
tracks http://linkedgeodata.org/tracks int
opengeodb:lat http://linkedgeodata.org/opengeodb-lat float
openGeoDB:layer http://linkedgeodata.org/openGeoDB-layer int
recycling:paper http://linkedgeodata.org/recycling-paper boolean
fuel:octane_95 http://linkedgeodata.org/fuel-octane95 boolean
video http://linkedgeodata.org/video boolean
game:patrizier2:eisenwaren http://linkedgeodata.org/game-patrizier2-eisenwaren int
fuel:octane_98 http://linkedgeodata.org/fuel-octane98 boolean
fuel:cng http://linkedgeodata.org/fuel-cng boolean
bus http://linkedgeodata.org/bus boolean
stars http://linkedgeodata.org/stars int
backrest http://linkedgeodata.org/backrest boolean
public http://linkedgeodata.org/public boolean
oneway http://linkedgeodata.org/oneway boolean
blz http://linkedgeodata.org/blz int
disused http://linkedgeodata.org/disused boolean
maxwidth http://linkedgeodata.org/maxwidth int
game:patrizier2:eisenerz http://linkedgeodata.org/game-patrizier2-eisenerz boolean
bin http://linkedgeodata.org/bin boolean
admin_level http://linkedgeodata.org/adminLevel int
unisex http://linkedgeodata.org/unisex boolean
recycling:batteries http://linkedgeodata.org/recycling-batteries boolean
recycling:paper_packaging http://linkedgeodata.org/recycling-paperPackaging boolean
bridge http://linkedgeodata.org/bridge boolean
build http://linkedgeodata.org/build int
via http://linkedgeodata.org/via boolean
agricultural http://linkedgeodata.org/agricultural boolean
rail http://linkedgeodata.org/rail boolean
tactile_paving http://linkedgeodata.org/tactilePaving boolean
fuel:lpg http://linkedgeodata.org/fuel-lpg boolean
tram http://linkedgeodata.org/tram boolean
payment:geltkarte http://linkedgeodata.org/payment-geltkarte boolean
fuel:octane_100 http://linkedgeodata.org/fuel-octane100 boolean
waterway:lock:height http://linkedgeodata.org/waterway-lock-height int
maxspeed http://linkedgeodata.org/maxspeed int
payment:credit_cards http://linkedgeodata.org/payment-creditCards boolean
recycling:plastic http://linkedgeodata.org/recycling-plastic boolean
rcn http://linkedgeodata.org/rcn boolean
TMC:cid_58:tabcd_1:LCLversion http://linkedgeodata.org/TMC-cid58-tabcd1-lclversion float
board_type http://linkedgeodata.org/boardType boolean
embankment http://linkedgeodata.org/embankment boolean
diaper http://linkedgeodata.org/diaper boolean
maxheight http://linkedgeodata.org/maxheight float
maxlength http://linkedgeodata.org/maxlength int
monument http://linkedgeodata.org/monument boolean
openGeoDB:population http://linkedgeodata.org/openGeoDB-population int
sms http://linkedgeodata.org/sms boolean
population http://linkedgeodata.org/population int
ski http://linkedgeodata.org/ski boolean
elevator http://linkedgeodata.org/elevator boolean
recycling:clothes http://linkedgeodata.org/recycling-clothes boolean
on http://linkedgeodata.org/on boolean
shelter http://linkedgeodata.org/shelter boolean
recycling:metal http://linkedgeodata.org/recycling-metal boolean
layer http://linkedgeodata.org/layer int
TMC:cid_58:tabcd_1:PrevLocationCode http://linkedgeodata.org/TMC-cid58-tabcd1-prevlocationcode int
payment:telephone_cards http://linkedgeodata.org/payment-telephoneCards boolean
TMC:cid_58:tabcd_1:LocationCode http://linkedgeodata.org/TMC-cid58-tabcd1-locationcode int
produced http://linkedgeodata.org/produced int
area http://linkedgeodata.org/area boolean
game:patrizier2:getreide http://linkedgeodata.org/game-patrizier2-getreide boolean
seasonal http://linkedgeodata.org/seasonal boolean
recycling:garden_waste http://linkedgeodata.org/recycling-gardenWaste boolean
de:amtlicher_gemeindeschluessel http://linkedgeodata.org/de-amtlicherGemeindeschluessel int
openGeoDB:is_in_loc_id http://linkedgeodata.org/openGeoDB-isInLocId int
openGeoDB:telephone_area_code http://linkedgeodata.org/openGeoDB-telephoneAreaCode int
interner_access http://linkedgeodata.org/internerAccess boolean
bar http://linkedgeodata.org/bar boolean
openGeoDB:community_identification_number http://linkedgeodata.org/openGeoDB-communityIdentificationNumber int
departures_board http://linkedgeodata.org/departuresBoard boolean
capacity:disabled http://linkedgeodata.org/ontology/capacity-disabled int
capacity:women http://linkedgeodata.org/ontology/capacity-women int
capacity:parent http://linkedgeodata.org/ontology/capacity-parent int
capacity:charging http://linkedgeodata.org/ontology/capacity-charging int
capacity:hgv http://linkedgeodata.org/ontology/capacity-hgv int
capacity:bus http://linkedgeodata.org/ontology/capacity-bus int
capacity:car http://linkedgeodata.org/ontology/capacity-car int
website http://xmlns.com/foaf/0.1/homepage uri
image http://xmlns.com/foaf/0.1/depiction uri
owl:sameAs:1 http://www.w3.org/2002/07/owl#sameAs uri
\.
--
-- Data for Name: lgd_map_literal; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY lgd_map_literal (k, property, language) FROM stdin;
addr:postcode http://linkedgeodata.org/ontology/addr/postcode
opening_hours http://linkedgeodata.org/ontology/openingHours
operator http://linkedgeodata.org/ontology/operator
covered http://linkedgeodata.org/ontology/covered
access http://linkedgeodata.org/ontology/access
capacity http://linkedgeodata.org/ontology/rawCapacity
fee http://linkedgeodata.org/ontology/fee
bicycle_parking http://linkedgeodata.org/ontology/bicycleParking
cyclestreets_id http://linkedgeodata.org/ontology/cycleStreetIds
maxstay http://linkedgeodata.org/ontology/maxStay
surveillance http://linkedgeodata.org/ontology/surveillance
castleType http://linkedgeodata.org/ontology/castleType
postal_code http://linkedgeodata.org/ontology/postalCode
post_code http://linkedgeodata.org/ontology/postCode
name http://www.w3.org/2000/01/rdf-schema#label
name:en http://www.w3.org/2000/01/rdf-schema#label en
name:ja http://www.w3.org/2000/01/rdf-schema#label ja
name:fr http://www.w3.org/2000/01/rdf-schema#label fr
name:ko_rm http://www.w3.org/2000/01/rdf-schema#label ko_rm
name:ar http://www.w3.org/2000/01/rdf-schema#label ar
name:de http://www.w3.org/2000/01/rdf-schema#label de
name:ru http://www.w3.org/2000/01/rdf-schema#label ru
name:sv http://www.w3.org/2000/01/rdf-schema#label sv
name:botanical http://www.w3.org/2000/01/rdf-schema#label botanical
name:zh http://www.w3.org/2000/01/rdf-schema#label zh
name:fi http://www.w3.org/2000/01/rdf-schema#label fi
name:be http://www.w3.org/2000/01/rdf-schema#label be
name:ka http://www.w3.org/2000/01/rdf-schema#label ka
name:ko http://www.w3.org/2000/01/rdf-schema#label ko
name:he http://www.w3.org/2000/01/rdf-schema#label he
name:nl http://www.w3.org/2000/01/rdf-schema#label nl
name:ga http://www.w3.org/2000/01/rdf-schema#label ga
name:ja_rm http://www.w3.org/2000/01/rdf-schema#label ja_rm
name:el http://www.w3.org/2000/01/rdf-schema#label el
name:it http://www.w3.org/2000/01/rdf-schema#label it
name:es http://www.w3.org/2000/01/rdf-schema#label es
name:zh_pinyin http://www.w3.org/2000/01/rdf-schema#label zh_pinyin
name:th http://www.w3.org/2000/01/rdf-schema#label th
name:sr http://www.w3.org/2000/01/rdf-schema#label sr
name:cy http://www.w3.org/2000/01/rdf-schema#label cy
name:uk http://www.w3.org/2000/01/rdf-schema#label uk
name:ca http://www.w3.org/2000/01/rdf-schema#label ca
name:hu http://www.w3.org/2000/01/rdf-schema#label hu
name:hsb http://www.w3.org/2000/01/rdf-schema#label hsb
name:fa http://www.w3.org/2000/01/rdf-schema#label fa
name:eu http://www.w3.org/2000/01/rdf-schema#label eu
name:br http://www.w3.org/2000/01/rdf-schema#label br
name:pl http://www.w3.org/2000/01/rdf-schema#label pl
name:hy http://www.w3.org/2000/01/rdf-schema#label hy
name:kn http://www.w3.org/2000/01/rdf-schema#label kn
name:sl http://www.w3.org/2000/01/rdf-schema#label sl
name:ro http://www.w3.org/2000/01/rdf-schema#label ro
name:sq http://www.w3.org/2000/01/rdf-schema#label sq
name:am http://www.w3.org/2000/01/rdf-schema#label am
name:fy http://www.w3.org/2000/01/rdf-schema#label fy
name:cs http://www.w3.org/2000/01/rdf-schema#label cs
name:gd http://www.w3.org/2000/01/rdf-schema#label gd
name:sk http://www.w3.org/2000/01/rdf-schema#label sk
name:af http://www.w3.org/2000/01/rdf-schema#label af
name:lb http://www.w3.org/2000/01/rdf-schema#label lb
name:ja_kana http://www.w3.org/2000/01/rdf-schema#label ja_kana
name:pt http://www.w3.org/2000/01/rdf-schema#label pt
name:hr http://www.w3.org/2000/01/rdf-schema#label hr
name:vi http://www.w3.org/2000/01/rdf-schema#label vi
name:tr http://www.w3.org/2000/01/rdf-schema#label tr
name:fur http://www.w3.org/2000/01/rdf-schema#label fur
name:bg http://www.w3.org/2000/01/rdf-schema#label bg
name:eo http://www.w3.org/2000/01/rdf-schema#label eo
name:lt http://www.w3.org/2000/01/rdf-schema#label lt
name:la http://www.w3.org/2000/01/rdf-schema#label la
name:kk http://www.w3.org/2000/01/rdf-schema#label kk
name:gsw http://www.w3.org/2000/01/rdf-schema#label gsw
name:et http://www.w3.org/2000/01/rdf-schema#label et
name:mn http://www.w3.org/2000/01/rdf-schema#label mn
name:ku http://www.w3.org/2000/01/rdf-schema#label ku
name:mk http://www.w3.org/2000/01/rdf-schema#label mk
name:lv http://www.w3.org/2000/01/rdf-schema#label lv
name:carnaval http://www.w3.org/2000/01/rdf-schema#label carnaval
name:hi http://www.w3.org/2000/01/rdf-schema#label hi
name:no http://www.w3.org/2000/01/rdf-schema#label no
name:gl http://www.w3.org/2000/01/rdf-schema#label gl
name:cv http://www.w3.org/2000/01/rdf-schema#label cv
name:is http://www.w3.org/2000/01/rdf-schema#label is
name:gcf http://www.w3.org/2000/01/rdf-schema#label gcf
name:mdf http://www.w3.org/2000/01/rdf-schema#label mdf
name:myv http://www.w3.org/2000/01/rdf-schema#label myv
name:da http://www.w3.org/2000/01/rdf-schema#label da
name:ast http://www.w3.org/2000/01/rdf-schema#label ast
name:az http://www.w3.org/2000/01/rdf-schema#label az
name:gv http://www.w3.org/2000/01/rdf-schema#label gv
name:ba http://www.w3.org/2000/01/rdf-schema#label ba
name:scn http://www.w3.org/2000/01/rdf-schema#label scn
name:dsb http://www.w3.org/2000/01/rdf-schema#label dsb
name:ur http://www.w3.org/2000/01/rdf-schema#label ur
name:oc http://www.w3.org/2000/01/rdf-schema#label oc
name:tt http://www.w3.org/2000/01/rdf-schema#label tt
name:zh_py http://www.w3.org/2000/01/rdf-schema#label zh_py
name:tg http://www.w3.org/2000/01/rdf-schema#label tg
name:en1 http://www.w3.org/2004/02/skos/core#altLabel en
name:en2 http://www.w3.org/2004/02/skos/core#altLabel en
name:en3 http://www.w3.org/2004/02/skos/core#altLabel en
name:ar1 http://www.w3.org/2004/02/skos/core#altLabel ar
name:he1 http://www.w3.org/2004/02/skos/core#altLabel he
alt_name http://www.w3.org/2004/02/skos/core#altLabel
official_name http://linkedgeodata.org/ontology/officialName
int_name http://linkedgeodata.org/ontology/internationalName
nat_name http://linkedgeodata.org/ontology/nationalName
reg_name http://linkedgeodata.org/ontology/regionalName
loc_name http://linkedgeodata.org/ontology/localName
old_name http://linkedgeodata.org/ontology/historicalName
place_name http://www.w3.org/2000/01/rdf-schema#label
place_numbers http://linkedgeodata.org/ontology/placeNumbers
is_in http://linkedgeodata.org/ontology/isIn
note http://linkedgeodata.org/ontology/note
description http://www.w3.org/1999/02/22-rdf-syntax-ns#comment
phone http://xmlns.com/foaf/0.1/phone
fax http://xmlns.com/foaf/0.1/fax
created_by http://linkedgeodata.org/ontology/createdBy
attribution http://linkedgeodata.org/ontology/attribution
\.
--
-- Data for Name: lgd_map_resource_k; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY lgd_map_resource_k (k, property, object) FROM stdin;
highway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HighwayThing
barrier http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BarrierThing
cycleway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CyclewayThing
waterway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterwayThing
railway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RailwayThing
aeroway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/AerowayThing
aerialway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/AerialwayThing
public_transport http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PublicTransportThing
power http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PowerThing
man_made http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeThing
leisure http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Leisure
amenity http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Amenity
office http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Office
shop http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Shop
craft http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Craft
emergency http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/EmergencyThing
tourism http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TourismThing
historic http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HistoricThing
landuse http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Landuse
military http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MilitaryThing
natural http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/NaturalThing
route http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RouteThing
boundary http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Boundary
sport http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SportThing
abutters http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Abutters
place http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Place
lock http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LockThing
building http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Building
\.
--
-- Data for Name: lgd_map_resource_k; Type: TABLE DATA; Schema: public; Owner: postgres
--
-- Default mappings for a key that are only applied if it was not 'overridden' by an entry in resource kv with that key.
COPY lgd_map_resource_kd (k, property, object) FROM stdin;
fee http://linkedgeodata.org/ontology/hasFeature http://linkedgeodata.org/ontology/fee
capacity:disabled http://linkedgeodata.org/ontology/hasFeature http://linkedgeodata.org/ontology/capacity-disabled
capacity:women http://linkedgeodata.org/ontology/hasFeature http://linkedgeodata.org/ontology/capacity-women
capacity:parent http://linkedgeodata.org/ontology/hasFeature http://linkedgeodata.org/ontology/capacity-parent
capacity:charging http://linkedgeodata.org/ontology/hasFeature http://linkedgeodata.org/ontology/capacity-charging
capacity:charging http://linkedgeodata.org/ontology/hasFeature http://linkedgeodata.org/ontology/capacity-charging
capacity:hgv http://linkedgeodata.org/ontology/hasFeature http://linkedgeodata.org/ontology/capacity-hgv
capacity:bus http://linkedgeodata.org/ontology/hasFeature http://linkedgeodata.org/ontology/capacity-bus
capacity:car http://linkedgeodata.org/ontology/hasFeature http://linkedgeodata.org/ontology/capacity-car
\.
--
-- Data for Name: lgd_map_resource_kv; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY lgd_map_resource_kv (k, v, property, object) FROM stdin;
type route http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Route
type multipolygon http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MultiPolygon
highway motorway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Motorway
highway motorway_link http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MotorwayLink
highway trunk http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Trunk
highway trunk_link http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TrunkLink
highway primary http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PrimaryHighway
highway primary_link http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HighwayPrimaryLink
highway secundary http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SecundaryHighway
highway secundary_link http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HighwaySecundaryLink
highway tertiary http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TertiaryHighway
highway tertiary_link http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HighwayTertiaryLink
highway residential http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ResidentialHighway
highway unclassified http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/UnclassifiedHighway
highway road http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Road
highway living_street http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LivingStreet
highway service http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HighwayService
highway track http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Track
highway pedestrian http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PedestrianUse
highway raceway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Raceway
highway services http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ServiceStation
highway rest_area http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RestArea
highway bus_guideway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BusGuideway
highway path http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Path
highway cycleway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Cycleway
highway footway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Footway
highway bridleway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bridleway
highway byway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Byway
highway steps http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Steps
highway mini_roundabout http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MiniRoundabout
highway stop http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/StopSign
highway give_way http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/GiveWaySign
highway traffic_signals http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TrafficSignals
highway crossing http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HighwayCrossing
junction roundabout http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Roundabout
highway motorway_junction http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MotorwayJunction
highway ford http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HighwayFord
highway bus_stop http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BusStop
highway turning_circle http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TurningCircle
highway construction http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HighwayConstruction
highway proposed http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ProposedHighway
highway emergency_access_point http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/EmergencyAccessPoint
highway speed_camera http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SpeedCamera
highway street_lamp http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/StreetLamp
traffic_calming yes http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TrafficCalming
traffic_calming bump http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bump
traffic_calming chicane http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Chicane
traffic_calming cushion http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Cushion
traffic_calming hump http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Hump
traffic_calming rumble_strip http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RumbleStrip
traffic_calming table http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TableBump
traffic_calming choker http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Choker
service parking_aisle http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ParkingAisle
service driveway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/DriveWay
service alley http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Alley
highway passing_place http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PassingPlace
highway passing_places http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PassingPlaces
winter_road yes http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WinterRoad
ice_road yes http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/IceRoad
barrier ditch http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/DitchBarrier
barrier fence http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Fence
barrier hedge http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Hedge
barrier wall http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Wall
barrier city_wall http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CityWall
barrier retaining_wall http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RetainingWall
barrier block http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Block
barrier bollard http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bollard
barrier cattle_grid http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CattleGrid
barrier cycle_barrier http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CycleBarrier
barrier toll_booth http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TollBooth
barrier entrance http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Entrance
barrier border_control http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BorderControl
barrier gate http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Gate
barrier horse_stile http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HorseStile
barrier kissing_gate http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/KissingGate
barrier lift_gate http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LiftGate
barrier sally_port http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SallyPort
barrier stile http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Stile
barrier turnstile http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Turnstile
barrier kent_carriage_gap http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/KentCarriageGap
barrier chain http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Chain
cycleway lane http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CyclewayLane
cycleway track http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CyclewayTrack
cycleway opposite_lane http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CyclewayOppositeLane
cycleway opposite_track http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CyclewayOppositeTrack
cycleway opposite http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CyclewayOpposite
tracktype grade1 http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TrackType1
tracktype grade2 http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TrackType2
tracktype grade3 http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TrackType3
tracktype grade4 http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TrackType4
tracktype grade5 http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TrackType5
waterway stream http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Stream
waterway river http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/River
waterway riverbank http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Riverbank
waterway canal http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Canal
waterway ditch http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Ditch
waterway drain http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Drain
waterway dock http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Dock
waterway lock_gate http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LockGate
waterway turning_point http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TurningPoint
waterway boatyard http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Boatyard
waterway weir http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Weir
waterway dam http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Dam
lock yes http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Lock
tunnel culvert http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TunnelCulvert
intermittent yes http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Intermittent
waterway aqueduct http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Aqueduct
waterway waterfall http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Waterfall
waterway biwak http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Biwak
waterway depth http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Depth
waterway drawbridge http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterwayDrawbridge
waterway ford http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterwayFord
waterway fuel http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterwayFuel
waterway harbour http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Harbour
waterway lock http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterwayLock
waterway milestone http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterwayMilestone
waterway mineral_spring http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MineralSpring
waterway mooring http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Mooring
waterway pumping_station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterwayPumpingStation
waterway rapids http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Rapids
waterway rock http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterwayRock
waterway sluice http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Sluice
waterway spring http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterwaySpring
waterway water_point http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterPoint
waterway wreck http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterwayWreck
railway rail http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Rail
railway tram http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Tramway
railway light_rail http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LightRail
railway abandoned http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/AbandonedRailway
railway disused http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/DisusedRailway
railway subway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Subway
railway preserved http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PreservedRailway
railway narrow_gauge http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/NarrowGauge
railway miniature http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MiniatureRailway
railway construction http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RailwayConstruction
railway monorail http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Monorail
railway funicular http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/FunicularRailway
railway station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RailwayStation
railway halt http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RailwayHalt
railway tram_stop http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TramStop
railway crossing http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RailwayCrossing
railway level_crossing http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LevelCrossing
railway subway_entrance http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SubwayEntrance
railway turntable http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Turntable
railway buffer_stop http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BufferStop
landuse railway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RailwayLanduse
railway abandoned_station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/AbandonedStation
railway bridge http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bridge
railway disused_station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/DisusedStation
railway historic_station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HistoricStation
railway junction http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RailwayJunction
railway milestone http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RailwayMilestone
railway phone http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RailwayPhone
railway platform http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RailwayPlatform
railway signal http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Signal
railway station_entrance http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/StationEntrance
railway stop http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RailwayStop
railway switch http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RailwaySwitch
railway track_halt http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TrackHalt
railway tram_station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TramStation
railway ventilation_shaft http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/VentilationShaft
railway viaduct http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Viaduct
railway Viva Blue http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Viva+Blue
aeroway aerodrome http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Airport
aeroway terminal http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/AirportTerminal
aeroway helipad http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Helipad
aeroway runway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Runway
aeroway taxiway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/AirportTaxiway
aeroway apron http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Apron
aeroway gate http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/AirportGate
aeroway windsock http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Windsock
aeroway airfield http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/AirportField
aeroway heliport http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Heliport
aeroway holding_point http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HoldingPoint
aeroway landing_light http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LandingLight
aeroway parking_position http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ParkingPosition
aeroway reportingpoint http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Reportingpoint
aeroway tower http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/AirportTower
aerialway cable_car http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CableCar
aerialway gondola http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Gondola
aerialway chair_lift http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ChairLift
aerialway mixed_lift http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MixedLift
aerialway drag_lift http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/DragLift
aerialway station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/AerialwayStation
aerialway pylon http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Pylon
aerialway goods http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/AerialwayGoods
public_transport stop_position http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/StopPosition
public_transport platform http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Platform
public_transport station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Station
power tower http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PowerTower
power pole http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PowerPole
power line http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PowerLine
power minor_line http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PowerMinorLine
power station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PowerStation
power sub_station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PowerSubStation
power generator http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PowerGenerator
power cable_distribution_cabinet http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CableDistributionCabinet
power box http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PowerBox
power circuit_breaker http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CircuitBreaker
power construction http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PowerConstruction
power dismantled http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PowerDismantled
power house_connection_box http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HouseConnectionBox
power line_connection http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LineConnection
power pylon http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PowerPylon
power switch http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PowerSwitch
power transformer http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Transformer
man_made adit http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Adit
man_made beacon http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Beacon
man_made crane http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Crane
man_made cutline http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Cutline
man_made flagpole http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Flagpole
man_made groyne http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Groyne
man_made lighthouse http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Lighthouse
man_made mineshaft http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Mineshaft
man_made monitoring_station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MonitoringStation
man_made petroleum_well http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PetroleumWell
man_made pier http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Pier
man_made pipeline http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Pipeline
man_made reservoir_covered http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CoveredReservoir
man_made reservoir http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Reservoir
man_made surveillance http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Surveillance
man_made survey_point http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SurveyPoint
man_made tower http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Tower
man_made wastewater_plant http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WastewaterPlant
man_made watermill http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Watermill
man_made water_tower http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterTower
man_made water_works http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterWorks
man_made water_well http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterWell
man_made windmill http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Windmill
man_made works http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/IndustrialProductionBuilding
man_made antenna http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Antenna
man_made barn http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeBarn
man_made billboard http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeBillboard
man_made borderstone http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Borderstone
man_made bridge pier http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bridge+pier
man_made building http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeBuilding
man_made buoy http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeBuoy
man_made cairn http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Cairn
man_made chimney http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Chimney
man_made communications_tower http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CommunicationsTower
man_made communications_transponder http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CommunicationsTransponder
man_made cross http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeCross
man_made Downhill Terminal http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Downhill+Terminal
man_made environmental_hazard http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/EnvironmentalHazard
man_made fire_hydrant http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeFireHydrant
man_made fixme http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeFixme
man_made fountain http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeFountain
man_made gaging_station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/GagingStation
man_made gasometer http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Gasometer
man_made gate http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeGate
man_made gazometer http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Gazometer
man_made grouse_butt http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/GrouseButt
man_made hut http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeHut
man_made lamp http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeLamp
man_made lamp_post http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeLampPost
man_made landmark http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Landmark
man_made launch_pad http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LaunchPad
man_made lettering http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Lettering
man_made lookout_tower http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LookoutTower
man_made manhole http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Manhole
man_made mast http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Mast
man_made MDF http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MDF
man_made mine http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeMine
man_made observatory http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeObservatory
man_made oil_platform http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/OilPlatform
man_made oven http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Oven
man_made phone_mast http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PhoneMast
man_made pipelinemarker http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Pipelinemarker
man_made pipeline_marker http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PipelineMarker
man_made pole http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadePole
man_made pump http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Pump
man_made pumping_rig http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PumpingRig
man_made pumping_station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadePumpingStation
man_made pumpjack http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Pumpjack
man_made rig http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Rig
man_made service_area_interface http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ServiceAreaInterface
man_made serving_area_interface http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ServingAreaInterface
man_made sheepfold http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Sheepfold
man_made sign http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeSign
man_made silo http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Silo
man_made statue http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeStatue
man_made storage http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeStorage
man_made storage_tank http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/StorageTank
man_made summit_cross http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SummitCross
man_made tank http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeTank
man_made telephone_exchange http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TelephoneExchange
man_made telescope http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Telescope
man_made Uphill Terminal http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Uphill+Terminal
man_made videosurveillance http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Videosurveillance
man_made village_pump http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/VillagePump
man_made water_tank http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterTank
man_made well http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ManMadeWell
man_made well_water http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WellWater
man_made wildlife_hide http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WildlifeHide
man_made windpump http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Windpump
man_made wolf_pit http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WolfPit
leisure dog_park http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/DogPark
leisure sports_centre http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SportsCentre
leisure golf_course http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/GolfCourse
leisure stadium http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Stadium
leisure track http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Track
leisure pitch http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Pitch
leisure water_park http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterPark
leisure marina http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Marina
leisure slipway http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Slipway
leisure fishing http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Fishing
leisure nature_reserve http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/NatureReserve
leisure park http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Park
leisure playground http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Playground
leisure garden http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Garden
leisure common http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Common
leisure ice_rink http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/IceRink
leisure miniature_golf http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MiniatureGolf
leisure dance http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Dance
leisure swimming_pool http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SwimmingPool
leisure bandstand http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bandstand
leisure beach http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Beach
leisure beach_resort http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BeachResort
leisure bingo http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bingo
leisure bird_hide http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BirdHide
leisure casino http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Casino
leisure club http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Club
leisure fitness_centre http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/FitnessCentre
leisure fitness http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Fitness
leisure fitness trail http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Fitness+trail
leisure gym http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Gym
leisure hackerspace http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Hackerspace
leisure hole http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Hole
leisure horse_riding http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HorseRiding
leisure hot_spring http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HotSpring
leisure music_venue http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MusicVenue
leisure park_bench http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ParkBench
leisure point_of_interest http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PointOfInterest
leisure sailing_club http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SailingClub
leisure sauna http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Sauna
leisure skate_park http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SkatePark
leisure social_club http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SocialClub
leisure sport http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Sport
amenity planetarium http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Planetarium
amenity advertisement http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Advertisement
amenity advertising http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Advertising
amenity air_fill http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/AirFill
amenity airplane http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Airplane
amenity airport http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Airport
amenity alm http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Alm
amenity ambulance http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Ambulance
amenity ambulance_station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/AmbulanceStation
amenity animal_shelter http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/AnimalShelter
amenity restaurant http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Restaurant
amenity food_court http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/FoodCourt
amenity fast_food http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/FastFood
amenity drinking_water http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/DrinkingWater
amenity bbq http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bbq
amenity pub http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Pub
amenity bar http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bar
amenity cafe http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Cafe
amenity biergarten http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Biergarten
amenity ice_cream http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/IceCream
amenity kindergarten http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Kindergarten
amenity school http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/School
amenity college http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/College
amenity library http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Library
amenity university http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/University
amenity ferry_terminal http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/FerryTerminal
amenity bicycle_parking http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BicycleParking
amenity bicycle_rental http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BicycleRental
amenity bus_station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BusStation
amenity car_rental http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CarRental
amenity car_sharing http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CarSharing
amenity car_wash http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CarWash
amenity fuel http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/FuelStation
amenity grit_bin http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/GritBin
amenity parking http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Parking
amenity parking_space http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ParkingSpace
amenity parking_entrance http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ParkingEntrance
amenity taxi http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Taxi
amenity ev_charging http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/EvCharging
amenity atm http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Atm
amenity bank http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bank
amenity bureau_de_change http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BureauDeChange
amenity pharmacy http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Pharmacy
amenity hospital http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Hospital
amenity baby_hatch http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BabyHatch
amenity dentist http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Dentist
amenity doctors http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Doctors
amenity nursing_home http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/NursingHome
amenity social_facility http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SocialFacility
amenity veterinary http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Veterinary
amenity arts_centre http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ArtsCentre
amenity cinema http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Cinema
amenity community_centre http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CommunityCentre
amenity social_centre http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SocialCentre
amenity fountain http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Fountain
amenity nightclub http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Nightclub
amenity stripclub http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Stripclub
amenity studio http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Studio
amenity theatre http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Theatre
amenity bench http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bench
amenity brothel http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Brothel
amenity clock http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Clock
amenity courthouse http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Courthouse
amenity crematorium http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Crematorium
amenity embassy http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Embassy
amenity fire_station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/FireStation
amenity grave_yard http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/GraveYard
amenity hunting_stand http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HuntingStand
amenity marketplace http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Marketplace
amenity place_of_worship http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PlaceOfWorship
amenity police http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Police
amenity post_box http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PostBox
amenity post_office http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PostOffice
amenity prison http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Prison
amenity public_building http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PublicBuilding
amenity recycling http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RecyclingFacility
amenity sauna http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Sauna
amenity shelter http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Shelter
amenity telephone http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Telephone
amenity toilets http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Toilets
amenity townhall http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Townhall
amenity vending_maschine http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/VendingMaschine
amenity waste_basket http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WasteBasket
amenity waste_disposal http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WasteDisposal
amenity watering_place http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WateringPlace
amenity art_gallery http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ArtGallery
amenity artwork http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Artwork
amenity ATM http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ATM
amenity Baisschool http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Baisschool
amenity bakery http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bakery
amenity bandstand http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bandstand
amenity bank,atm http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bank%2Catm
amenity bank;atm http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bank%3Batm
amenity Bank http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bank
amenity barbeque http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Barbeque
amenity Barfusspfad http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Barfusspfad
amenity bicycle_lockers http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BicycleLockers
amenity billboard http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Billboard
amenity boat_rental http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BoatRental
amenity border_control http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BorderControl
amenity brewery http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Brewery
amenity Briefkasten http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Briefkasten
amenity bts http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Bts
amenity building_entrance http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BuildingEntrance
amenity building http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Building
amenity bus_stop http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/BusStop
amenity camera http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Camera
amenity campsite http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Campsite
amenity care_home http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CareHome
amenity car_repair http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CarRepair
amenity casino http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Casino
amenity cemetery http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Cemetery
amenity chapel http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Chapel
amenity charity http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Charity
amenity child_care http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ChildCare
amenity chiropractor http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Chiropractor
amenity church_hall http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ChurchHall
amenity church http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Church
amenity citymap_post http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CitymapPost
amenity clinic http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Clinic
amenity club_house http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ClubHouse
amenity club http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Club
amenity coffeeshop http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CoffeeShop
amenity commercial http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Commercial
amenity community_hall http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/CommunityHall
amenity company http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Company
amenity concert_hall http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ConcertHall
amenity conference_centre http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ConferenceCentre
amenity construction http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Construction
amenity consulate http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Consulate
amenity cross http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Cross
amenity customs http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Customs
amenity daycare http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Daycare
amenity dead_pub http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/DeadPub
amenity derestricted speed limit http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Derestricted+speed+limit
amenity disused_pub http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/DisusedPub
amenity dive_center http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/DiveCenter
amenity doctor http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Doctor
amenity dog_bin http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/DogBin
amenity dog_waste http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/DogWaste
amenity dormitory http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Dormitory
amenity driving_school http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/DrivingSchool
amenity elevator http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Elevator
amenity emergency_phone http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/EmergencyPhone
amenity emergency_telephone http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/EmergencyTelephone
amenity entrance http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Entrance
amenity factory http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Factory
amenity farm http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Farm
amenity fire_beater http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/FireBeater
amenity fire_hydrant http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/FireHydrant
amenity fireplace http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Fireplace
amenity first_aid http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/FirstAid
amenity florist http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Florist
amenity foot_shower http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/FootShower
amenity forester http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Forester
amenity fraternity http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Fraternity
amenity fuel;car_wash http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Fuel%3BcarWash
amenity funeral_home http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/FuneralHome
amenity gallery http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Gallery
amenity gambling http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Gambling
amenity garage http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Garage
amenity garbage http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Garbage
amenity goverment_building http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/GovermentBuilding
amenity grave http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Grave
amenity guidepost http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Guidepost
amenity gym http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Gym
amenity hairdresser http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Hairdresser
amenity hall http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Hall
amenity health_centre http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HealthCentre
amenity heuriger http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Heuriger
amenity hide http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Hide
amenity hospice http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Hospice
amenity hotel http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Hotel
amenity hunting_blind http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/HuntingBlind
amenity hut http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Hut
amenity hydrant http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Hydrant
amenity information http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Information
amenity insurance http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Insurance
amenity internet_access http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/InternetAccess
amenity internet_cafe http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/InternetCafe
amenity internet http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Internet
amenity job_centre http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/JobCentre
amenity kneipp_water_cure http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/KneippWaterCure
amenity lamp http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Lamp
amenity lamp_post http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LampPost
amenity language_school http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LanguageSchool
amenity lawyer http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Lawyer
amenity layby http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Layby
amenity leisure_centre http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Centre
amenity leisure http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Amenity
amenity licensed_club http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LicensedClub
amenity lifeboat_station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LifeboatStation
amenity life-buoy http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Life-buoy
amenity life_ring http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LifeRing
amenity litter_bin http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/LitterBin
amenity market http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Market
amenity massage http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Massage
amenity medical_centre http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MedicalCentre
amenity medical http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Medical
amenity milestone http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Milestone
amenity milk_dispenser http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MilkDispenser
amenity mine http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Mine
amenity monastery http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Monastery
amenity mortuary http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Mortuary
amenity motorcycle_parking http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MotorcycleParking
amenity mountain_rescue http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MountainRescue
amenity music_venue http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/MusicVenue
amenity natural_shelter http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/NaturalShelter
amenity nest_box http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/NestBox
amenity notice http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Notice
amenity nursery http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Nursery
amenity observatory http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Observatory
amenity office http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Office
amenity optometrist http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Optometrist
amenity other http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Other
amenity parcel_box http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ParcelBox
amenity park_bench http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ParkBench
amenity park http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Park
amenity parking;fuel http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Parking%3Bfuel
amenity parking_meter http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ParkingMeter
amenity parking;restaurant;fuel http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Parking%3Brestaurant%3Bfuel
amenity phone http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Phone
amenity physiotherapy http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Physiotherapy
amenity picknick http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Picknick
amenity picnic table http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Picnic+table
amenity picnic_table http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PicnicTable
amenity pietra miliare FD http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Pietra+miliare+FD
amenity playground http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Playground
amenity plumber http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Plumber
amenity preschool http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Preschool
amenity public_market http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/PublicMarket
amenity reception_area http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ReceptionArea
amenity red_cross http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RedCross
amenity register_office http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RegisterOffice
amenity relay_box http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RelayBox
amenity rescue_box http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RescueBox
amenity rescue http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Rescue
amenity rescue_service http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RescueService
amenity residential_home http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ResidentialHome
amenity residential http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Residential
amenity restaurant;pub http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Restaurant%3Bpub
amenity retail http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Retail
amenity retirement_home http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/RetirementHome
amenity salon http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Salon
amenity scout_hall http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ScoutHall
amenity scout_hut http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ScoutHut
amenity seat http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Seat
amenity seating,ornamental http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Seating%2Cornamental
amenity sento http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Sento
amenity service http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Service
amenity services http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Services
amenity sheltered_housing http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/ShelteredHousing
amenity shop http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Shop
amenity shopping http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Shopping
amenity shops http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Shops
amenity shower http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Shower
amenity showers http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Showers
amenity signpost http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Signpost
amenity ski_rental http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SkiRental
amenity ski_school http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SkiSchool
amenity snow_park http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SnowPark
amenity social_club http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SocialClub
amenity social_services http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SocialServices
amenity solarium http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Solarium
amenity spa http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Spa
amenity speed_enforcement http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SpeedEnforcement
amenity speed_trap http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SpeedTrap
amenity sport http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Sport
amenity sports_centre http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SportsCentre
amenity statue http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Statue
amenity storage http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Storage
amenity street_lamp http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/StreetLamp
amenity street_light http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/StreetLight
amenity supermarket http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Supermarket
amenity surgery http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Surgery
amenity survey http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Survey
amenity swimming_pool http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/SwimmingPool
amenity table http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Table
amenity take_away http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TakeAway
amenity tourist http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Tourist
amenity trade http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Trade
amenity traffic_light http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TrafficLight
amenity trash_bin http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TrashBin
amenity trash_can http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TrashCan
amenity tricycle_station http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/TricycleStation
amenity vdsl-aru http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Vdsl-aru
amenity vehicle_inspection http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/VehicleInspection
amenity vending http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Vending
amenity vending machine http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Vending+machine
amenity vending_machine http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/VendingMachine
amenity vet http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Vet
amenity vets http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Vets
amenity video_rental http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/VideoRental
amenity village_hall http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/VillageHall
amenity walking_bus http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WalkingBus
amenity waste_basket;recycling http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WasteBasket%3Brecycling
amenity waste_bin http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WasteBin
amenity waste_bucket http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WasteBucket
amenity waste_container http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WasteContainer
amenity waste http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/Waste
amenity water_fountain http://www.w3.org/1999/02/22-rdf-syntax-ns#type http://linkedgeodata.org/ontology/WaterFountain