-
Notifications
You must be signed in to change notification settings - Fork 3
/
mapping.yml
1418 lines (1386 loc) · 31.8 KB
/
mapping.yml
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
# Imposm Mapping file
# This file is a mix of original work and content from https://github.com/openmaptiles/openmaptiles/
# Please also read https://imposm.org/docs/imposm3/latest/mapping.html to understand this file format
name_field: &name
name: name
key: name
type: string
name_en_field: &name_en
name: name_en
key: name:en
type: string
name_de_field: &name_de
name: name_de
key: name:de
type: string
short_name_field: &short_name
key: short_name
name: short_name
type: string
tunnel_field: &tunnel
key: tunnel
name: is_tunnel
type: bool
bridge_field: &bridge
key: bridge
name: is_bridge
type: bool
ramp_field: &ramp
key: ramp
name: is_ramp
type: bool
ford_field: &ford
key: ford
name: is_ford
type: bool
oneway_field: &oneway
key: oneway
name: is_oneway
type: direction
area_field: &area
name: is_area
key: area
type: bool
service_field: &service
key: service
name: service
type: string
usage_field: &usage
key: usage
name: usage
type: string
public_transport_field: &public_transport
key: public_transport
name: public_transport
type: string
ref_field: &ref
key: ref
name: ref
type: string
network_field: &network
key: network
name: network
type: string
layer_field: &layer
key: layer
name: layer
type: integer
level_field: &level
key: level
name: level
type: integer
indoor_field: &indoor
key: indoor
name: indoor
type: bool
man_made_field: &man_made
key: man_made
name: man_made
type: string
z_order_field: &z_order
name: z_order
type: wayzorder
bicycle_field: &bicycle
key: bicycle
name: bicycle
type: string
foot_field: &foot
key: foot
name: foot
type: string
horse_field: &horse
key: horse
name: horse
type: string
mtb_scale_field: &mtb_scale
key: mtb:scale
name: mtb_scale
type: string
surface_field: &surface
key: surface
name: surface
type: string
# aerialway values , see http://taginfo.openstreetmap.org/keys/aerialway#values
def_poi_mapping_aerialway: &poi_mapping_aerialway
- station
# amenity values , see http://taginfo.openstreetmap.org/keys/amenity#values
def_poi_mapping_amenity: &poi_mapping_amenity
- arts_centre
- bank
- bar
- bbq
- bicycle_parking
- bicycle_rental
- biergarten
- bus_station
- cafe
- cinema
- community_centre
- courthouse
- drinking_water
- embassy
- fast_food
- ferry_terminal
- fire_station
- food_court
- fuel
- grave_yard
- ice_cream
- library
- marketplace
- motorcycle_parking
- nightclub
- nursing_home
- parking
- place_of_worship
- post_box
- post_office
- prison
- pub
- recycling
- restaurant
- shelter
- swimming_pool
- taxi
- telephone
- theatre
- toilets
- townhall
- waste_basket
# barrier values , see http://taginfo.openstreetmap.org/keys/barrier#values
def_poi_mapping_barrier: &poi_mapping_barrier
- bollard
- border_control
- cycle_barrier
- gate
- lift_gate
- sally_port
- stile
- toll_booth
# highway values , see http://taginfo.openstreetmap.org/keys/highway#values
def_poi_mapping_highway: &poi_mapping_highway
- bus_stop
# historic values , see http://taginfo.openstreetmap.org/keys/historic#values
def_poi_mapping_historic: &poi_mapping_historic
- monument
- castle
- ruins
# leisure values , see http://taginfo.openstreetmap.org/keys/leisure#values
def_poi_mapping_leisure: &poi_mapping_leisure
- dog_park
- escape_game
- garden
- golf_course
- ice_rink
- hackerspace
- marina
- miniature_golf
- sports_centre
- swimming_area
- swimming_pool
- water_park
# railway values , see http://taginfo.openstreetmap.org/keys/railway#values
def_poi_mapping_railway: &poi_mapping_railway
- halt
- station
- subway_entrance
- train_station_entrance
- tram_stop
# shop values , see http://taginfo.openstreetmap.org/keys/shop#values
def_poi_mapping_shop: &poi_mapping_shop
- accessories
- alcohol
- antiques
- art
- bag
- bakery
- beauty
- bed
- beverages
- bicycle
- books
- boutique
- butcher
- camera
- car
- car_repair
- car_parts
- carpet
- charity
- chocolate
- clothes
- coffee
- computer
- confectionery
- convenience
- copyshop
- cosmetics
- deli
- delicatessen
- department_store
- doityourself
- dry_cleaning
- electronics
- erotic
- fabric
- florist
- frozen_food
- furniture
- garden_centre
- general
- gift
- greengrocer
- hairdresser
- hardware
- hearing_aids
- hifi
- ice_cream
- interior_decoration
- jewelry
- kiosk
- lamps
- laundry
- mall
- massage
- mobile_phone
- motorcycle
- music
- musical_instrument
- newsagent
- outdoor
- perfume
- perfumery
- pet
- photo
- second_hand
- shoes
- sports
- stationery
- supermarket
- tailor
- tattoo
- ticket
- tobacco
- toys
- travel_agency
- video
- video_games
- watches
- weapons
- wholesale
- wine
def_aeroway_polygon_mapping: &aeroway_polygon_mapping
- aerodrome
- heliport
- runway
- helipad
- taxiway
- apron
- terminal
- hangar
# sport values , see http://taginfo.openstreetmap.org/keys/sport#values
def_poi_mapping_sport: &poi_mapping_sport
- american_football
- archery
- athletics
- australian_football
- badminton
- baseball
- basketball
- beachvolleyball
- billiards
- bmx
- boules
- bowls
- boxing
- canadian_football
- canoe
- chess
- climbing
- climbing_adventure
- cricket
- cricket_nets
- croquet
- curling
- cycling
- disc_golf
- diving
- dog_racing
- equestrian
- fatsal
- field_hockey
- free_flying
- gaelic_games
- golf
- gymnastics
- handball
- hockey
- horse_racing
- horseshoes
- ice_hockey
- ice_stock
- judo
- karting
- korfball
- long_jump
- model_aerodrome
- motocross
- motor
- multi
- netball
- orienteering
- paddle_tennis
- paintball
- paragliding
- pelota
- racquet
- rc_car
- rowing
- rugby
- rugby_league
- rugby_union
- running
- sailing
- scuba_diving
- shooting
- shooting_range
- skateboard
- skating
- skiing
- soccer
- surfing
- swimming
- table_soccer
- table_tennis
- team_handball
- tennis
- toboggan
- volleyball
- water_ski
- yoga
# tourism values , see http://taginfo.openstreetmap.org/keys/tourism#values
def_poi_mapping_tourism: &poi_mapping_tourism
- alpine_hut
- aquarium
- artwork
- attraction
- bed_and_breakfast
- camp_site
- caravan_site
- chalet
- gallery
- guest_house
- hostel
- hotel
- information
- motel
- museum
- picnic_site
- viewpoint
# waterway values , see http://taginfo.openstreetmap.org/keys/waterway#values
def_poi_mapping_waterway: &poi_mapping_waterway
- dock
def_poi_fields: &poi_fields
- name: osm_id
type: id
- name: geometry
type: geometry
- name: name
key: name
type: string
- name: name_en
key: name:en
type: string
- name: name_de
key: name:de
type: string
- name: tags
type: hstore_tags
- name: subclass
type: mapping_value
- name: mapping_key
type: mapping_key
- name: station
key: station
type: string
- name: funicular
key: funicular
type: string
- name: information
key: information
type: string
- name: uic_ref
key: uic_ref
type: string
- name: religion
key: religion
type: string
- name: level
key: level
type: integer
- name: indoor
key: indoor
type: bool
- name: layer
key: layer
type: integer
- name: sport
key: sport
type: string
def_poi_mapping: &poi_mapping
aerialway: *poi_mapping_aerialway
amenity: *poi_mapping_amenity
barrier: *poi_mapping_barrier
highway: *poi_mapping_highway
historic: *poi_mapping_historic
leisure: *poi_mapping_leisure
railway: *poi_mapping_railway
shop: *poi_mapping_shop
sport: *poi_mapping_sport
tourism: *poi_mapping_tourism
waterway: *poi_mapping_waterway
#
# Kartoza work
#
areas:
area_tags: [buildings]
area_tags: [power]
tables:
admin:
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
- key: name
name: name
type: string
- name: type
type: mapping_value
- key: admin_level
name: admin_level
type: integer
filters:
require:
admin_level: [__any__]
mapping:
boundary:
- administrative
type: polygon
# etldoc: imposm3 -> osm_border_disp_relation
border_disp_relation:
columns:
- name: relation_id
type: id
- name: osm_id
type: id
from_member: true
- name: geometry
type: geometry
- key: name
name: name
type: string
- key: boundary
name: boundary
type: string
- key: admin_level
name: admin_level
type: integer
- key: claimed_by
name: claimed_by
type: string
- key: disputed_by
name: disputed_by
type: string
- key: maritime
name: maritime
type: bool
from_member: true
filters:
require:
#admin_level: ['2']
admin_level: [__any__]
claimed_by: [__any__]
mapping:
type: [boundary]
type: relation_member
roads:
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
- key: name
name: name
type: string
- key: ref
name: ref
type: string
- name: class
type: mapping_key
- name: type
type: mapping_value
filters:
reject:
area: ["yes"]
mapping:
highway:
- motorway
- motorway_link
- trunk
- trunk_link
- primary
- primary_link
- secondary
- secondary_link
- tertiary
- tertiary_link
- road
- path
- track
- service
- footway
- bridleway
- cycleway
- steps
- pedestrian
- living_street
- unclassified
- residential
- raceway
man_made:
- pier
- groyne
type: linestring
railways:
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
- key: name
name: name
type: string
- key: ref
name: ref
type: string
- name: class
type: mapping_key
- name: type
type: mapping_value
filters:
reject:
area: ["yes"]
mapping:
railway:
- rail
- miniature
- tram
- light_rail
- subway
- narrow_gauge
- preserved
- funicular
- monorail
- disused
type: linestring
waterways_rivers:
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
- key: name
name: name
type: string
- name: waterway
type: mapping_value
- key: width
name: width
type: string
- key: intermittent
name: permanent
type: string
filters:
require:
name: [__any__]
mapping:
waterway:
- river
- riverbank
type: linestring
waterways_streams:
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
- key: name
name: name
type: string
- name: waterway
type: mapping_value
- key: width
name: width
type: string
- key: intermittent
name: permanent
type: string
mapping:
waterway:
- stream
type: linestring
waterways_manmade:
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
- key: name
name: name
type: string
- name: waterway
type: mapping_value
mapping:
waterway:
- canal
- ditch
- drain
type: linestring
waterways_points:
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
- key: name
name: name
type: string
- name: waterway
type: mapping_value
mapping:
waterway:
- waterfall
- rapids
type: point
places:
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
- key: name
name: name
type: string
- name: place
type: mapping_value
filters:
require:
name : [__any__]
mapping:
place:
- locality
- hamlet
- village
- suburb
- town
- city
- county
- region
- state
type: point
buildings:
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
- key: name
name: name
type: string
- name: type
type: mapping_value
filters:
reject:
building: ["no","none","No","yes"]
man_made: ["bridge"]
mapping:
building:
- __any__
amenity:
- school
- university
- government
- fire
- police
- public building
- worship
- mall
- kindergarten
- college
- market
religion:
- __any__
use:
- government
- residential
- education
- place_of_worship
- school
- commercial
- industrial
- utility
type: polygon
power_polygons:
columns:
- {name: osm_id, type: id}
- {name: the_geom, type: geometry}
- {key: use, name: use, type: string}
- {key: name, name: name, type: string}
- {key: power, name: power, type: string}
- {key: substation, name: substation, type: string}
# The different voltages of the substation, ordered from highest to
# lowest (ex: 400000;225000;63000). It is recommended to tag at least
# the highest voltage of the substation.
- {key: voltage, name: voltage, type: string}
- {key: cables, name: cables, type: integer}
- {key: poles, name: poles, type: integer}
- {key: rating, name: rating, type: integer}
- {key: operator, name: operator, type: integer}
mapping:
power: [generator, plant]
type: polygon
power_transmission_lines:
columns:
- {name: osm_id, type: id}
- {name: the_geom, type: geometry}
- {name: type,type: mapping_value}
- {key: substation, name: substation, type: string}
# The different voltages of the substation, ordered from highest to
# lowest (ex: 400000;225000;63000). It is recommended to tag at least
# the highest voltage of the substation.
- {key: voltage, name: voltage, type: string}
- {key: gas_insulated, name: gas_insulated, type: string}
- {key: ref, name: ref, type: string}
- {key: operator, name: operator, type: string}
- {key: location, name: location, type: string}
mapping:
type: [way]
power: [line, cable, minor_line]
type: linestring
substation_polygons:
columns:
- {name: osm_id, type: id}
- {name: the_geom, type: geometry}
- {key: name, name: name, type: string}
- {key: power, name: power, type: mapping_value}
- {key: substation, name: substation, type: string}
# The different voltages of the substation, ordered from highest to
# lowest (ex: 400000;225000;63000). It is recommended to tag at least
# the highest voltage of the substation.
- {key: voltage, name: voltage, type: string}
- {key: gas_insulated, name: gas_insulated, type: string}
- {key: ref, name: ref, type: string}
- {key: operator, name: operator, type: string}
- {key: location, name: location, type: string}
mapping:
power: [substation]
type: polygon
substation_points:
columns:
- {name: osm_id, type: id}
- {name: the_geom, type: geometry}
- {key: name, name: name, type: string}
- {key: power, name: power, type: mapping_value}
- {key: substation, name: substation, type: string}
# The different voltages of the substation, ordered from highest to
# lowest (ex: 400000;225000;63000). It is recommended to tag at least
# the highest voltage of the substation.
- {key: voltage, name: voltage, type: string}
- {key: gas_insulated, name: gas_insulated, type: string}
- {key: ref, name: ref, type: string}
- {key: operator, name: operator, type: string}
- {key: location, name: location, type: string}
mapping:
power: [substation]
type: point
switchgear:
columns:
- {name: osm_id, type: id}
- {name: the_geom, type: geometry}
- {key: power, name: power, type: mapping_value}
# The different voltages of the substation, ordered from highest to
# lowest (ex: 400000;225000;63000). It is recommended to tag at least
# the highest voltage of the substation.
- {key: voltage, name: voltage, type: string}
- {key: gas_insulated, name: gas_insulated, type: string}
- {key: location, name: location, type: string}
mapping:
power: [switchgear]
type: polygon
busbar:
columns:
- {name: osm_id, type: id}
- {name: the_geom, type: geometry}
- {key: power, name: power, type: mapping_value}
# The different voltages of the substation, ordered from highest to
# lowest (ex: 400000;225000;63000). It is recommended to tag at least
# the highest voltage of the substation.
- {key: voltage, name: voltage, type: string}
- {key: cables, name: cables, type: integer}
- {key: line, name: line, type: string}
mapping:
line: [busbar]
type: linestring
bay:
columns:
- {name: osm_id, type: id}
- {name: the_geom, type: geometry}
- {key: power, name: power, type: mapping_value}
# The different voltages of the substation, ordered from highest to
# lowest (ex: 400000;225000;63000). It is recommended to tag at least
# the highest voltage of the substation.
- {key: voltage, name: voltage, type: string}
- {key: cables, name: cables, type: integer}
- {key: line, name: line, type: string}
mapping:
line: [bay]
type: linestring
switch:
columns:
- {name: osm_id, type: id}
- {name: the_geom, type: geometry}
- {key: power, name: power, type: mapping_value}
# The different voltages of the substation, ordered from highest to
# lowest (ex: 400000;225000;63000). It is recommended to tag at least
# the highest voltage of the substation.
- {key: voltage, name: voltage, type: string}
- {key: cables, name: cables, type: integer}
- {key: gas_insulated, name: gas_insulated, type: string}
- {key: location, name: location, type: string}
- {key: switch, name: switch, type: string}
- {key: operator, name: operator, type: string}
- {key: ref, name: ref, type: string}
mapping:
power: [switch]
type: point
converter_points:
columns:
- {name: osm_id, type: id}
- {name: the_geom, type: geometry}
- {key: power, name: power, type: mapping_value}
# The different voltages of the substation, ordered from highest to
# lowest (ex: 400000;225000;63000). It is recommended to tag at least
# the highest voltage of the substation.
- {key: voltage, name: voltage, type: string}
- {key: converter, name: converter, type: string}
- {key: poles, name: poles, type: integer}
- {key: rating, name: rating, type: string}
- {key: location, name: location, type: string}
- {key: operator, name: operator, type: string}
- {key: phases, name: phases, type: string}
- {key: frequency, name: frequency, type: string}
- {key: name, name: name, type: string}
- {key: ref, name: ref, type: string}
mapping:
power: [converter]
type: point
converter_polygons:
columns:
- {name: osm_id, type: id}
- {name: the_geom, type: geometry}
- {key: power, name: power, type: mapping_value}
# The different voltages of the substation, ordered from highest to
# lowest (ex: 400000;225000;63000). It is recommended to tag at least
# the highest voltage of the substation.
- {key: voltage, name: voltage, type: string}
- {key: converter, name: converter, type: string}
- {key: poles, name: poles, type: integer}
- {key: rating, name: rating, type: string}
- {key: location, name: location, type: string}
- {key: operator, name: operator, type: string}
- {key: phases, name: phases, type: string}
- {key: frequency, name: frequency, type: string}
- {key: name, name: name, type: string}
- {key: ref, name: ref, type: string}
mapping:
power: [converter]
type: polygon
compensator_points:
columns:
- {name: osm_id, type: id}
- {name: the_geom, type: geometry}
- {key: power, name: power, type: mapping_value}
# The different voltages of the substation, ordered from highest to
# lowest (ex: 400000;225000;63000). It is recommended to tag at least
# the highest voltage of the substation.
- {key: voltage, name: voltage, type: string}
- {key: compensator, name: compensator, type: string}
- {key: rating, name: rating, type: string}
mapping:
power: [compensator]
type: point
transformer:
columns:
- {name: osm_id, type: id}
- {name: the_geom, type: geometry}
- {key: power, name: power, type: mapping_value}
# The different voltages of the substation, ordered from highest to
# lowest (ex: 400000;225000;63000). It is recommended to tag at least
# the highest voltage of the substation.
- {key: "voltage:primary", name: "voltage:primary", type: string}
- {key: "voltage:secondary", name: "voltage:secondary", type: string}
- {key: "phases:primary", name: "phases:primary", type: string}
- {key: "phases:secondary", name: "phases:secondary", type: string}
- {key: "rating:primary", name: "rating:primary", type: string}
- {key: "rating:secondary", name: "rating:secondary", type: string}
- {key: "windings:primary", name: "windings:primary", type: string}
- {key: "windings:secondary", name: "windings:secondary", type: string}
- {key: transformer, name: transformer, type: string}
- {key: location, name: location, type: string}
- {key: frequency, name: frequency, type: string}
mapping:
power: [transformer]
type: point
landuse:
columns:
- name: osm_id
type: id
- name: geometry
type: geometry
- key: name
name: name
type: string
- key: landuse
name: landuse
type: string
- key: barrier
name: barrier
type: string
- key: landcover
name: landcover
type: string
- name: landuse_type
type: mapping_value
filters:
reject:
landuse: ['yes', 'BIO TECHNOLOGY TREE PROJECT', 'unused', 'Toyota parcking', 'other', 'Other', 'meadow', 'forest', 'grass', 'basin', 'PRIVATE', 'natural_reserve', 'natural']
mapping:
landuse:
- __any__
leisure:
- stadium
- pitch
- playground
- track
tourism: