-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmapping.yaml
More file actions
1492 lines (1474 loc) · 34.3 KB
/
mapping.yaml
File metadata and controls
1492 lines (1474 loc) · 34.3 KB
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
---
use_single_id_space: true
areas:
area_tags:
- building
- landuse
- leisure
- waterway
# - natural
- aeroway
linear_tags:
- highway
- barrier
tags:
include:
- abandoned
- access
- bicycle
- covered
- denotation
- disused
- drinking_water
- ele
- fee
- generator:method
- generator:source
- hiking
- horse
- icao
- intermittent
- location
- operator
- plant:method
- plant:source
- protect_class
- protected
- ref
- refitted
- ruins
- seasonal
- shelter_type
- ski
- tower:type
- water_characteristic
- wetland
- safety_rope
- ladder
- rungs
- assisted_trail
include_regex:
- ^(disused|abandoned|ruins|demolished|removed|destroyed|was):(leisure|natural|amenity|highway)
generalized_tables:
waterareas_gen1:
source: waterareas
sql_filter: ST_Area(geometry)>50000.000000
tolerance: 50
waterareas_gen0:
source: waterareas_gen1
sql_filter: ST_Area(geometry)>500000.000000
tolerance: 200
roads_gen0:
source: roads
sql_filter:
type IN ('motorway', 'motorway_link', 'trunk', 'trunk_link', 'primary',
'primary_link', 'secondary', 'secondary_link', 'tertiary', 'tertiary_link')
OR class IN('railway')
tolerance: 200
roads_gen1:
source: roads
sql_filter:
type IN ('motorway', 'motorway_link', 'trunk', 'trunk_link', 'primary',
'primary_link', 'secondary', 'secondary_link', 'tertiary', 'tertiary_link')
OR class IN('railway')
tolerance: 50
waterways_gen0:
source: waterways_gen1
sql_filter: type='river' OR type='canal'
tolerance: 200
waterways_gen1:
source: waterways
sql_filter: type='river' OR type='canal'
tolerance: 50
landcovers_gen1:
source: landcovers
sql_filter: ST_Area(geometry)>50000.000000
tolerance: 50
landcovers_gen0:
source: landcovers_gen1
sql_filter: ST_Area(geometry)>500000.000000
tolerance: 200
route_members_gen0:
source: route_members_gen1
tolerance: 200
route_members_gen1:
source: route_members
tolerance: 50
admin_members_gen0:
source: admin_members_gen1
tolerance: 200
admin_members_gen1:
source: admin_members
tolerance: 50
tables:
admin_relations:
type: relation
relation_types: [boundary]
mapping:
boundary: [administrative]
filters:
require:
admin_level: ["2"]
columns:
- { name: osm_id, type: id }
- { name: admin_level, type: integer, key: admin_level }
- { name: iso3166_1, type: string, key: "ISO3166-1" }
admin_members:
type: relation_member
relation_types: [boundary]
mapping:
boundary: [administrative]
filters:
require:
admin_level: ["2"]
columns:
- { name: osm_id, type: id }
- { name: member, type: member_id }
- { name: geometry, type: geometry }
- { name: role, type: member_role, key: role }
- { name: type, type: member_type }
routes:
type: relation
relation_types:
- route
mapping:
route:
- hiking
- bicycle
- ski
- horse
- piste
- foot
- mtb
- running
columns:
- name: osm_id
type: id
- name: name
type: string
key: name
- name: ref
type: string
key: ref
- name: operator
type: string
key: operator
- name: colour
type: string
key: colour
- name: state
type: string
key: state
- name: osmc:symbol
type: string
key: osmc:symbol
- name: network
type: string
key: network
- name: type
type: mapping_value
route_members:
type: relation_member
relation_types:
- route
mapping:
route:
- hiking
- bicycle
- ski
- horse
- piste
- foot
- mtb
- running
columns:
- name: osm_id
type: id
- name: member
type: member_id
- name: geometry
type: geometry
- name: role
type: member_role
key: role
- name: type
type: member_type
landcovers:
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
- name: name
type: string
key: name
- name: type
type: mapping_value
- name: area
type: webmerc_area
- name: tags
type: hstore_tags
args:
include:
- protect_class
- ref
- wetland
type: polygon
mappings:
amenity:
mapping:
amenity:
- university
- school
- college
- library
- parking
- hospital
- grave_yard
boundary:
mapping:
boundary:
- forest
- forest_compartment
- hazard
- national_park
- protected_area
highway:
mapping:
highway:
- pedestrian
- footway
landuse:
mapping:
landuse:
- agriculture
- allotments
- animal_keeping
- aquaculture
- basin
- brownfield
- cemetery
- churchyard
- civic_admin
- commercial
- conservation
- construction
- depot
- education
- farm
- farmland
- farmyard
- flowerbed
- forest
- garages
- grass
- greenery
- greenfield
- greenhouse_horticulture
- harbour
- industrial
- institutional
- landfill
- logging
- meadow
- military
- orchard
- plant_nursery
- plantation
- quarry
- railway
- recreation_ground
- religious
- reservoir
- reservoir_watershed
- residential
- retail
- shrubs
- village_green
- vineyard
- winter_sports
leisure:
mapping:
leisure:
- dog_park
- garden
- golf_course
- nature_reserve
- park
- pitch
- playground
- sports_centre
- stadium
- track
man_made:
mapping:
man_made:
- clearcut
- bunker_silo
- silo
- storage_tank
- wastewater_plant
- bridge
natural:
mapping:
natural:
- bare_rock
- beach
- blockfield
- fell
- glacier
- grassland
- heath
- moor
- sand
- scree
- scrub
- shingle
- wetland
- wood
tourism:
mapping:
tourism:
- zoo
- theme_park
waterway:
mapping:
waterway:
- weir
- dam
buildings:
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
- name: name
type: string
key: name
- name: type
type: expression
args:
expression: |
"building" in tags && "abandoned" in tags && get(tags, "abandoned") == "yes" ? "abandoned:" + get(tags, "building") :
"building" in tags && "disused" in tags && get(tags, "disused") == "yes" ? "disused:" + get(tags, "building") :
"building" in tags && "ruins" in tags && get(tags, "ruins") == "yes" ? "ruins:" + get(tags, "building") :
"disused:building" in tags ? "disused:" + get(tags, "disused:building") :
"abandoned:building" in tags ? "abandoned:" + get(tags, "abandoned:building") :
"ruins:building" in tags ? "ruins:" + get(tags, "ruins:building") :
get(tags, "building")
type: polygon
filters:
reject:
building:
- "no"
disused:building:
- "no"
abandoned:building:
- "no"
ruins:building:
- "no"
mapping:
building:
- __any__
disused:building:
- __any__
abandoned:building:
- __any__
ruins:building:
- __any__
shops:
multi_values: [shop]
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
geometry_transform: point_on_surface
- name: name
type: string
key: name
- name: type
type: mapping_value
type: point_or_polygon
mapping:
shop:
- __any__
places:
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
- name: name
type: string
key: name
- name: type
type: mapping_value
- name: area
type: webmerc_area
- name: z_order
type: enumerate
args:
values:
- locality
- plot
- isolated_dwelling
- square
- farm
- city_block
- quarter
- neighbourhood
- allotments
- borough
- suburb
- hamlet
- village
- district
- municipality
- atoll
- islet
- province
- town
- city
- island
- county
- region
- sea
- state
- country
- name: population
type: integer
key: population
type: point_or_polygon
mapping:
place:
- __any__
waterways:
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
- name: name
type: string
key: name
- name: intermittent
type: bool
key: intermittent
- name: seasonal
type: bool
key: seasonal
- name: tunnel
type: bool
key: tunnel
- name: type
type: mapping_value
type: linestring
mapping:
waterway:
- canal
- canoe_pass
- ditch
- drain
- fairway
- fish_pass
- flowline
- link
- rapids
- ressurised
- river
- stream
- tidal_channel
feature_lines:
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
- name: name
type: string
key: name
- name: type
type: mapping_value
aliases:
ford:
__any__: ford
- name: tags
type: hstore_tags
args:
include:
- location
- name: fixme
type: string
key: fixme
filters:
reject:
ford:
- "no"
type: linestring
mapping:
aeroway:
- parking_position
- runway
- taxilane
- taxiway
aerialway:
- cable_car
- chair_lift
- drag_lift
- gondola
- goods
- j-bar
- magic_carpet
- mixed_lift
- platter
- rope_tow
- t-bar
- zip_line
barrier:
- city_wall
- ditch
- fence
- hedge
- retaining_wall
- wall
ford:
- __any__
man_made:
- cutline
- dyke
- embankment
- pipeline
millitary:
- trench
natural:
- bay # also in area/node
- cliff
- earth_bank
- gully
- ridge
- strait # also in area/node
- tree_row
- valley
power:
- line
- minor_line
waterway:
- dam
- weir
pois:
multi_values: [sport, amenity]
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
geometry_transform: point_on_surface
- name: name
type: string
key: name
- name: area
type: webmerc_area
- name: type
type: mapping_value
aliases:
aerialway:
station: aerialway_station
building:
ruins: building_ruins
__any__: building
ford:
__any__: ford
historic:
mine: historic_mine
bunker: historic_bunker
mountain_pass:
yes: mountain_pass
power:
tower: power_tower
leisure:
miniature_golf: leisure_miniature_golf
horse_riding: leisure_horse_riding
disused:man_made:
adit: disused_adit
mineshaft: disused_mineshaft
abandoned:man_made:
adit: abandoned_adit
mineshaft: abandoned_mineshaft
- name: tags
type: hstore_tags
args:
include:
- access
- covered
- denotation
- disused
- drinking_water
- ele
- fee
- hiking
- bicycle
- ski
- horse
- icao
- intermittent
- operator
- protected
- ref
- refitted
- seasonal
- shelter_type
- tower:type
- water_characteristic
type: point_or_polygon
filters:
reject:
building:
- "no"
ford:
- "no"
type_mappings:
points:
building:
- __any__
ford:
- __any__
mountain_pass:
- "yes"
any:
mappings:
disused:man_made:
mapping:
disused:man_made:
- adit
- mineshaft
abandoned:man_made:
mapping:
abandoned:man_made:
- adit
- mineshaft
aerialway:
mapping:
aerialway:
- pylon
- station
aeroway:
mapping:
aeroway:
- aerodrome
- helipad
amenity:
mapping:
amenity:
- animal_boarding
- animal_breeding
- animal_shelter
- animal_training
- archive
- arts_centre
- atm
- baby_hatch
- baking_oven
- bank
- bar
- bbq
- bench
- bicycle_parking
- bicycle_rental
- bicycle_repair_station
- bicycle_wash
- biergarten
- binoculars
- boat_rental
- boat_sharing
- boat_storage
- border_control
- brothel
- bts
- building_yard
- bureau_de_change
- bus_station
- cafe
- camping
- canteen
- car_pooling
- car_rental
- car_sharing
- car_wash
- carpet_washing
- casino
- chair
- charging_station
- checkpoint
- childcare
- cinema
- clinic
- clock
- clothes_dryer
- clubhouse
- college
- community_centre
- compressed_air
- concert_hall
- conference_centre
- courthouse
- coworking_space
- crematorium
- customs
- dancing_school
- dentist
- device_charging_station
- dive_centre
- doctors
- dog_toilet
- dojo
- dormitory
- dressing_room
- drinking_water
- driver_training
- driving_school
- events_venue
- exhibition_centre
- fast_food
- feeding_place
- ferry_terminal
- festival_grounds
- fire_station
- food_court
- food_sharing
- fountain
- fuel
- funeral_hall
- gambling
- game_feeding
- give_box
- grave_yard
- grit_bin
- harbourmaster
- hookah_lounge
- hospital
- hunting_stand
- hydrant
- ice_cream
- internet_cafe
- kick-scooter_parking
- kick-scooter_rental
- kindergarten
- kitchen
- kneipp_water_cure
- language_school
- lavoir
- letter_box
- library
- library_dropoff
- loading_dock
- locker
- lounge
- lounger
- luggage_locker
- marketplace
- mobile_library
- mobility_hub
- monastery
- money_transfer
- mortuary
- motorcycle_parking
- motorcycle_rental
- music_school
- music_venue
- nameplate
- nightclub
- nursing_home
- parcel_locker
- parking
- parking_entrance
- parking_space
- payment_centre
- payment_terminal
- pharmacy
- photo_booth
- piano
- place_of_mourning
- place_of_worship
- planetarium
- police
- polling_station
- post_box
- post_depot
- post_office
- power_supply
- prep_school
- prison
- pub
- public_bath
- public_bookcase
- public_building
- ranger_station
- reception_desk
- recycling
- refugee_site
- rescue_station
- research_institute
- restaurant
- sanatorium
- sanitary_dump_station
- school
- scooter_parking
- security_booth
- shelf
- shelter
- shower
- ski_rental
- ski_school
- smoking_area
- social_centre
- social_club
- social_facility
- spa
- stables
- stage
- stripclub
- student_accommodation
- studio
- surf_school
- swingerclub
- table
- taxi
- telephone
- theatre
- ticket_validator
- toilets
- townhall
- toy_library
- traffic_park
- training
- trolley_bay
- university
- vacuum_cleaner
- vehicle_inspection
- vehicle_ramp
- vending_machine
- veterinary
- veterinary_pharmacy
- warehouse
- washing_machine
- waste_basket
- waste_disposal
- waste_transfer_station
- water
- water_point
- watering_place
- weighbridge
- workshop
# only gate, lift_gate and swing_gate is renderred now
barrier:
mapping:
barrier:
- block
- bollard
- border_control
- bump_gate
- chain
- cycle_barrier
- debris
- entrance
- fence
- gate
- hampshire_gate
- height_restrictor
- jersey_barrier
- kissing_gate
- lift_gate
- log
- planter
- rope
- sally_port
- sliding_gate
- stile
- swing_gate
- toll_booth
- turnstile
- wall
- wicket_gate
boundary:
mapping:
boundary:
- marker
emergency:
mapping:
emergency:
- access_point
- ambulance_station
- defibrillator
- fire_extinguisher
- fire_hydrant
- first_aid_kit
- lifeguard
- life_ring
- mountain_rescue
- phone
- siren
- water_rescue
highway:
mapping:
highway:
- bus_stop
- rest_area
- street_lamp
historic:
mapping:
historic:
- archaeological_site
- boundary_stone
- bunker
- castle
- manor
- memorial
- mine
- mine_adit
- mine_shaft
- monastery
- monument
- ruins
- tomb
- tree_shrine
- wayside_cross
- wayside_shrine
information:
mapping:
# TODO filter only tourism=information
information:
- guidepost
- board
- map
- office
- route_marker
leisure:
mapping:
leisure:
- beach_resort
- bird_hide
- dog_park
- firepit
- golf_course
- horse_riding
- miniature_golf
- outdoor_seating
- picnic_table
- playground
- resort
- sauna
- water_park
man_made:
mapping:
man_made:
- adit
- apiary
- beehive
- chimney
- communications_tower
- cross
- forester's_lodge
- ice_house # TODO
- mineshaft
- pumping_station
- reservoir_covered
- silo
- spring_box
- tower
- mast
- wastewater_plant
- water_tower
- water_well
- water_works
military:
mapping:
military:
- bunker
natural:
mapping: