mirror of
https://github.com/openstreetmap/id-tagging-schema.git
synced 2025-10-28 13:23:52 +01:00
Merge remote-tracking branch 'upstream/main'
This commit is contained in:
commit
ada654df8a
392 changed files with 271817 additions and 23374 deletions
13
data/presets/@templates/README.md
Normal file
13
data/presets/@templates/README.md
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# About `@templates`
|
||||
|
||||
Presets in `@templates` are a convention for a _virtual_ presets that are only used from inside other presets.
|
||||
|
||||
The only property that really matter for these special presets are the `fields`.
|
||||
|
||||
All other properties can be copied from existing template presets and ignored. They are default values that are meant to match all cases where they might be referenced.
|
||||
|
||||
## How to use
|
||||
|
||||
Inside another preset, reference the template – or any other preset - like `"{@templates/internet_access}"` in `fields` or `moreFields`. This will "copy" all the listed fields from the file `data/presets/@templates/internet_access.json`.
|
||||
|
||||
You can only "copy" (template) `fields` to (preset) `fields` and (template) `moreFields` to (preset) `moreFields`.
|
||||
23
data/presets/@templates/crossing/bicycle_more.json
Normal file
23
data/presets/@templates/crossing/bicycle_more.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"moreFields": [
|
||||
"oneway",
|
||||
"access",
|
||||
"segregated"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"@template": "crossing/bicycle_more"
|
||||
},
|
||||
"searchable": false,
|
||||
"locationSet": {
|
||||
"include": [
|
||||
"999"
|
||||
],
|
||||
"exclude": [
|
||||
"999"
|
||||
]
|
||||
},
|
||||
"name": "{point}"
|
||||
}
|
||||
23
data/presets/@templates/crossing/defaults.json
Normal file
23
data/presets/@templates/crossing/defaults.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"fields": [
|
||||
"crossing/island",
|
||||
"crossing_raised"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"@template": "crossing/defaults"
|
||||
},
|
||||
"searchable": false,
|
||||
"locationSet": {
|
||||
"include": [
|
||||
"999"
|
||||
],
|
||||
"exclude": [
|
||||
"999"
|
||||
]
|
||||
},
|
||||
"name": "{point}"
|
||||
}
|
||||
22
data/presets/@templates/crossing/geometry_way_more.json
Normal file
22
data/presets/@templates/crossing/geometry_way_more.json
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"moreFields": [
|
||||
"smoothness",
|
||||
"lit"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"@template": "crossing/geometry_way_more"
|
||||
},
|
||||
"searchable": false,
|
||||
"locationSet": {
|
||||
"include": [
|
||||
"999"
|
||||
],
|
||||
"exclude": [
|
||||
"999"
|
||||
]
|
||||
},
|
||||
"name": "{point}"
|
||||
}
|
||||
|
|
@ -6,7 +6,8 @@
|
|||
"crossing/markings-PL"
|
||||
],
|
||||
"geometry": [
|
||||
"point"
|
||||
"point",
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"@template": "crossing/markings"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,8 @@
|
|||
"crossing/markings_yes-PL"
|
||||
],
|
||||
"geometry": [
|
||||
"point"
|
||||
"point",
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"@template": "crossing/markings_yes"
|
||||
|
|
|
|||
22
data/presets/@templates/crossing/surfacequality.json
Normal file
22
data/presets/@templates/crossing/surfacequality.json
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"fields": [
|
||||
"surface",
|
||||
"smoothness"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"@template": "crossing/surfacequality"
|
||||
},
|
||||
"searchable": false,
|
||||
"locationSet": {
|
||||
"include": [
|
||||
"999"
|
||||
],
|
||||
"exclude": [
|
||||
"999"
|
||||
]
|
||||
},
|
||||
"name": "{point}"
|
||||
}
|
||||
24
data/presets/@templates/crossing/traffic_signal.json
Normal file
24
data/presets/@templates/crossing/traffic_signal.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"fields": [
|
||||
"button_operated",
|
||||
"traffic_signals/sound",
|
||||
"traffic_signals/vibration"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"@template": "crossing/traffic_signal"
|
||||
},
|
||||
"searchable": false,
|
||||
"locationSet": {
|
||||
"include": [
|
||||
"999"
|
||||
],
|
||||
"exclude": [
|
||||
"999"
|
||||
]
|
||||
},
|
||||
"name": "{point}"
|
||||
}
|
||||
24
data/presets/@templates/crossing/traffic_signal_more.json
Normal file
24
data/presets/@templates/crossing/traffic_signal_more.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"moreFields": [
|
||||
"traffic_signals/arrow",
|
||||
"traffic_signals/countdown",
|
||||
"traffic_signals/minimap"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"@template": "crossing/traffic_signal_more"
|
||||
},
|
||||
"searchable": false,
|
||||
"locationSet": {
|
||||
"include": [
|
||||
"999"
|
||||
],
|
||||
"exclude": [
|
||||
"999"
|
||||
]
|
||||
},
|
||||
"name": "{point}"
|
||||
}
|
||||
|
|
@ -12,7 +12,8 @@
|
|||
"moreFields": [
|
||||
"{@templates/poi}",
|
||||
"address",
|
||||
"covered"
|
||||
"covered",
|
||||
"ref"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
|
|
|
|||
|
|
@ -21,5 +21,8 @@
|
|||
"tags": {
|
||||
"amenity": "boat_rental"
|
||||
},
|
||||
"terms": [
|
||||
"boat hire"
|
||||
],
|
||||
"name": "Boat Rental"
|
||||
}
|
||||
|
|
|
|||
30
data/presets/amenity/cafe/teahouse.json
Normal file
30
data/presets/amenity/cafe/teahouse.json
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"icon": "maki-cafe",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "cafe",
|
||||
"cuisine": "tea"
|
||||
},
|
||||
"reference": {
|
||||
"key": "amenity",
|
||||
"value": "cafe"
|
||||
},
|
||||
"terms": [
|
||||
"teahouse",
|
||||
"tea house",
|
||||
"tearoom",
|
||||
"tea room",
|
||||
"tea",
|
||||
"tea drink",
|
||||
"black tea",
|
||||
"green tea",
|
||||
"yellow tea",
|
||||
"white tea",
|
||||
"oolong tea",
|
||||
"hot drinks"
|
||||
],
|
||||
"name": "Teahouse"
|
||||
}
|
||||
|
|
@ -11,6 +11,7 @@
|
|||
"moreFields": [
|
||||
"bottle",
|
||||
"covered",
|
||||
"dog_check",
|
||||
"indoor",
|
||||
"level",
|
||||
"lit"
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@
|
|||
"outdoor_seating",
|
||||
"smoking",
|
||||
"takeaway",
|
||||
"toilets",
|
||||
"fhrs/id-GB",
|
||||
"website/menu"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-store",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
|
|
|
|||
|
|
@ -14,5 +14,8 @@
|
|||
"tags": {
|
||||
"amenity": "motorcycle_parking"
|
||||
},
|
||||
"terms": [
|
||||
"motorbike parking"
|
||||
],
|
||||
"name": "Motorcycle Parking"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -32,9 +32,12 @@
|
|||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"book sharing",
|
||||
"bookcrossing",
|
||||
"book exchange shelf",
|
||||
"book sharing",
|
||||
"book swap",
|
||||
"library",
|
||||
"little free library",
|
||||
"share a book",
|
||||
"sharing books"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@
|
|||
},
|
||||
"reference": {
|
||||
"key": "recycling_type",
|
||||
"value": "*"
|
||||
"value": "centre"
|
||||
},
|
||||
"name": "Recycling Center"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,8 +34,8 @@
|
|||
"recycling_type": "container"
|
||||
},
|
||||
"reference": {
|
||||
"key": "amenity",
|
||||
"value": "recycling"
|
||||
"key": "recycling_type",
|
||||
"value": "container"
|
||||
},
|
||||
"aliases": [
|
||||
"Recycling Container"
|
||||
|
|
|
|||
|
|
@ -24,6 +24,8 @@
|
|||
},
|
||||
"terms": [
|
||||
"community",
|
||||
"group home",
|
||||
"halfway house",
|
||||
"nonprofit",
|
||||
"social services"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -27,7 +27,12 @@
|
|||
"amenity": "telephone"
|
||||
},
|
||||
"terms": [
|
||||
"phone"
|
||||
"payphone",
|
||||
"pay phone",
|
||||
"phone booth",
|
||||
"phone",
|
||||
"public phone",
|
||||
"public telephone"
|
||||
],
|
||||
"name": "Telephone"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,5 +20,5 @@
|
|||
"amenity": "theatre",
|
||||
"theatre:type": "amphi"
|
||||
},
|
||||
"name": "Amphitheatre"
|
||||
"name": "Amphitheater"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"icon": "temaki-vending_machine",
|
||||
"icon": "temaki-vending_tickets",
|
||||
"fields": [
|
||||
"ref",
|
||||
"operator"
|
||||
|
|
|
|||
|
|
@ -30,6 +30,8 @@
|
|||
"privy",
|
||||
"head",
|
||||
"latrine",
|
||||
"public toilet",
|
||||
"public restroom",
|
||||
"WC",
|
||||
"W.C."
|
||||
],
|
||||
|
|
|
|||
34
data/presets/amenity/veterinary_pharmacy.json
Normal file
34
data/presets/amenity/veterinary_pharmacy.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"icon": "temaki-veterinary_care",
|
||||
"fields": [
|
||||
"{amenity/pharmacy}"
|
||||
],
|
||||
"moreFields": [
|
||||
"{amenity/pharmacy}"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"animal medication",
|
||||
"animal pharmacy",
|
||||
"pet clinic",
|
||||
"pet doctor",
|
||||
"pet meds",
|
||||
"pet pharmacy",
|
||||
"pet prescriptions",
|
||||
"veterinarian",
|
||||
"veterinary compounding",
|
||||
"veterinary pharmacy",
|
||||
"veterinary supplies",
|
||||
"vet pharmacy"
|
||||
],
|
||||
"aliases": [
|
||||
"Animal Pharmacy"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "veterinary_pharmacy"
|
||||
},
|
||||
"name": "Veterinary Pharmacy"
|
||||
}
|
||||
|
|
@ -1,7 +1,17 @@
|
|||
{
|
||||
"icon": "temaki-cycle_barrier",
|
||||
"fields": [
|
||||
"access"
|
||||
"access",
|
||||
"wheelchair",
|
||||
"cycle_barrier",
|
||||
"maxwidth/physical",
|
||||
"opening",
|
||||
"spacing",
|
||||
"overlap",
|
||||
"deflection"
|
||||
],
|
||||
"moreFields": [
|
||||
"cycle_barrier/installation"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
|
|
@ -10,6 +20,9 @@
|
|||
"barrier": "cycle_barrier"
|
||||
},
|
||||
"terms": [
|
||||
"chicane",
|
||||
"bike chicane",
|
||||
"bike barrier",
|
||||
"bicycle barrier",
|
||||
"bicycling barrier",
|
||||
"bike gates",
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
"height barrier",
|
||||
"height restriction barrier",
|
||||
"maxheight",
|
||||
"max height",
|
||||
"maximum height measurer"
|
||||
],
|
||||
"name": "Height Restrictor"
|
||||
|
|
|
|||
|
|
@ -12,5 +12,8 @@
|
|||
"tags": {
|
||||
"barrier": "motorcycle_barrier"
|
||||
},
|
||||
"terms": [
|
||||
"motorbike barrier"
|
||||
],
|
||||
"name": "Motorcycle Barrier"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@
|
|||
"not/name",
|
||||
"operator",
|
||||
"roof/colour",
|
||||
"roof/shape",
|
||||
"roof/height",
|
||||
"smoking",
|
||||
"wheelchair"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -1,8 +1,25 @@
|
|||
{
|
||||
"icon": "maki-shelter",
|
||||
"fields": [
|
||||
"{building}",
|
||||
"layer"
|
||||
"building",
|
||||
"height",
|
||||
"layer_1"
|
||||
],
|
||||
"moreFields": [
|
||||
"address",
|
||||
"architect",
|
||||
"building/colour",
|
||||
"building/levels",
|
||||
"building/levels/underground",
|
||||
"building/material",
|
||||
"building/prefabricated",
|
||||
"ele",
|
||||
"gnis/feature_id-US",
|
||||
"not/name",
|
||||
"operator",
|
||||
"roof/colour",
|
||||
"roof/shape",
|
||||
"roof/height"
|
||||
],
|
||||
"geometry": [
|
||||
"area"
|
||||
|
|
@ -10,10 +27,6 @@
|
|||
"tags": {
|
||||
"building": "roof"
|
||||
},
|
||||
"addTags": {
|
||||
"building": "roof",
|
||||
"layer": "1"
|
||||
},
|
||||
"matchScore": 0.5,
|
||||
"name": "Roof"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,9 @@
|
|||
"height",
|
||||
"building/material",
|
||||
"building/colour",
|
||||
"roof/colour"
|
||||
"roof/colour",
|
||||
"roof/height",
|
||||
"roof/shape"
|
||||
],
|
||||
"moreFields": [
|
||||
"layer"
|
||||
|
|
|
|||
39
data/presets/climbing/route_bottom.json
Normal file
39
data/presets/climbing/route_bottom.json
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"icon": "temaki-abseiling",
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex"
|
||||
],
|
||||
"fields": [
|
||||
"name",
|
||||
"climbing/sport",
|
||||
"climbing/trad",
|
||||
"climbing/bolts"
|
||||
],
|
||||
"moreFields": [
|
||||
"climbing/grade/uiaa",
|
||||
"climbing/grade/french",
|
||||
"climbing/grade/saxon",
|
||||
"climbing/grade/yds_class",
|
||||
"website",
|
||||
"climbing/length",
|
||||
"description"
|
||||
],
|
||||
"terms": [
|
||||
"rock climbing route",
|
||||
"sport climbing",
|
||||
"route bottom",
|
||||
"climbing point",
|
||||
"route start",
|
||||
"climbing area",
|
||||
"climbing crag"
|
||||
],
|
||||
"tags": {
|
||||
"climbing": "route_bottom"
|
||||
},
|
||||
"addTags": {
|
||||
"sport": "climbing",
|
||||
"climbing": "route_bottom"
|
||||
},
|
||||
"name": "Climbing Route Start"
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"icon": "temaki-tools",
|
||||
"icon": "fas-couch",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
|
|
|||
|
|
@ -4,13 +4,13 @@
|
|||
"ref",
|
||||
"fire_hydrant/type",
|
||||
"colour",
|
||||
"fire_hydrant/position",
|
||||
"water_source",
|
||||
"couplings"
|
||||
],
|
||||
"moreFields": [
|
||||
"fire_hydrant/diameter",
|
||||
"fire_hydrant/pressure",
|
||||
"fire_hydrant/position",
|
||||
"level",
|
||||
"survey/date"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
"vertex"
|
||||
],
|
||||
"terms": [
|
||||
"lifering",
|
||||
"life buoy",
|
||||
"kisby ring",
|
||||
"kisbie ring",
|
||||
|
|
|
|||
|
|
@ -17,5 +17,10 @@
|
|||
"tags": {
|
||||
"emergency": "phone"
|
||||
},
|
||||
"terms": [
|
||||
"sos",
|
||||
"help",
|
||||
"call point"
|
||||
],
|
||||
"name": "Emergency Phone"
|
||||
}
|
||||
|
|
|
|||
13
data/presets/entrance/shop.json
Normal file
13
data/presets/entrance/shop.json
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"icon": "maki-entrance-alt1",
|
||||
"geometry": [
|
||||
"vertex"
|
||||
],
|
||||
"tags": {
|
||||
"entrance": "shop"
|
||||
},
|
||||
"terms": [
|
||||
"door"
|
||||
],
|
||||
"name": "Shop Entrance"
|
||||
}
|
||||
|
|
@ -1,15 +1,13 @@
|
|||
{
|
||||
"fields": [
|
||||
"crossing",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"{@templates/crossing/markings}",
|
||||
"crossing_raised"
|
||||
"{@templates/crossing/defaults}",
|
||||
"tactile_paving"
|
||||
],
|
||||
"moreFields": [
|
||||
"flashing_lights",
|
||||
"kerb",
|
||||
"oneway"
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
|
|
|
|||
25
data/presets/highway/crossing/README.md
Normal file
25
data/presets/highway/crossing/README.md
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# About the crossing presets
|
||||
|
||||
## General
|
||||
|
||||
These presets use fields `@templates` to make sure all have a similar structure.
|
||||
Some presets like `traffic_signals` have additional fields and use a different field order.
|
||||
Try to keep the file structure very similar so they can be easily compared.
|
||||
|
||||
## nodes `highway=crossing + crossing=*`
|
||||
|
||||
Crossing nodes are handled by `highway/crossing.json` and `highway/crossing/*.json` (as geometry type `vertex`).
|
||||
|
||||
Crossing nodes and crossing ways have a big overlap.
|
||||
However, there are a few tags that should _only_ be expected on the crossing node. When crossing ways are present, this also means there are separate ways attached with additional nodes that may hold these additional tags.
|
||||
|
||||
There are places in OSM that follow a different tagging style where only crossing ways are used (without the vertex nodes). Those regions might use other conventions on where to place each tag.
|
||||
|
||||
## ways `highway=footway|cycleway|path + *=crossing + crossing=*`
|
||||
|
||||
Crossing way presets are duplicated per highway class:
|
||||
- `/highway/footway/crossing.json` + `/highway/footway/crossing/*.json`
|
||||
- `/highway/cycleway/crossing.json` + `/highway/cycleway/crossing/*.json`
|
||||
- `/highway/path/crossing.json` + `/highway/path/crossing/*.json`
|
||||
|
||||
The crossing presets for `/cycleway*` and `/path*` are considered to be relevant for bike traffic and have additional fields that target bike vs. foot traffic.
|
||||
23
data/presets/highway/crossing/_informal.json
Normal file
23
data/presets/highway/crossing/_informal.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"icon": "temaki-pedestrian",
|
||||
"fields": [
|
||||
"crossing"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
],
|
||||
"tags": {
|
||||
"crossing": "informal"
|
||||
},
|
||||
"terms": [
|
||||
"informal crosswalk",
|
||||
"informal foot path crossing",
|
||||
"informal pedestrian crossing"
|
||||
],
|
||||
"reference": {
|
||||
"key": "crossing",
|
||||
"value": "informal"
|
||||
},
|
||||
"name": "Informal Crossing",
|
||||
"searchable": false
|
||||
}
|
||||
|
|
@ -2,10 +2,13 @@
|
|||
"icon": "temaki-pedestrian_crosswalk",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"{@templates/crossing/markings}",
|
||||
"crossing_raised"
|
||||
"{@templates/crossing/defaults}",
|
||||
"tactile_paving"
|
||||
],
|
||||
"moreFields": [
|
||||
"kerb",
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
|
|
@ -23,11 +26,6 @@
|
|||
"key": "crossing",
|
||||
"value": "marked"
|
||||
},
|
||||
"terms": [
|
||||
"zebra crossing",
|
||||
"marked crossing",
|
||||
"crosswalk"
|
||||
],
|
||||
"name": "{highway/crossing/uncontrolled}",
|
||||
"searchable": false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,10 +2,13 @@
|
|||
"icon": "temaki-pedestrian_crosswalk",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"{@templates/crossing/markings}",
|
||||
"crossing_raised"
|
||||
"{@templates/crossing/defaults}",
|
||||
"tactile_paving"
|
||||
],
|
||||
"moreFields": [
|
||||
"kerb",
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
|
|
|
|||
|
|
@ -2,19 +2,15 @@
|
|||
"icon": "temaki-railway_signals",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"{@templates/crossing/traffic_signal}",
|
||||
"{@templates/crossing/markings}",
|
||||
"crossing_raised",
|
||||
"button_operated",
|
||||
"traffic_signals/sound",
|
||||
"traffic_signals/vibration"
|
||||
"{@templates/crossing/defaults}",
|
||||
"tactile_paving"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/traffic_signal_more}",
|
||||
"kerb",
|
||||
"traffic_signals/arrow",
|
||||
"traffic_signals/countdown",
|
||||
"traffic_signals/minimap"
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
|
|
|
|||
|
|
@ -2,10 +2,13 @@
|
|||
"icon": "temaki-pedestrian_crosswalk",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"{@templates/crossing/markings_yes}",
|
||||
"crossing_raised"
|
||||
"{@templates/crossing/defaults}",
|
||||
"tactile_paving"
|
||||
],
|
||||
"moreFields": [
|
||||
"kerb",
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
|
|
|
|||
|
|
@ -2,9 +2,12 @@
|
|||
"icon": "temaki-pedestrian",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"crossing_raised"
|
||||
"{@templates/crossing/defaults}",
|
||||
"tactile_paving"
|
||||
],
|
||||
"moreFields": [
|
||||
"kerb",
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
|
|
|
|||
|
|
@ -2,11 +2,13 @@
|
|||
"icon": "temaki-cyclist_crosswalk",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"surface",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"{@templates/crossing/markings}",
|
||||
"access"
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"{@templates/crossing/bicycle_more}"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
|
|
|
|||
|
|
@ -2,12 +2,13 @@
|
|||
"icon": "temaki-cyclist_crosswalk",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"surface",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"{@templates/crossing/markings}",
|
||||
"crossing_raised",
|
||||
"access"
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"{@templates/crossing/bicycle_more}"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
"fr",
|
||||
"lt",
|
||||
"pl",
|
||||
"de",
|
||||
"il",
|
||||
"ps"
|
||||
]
|
||||
|
|
@ -11,13 +12,13 @@
|
|||
"icon": "temaki-ped_cyclist_crosswalk",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"surface",
|
||||
"smoothness",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"{@templates/crossing/markings}",
|
||||
"crossing_raised",
|
||||
"access"
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"{@templates/crossing/bicycle_more}"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
|
|
|
|||
|
|
@ -1,19 +1,16 @@
|
|||
{
|
||||
"icon": "fas-biking",
|
||||
"fields": [
|
||||
"oneway",
|
||||
"crossing",
|
||||
"surface",
|
||||
"crossing/island",
|
||||
"{@templates/crossing/traffic_signal}",
|
||||
"{@templates/crossing/markings}",
|
||||
"crossing_raised",
|
||||
"button_operated",
|
||||
"traffic_signals/sound",
|
||||
"traffic_signals/vibration",
|
||||
"access"
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"tactile_paving"
|
||||
"{@templates/crossing/traffic_signal_more}",
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"{@templates/crossing/bicycle_more}"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
{
|
||||
"icon": "temaki-cyclist_crosswalk",
|
||||
"fields": [
|
||||
"oneway",
|
||||
"crossing",
|
||||
"surface",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"{@templates/crossing/defaults}",
|
||||
"{@templates/crossing/markings_yes}",
|
||||
"crossing_raised",
|
||||
"access"
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"{@templates/crossing/bicycle_more}"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
|
|
|
|||
|
|
@ -2,11 +2,12 @@
|
|||
"icon": "fas-biking",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"surface",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"crossing_raised",
|
||||
"access"
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"{@templates/crossing/bicycle_more}"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
|
|
|
|||
23
data/presets/highway/cycleway/traffic_island.json
Normal file
23
data/presets/highway/cycleway/traffic_island.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"icon": "fas-biking",
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "cycleway",
|
||||
"cycleway": "traffic_island"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cycleway",
|
||||
"value": "traffic_island"
|
||||
},
|
||||
"terms": [
|
||||
"crossing island"
|
||||
],
|
||||
"aliases": [
|
||||
"Crosswalk Island",
|
||||
"Traffic Island",
|
||||
"Pedestrian Island"
|
||||
],
|
||||
"name": "Cycle Refuge Island"
|
||||
}
|
||||
35
data/presets/highway/cycleway/traffic_island_shared.json
Normal file
35
data/presets/highway/cycleway/traffic_island_shared.json
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"locationSet": {
|
||||
"exclude": [
|
||||
"fr",
|
||||
"lt",
|
||||
"pl",
|
||||
"de",
|
||||
"il",
|
||||
"ps"
|
||||
]
|
||||
},
|
||||
"icon": "temaki-pedestrian_and_cyclist",
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "cycleway",
|
||||
"cycleway": "traffic_island",
|
||||
"foot": "designated",
|
||||
"bicycle": "designated"
|
||||
},
|
||||
"reference": {
|
||||
"key": "cycleway",
|
||||
"value": "traffic_island"
|
||||
},
|
||||
"terms": [
|
||||
"crossing island"
|
||||
],
|
||||
"aliases": [
|
||||
"Crosswalk Island",
|
||||
"Traffic Island",
|
||||
"Pedestrian Island"
|
||||
],
|
||||
"name": "Cycle & Foot Refuge Island"
|
||||
}
|
||||
|
|
@ -1,14 +1,12 @@
|
|||
{
|
||||
"fields": [
|
||||
"crossing",
|
||||
"surface",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"{@templates/crossing/markings}",
|
||||
"crossing_raised",
|
||||
"access"
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
|
|
|
|||
24
data/presets/highway/footway/crossing/_informal.json
Normal file
24
data/presets/highway/footway/crossing/_informal.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"icon": "temaki-pedestrian",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "footway",
|
||||
"footway": "crossing",
|
||||
"crossing": "informal"
|
||||
},
|
||||
"reference": {
|
||||
"key": "crossing",
|
||||
"value": "informal"
|
||||
},
|
||||
"name": "{highway/crossing/informal}",
|
||||
"searchable": false
|
||||
}
|
||||
|
|
@ -2,14 +2,12 @@
|
|||
"icon": "temaki-pedestrian_crosswalk",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"surface",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"{@templates/crossing/markings}",
|
||||
"crossing_raised",
|
||||
"access"
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
|
|
|
|||
|
|
@ -2,12 +2,13 @@
|
|||
"icon": "temaki-pedestrian_crosswalk",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"surface",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"{@templates/crossing/markings}",
|
||||
"crossing_raised",
|
||||
"access"
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
|
|
|
|||
|
|
@ -2,20 +2,15 @@
|
|||
"icon": "temaki-railway_signals",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"surface",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"{@templates/crossing/traffic_signal}",
|
||||
"{@templates/crossing/markings}",
|
||||
"crossing_raised",
|
||||
"button_operated",
|
||||
"traffic_signals/sound",
|
||||
"traffic_signals/vibration",
|
||||
"access"
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"traffic_signals/arrow",
|
||||
"traffic_signals/countdown",
|
||||
"traffic_signals/minimap"
|
||||
"{@templates/crossing/traffic_signal_more}",
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
|
|
|
|||
|
|
@ -2,14 +2,12 @@
|
|||
"icon": "temaki-pedestrian",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"surface",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"{@templates/crossing/markings_yes}",
|
||||
"crossing_raised",
|
||||
"access"
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
|
|
|
|||
|
|
@ -2,13 +2,11 @@
|
|||
"icon": "temaki-pedestrian",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"surface",
|
||||
"tactile_paving",
|
||||
"crossing/island",
|
||||
"crossing_raised",
|
||||
"access"
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
|
|
|
|||
|
|
@ -4,9 +4,6 @@
|
|||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"footway": "traffic_island"
|
||||
},
|
||||
"addTags": {
|
||||
"highway": "footway",
|
||||
"footway": "traffic_island"
|
||||
},
|
||||
|
|
|
|||
30
data/presets/highway/path/_crossing.json
Normal file
30
data/presets/highway/path/_crossing.json
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"icon": "temaki-cyclist_crosswalk",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"{@templates/crossing/markings}",
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"{@templates/crossing/bicycle_more}",
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"path": "crossing"
|
||||
},
|
||||
"addTags": {
|
||||
"highway": "path",
|
||||
"path": "crossing"
|
||||
},
|
||||
"reference": {
|
||||
"key": "path",
|
||||
"value": "crossing"
|
||||
},
|
||||
"searchable": false,
|
||||
"name": "Cycle & Foot Crossing"
|
||||
}
|
||||
32
data/presets/highway/path/bicycle_foot.json
Normal file
32
data/presets/highway/path/bicycle_foot.json
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"locationSet": {
|
||||
"include": [
|
||||
"fr",
|
||||
"lt",
|
||||
"pl",
|
||||
"de",
|
||||
"il",
|
||||
"ps"
|
||||
]
|
||||
},
|
||||
"icon": "temaki-pedestrian_and_cyclist",
|
||||
"fields": [
|
||||
"{highway/cycleway/bicycle_foot}"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "path",
|
||||
"foot": "designated",
|
||||
"bicycle": "designated"
|
||||
},
|
||||
"removeTags": {
|
||||
"highway": "path",
|
||||
"foot": "designated",
|
||||
"bicycle": "designated",
|
||||
"segregated": "*"
|
||||
},
|
||||
"matchScore": 0.9,
|
||||
"name": "{highway/cycleway/bicycle_foot}"
|
||||
}
|
||||
24
data/presets/highway/path/crossing/_informal.json
Normal file
24
data/presets/highway/path/crossing/_informal.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"icon": "temaki-pedestrian",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "path",
|
||||
"path": "crossing",
|
||||
"crossing": "informal"
|
||||
},
|
||||
"reference": {
|
||||
"key": "crossing",
|
||||
"value": "informal"
|
||||
},
|
||||
"name": "{highway/crossing/informal}",
|
||||
"searchable": false
|
||||
}
|
||||
34
data/presets/highway/path/crossing/_marked.json
Normal file
34
data/presets/highway/path/crossing/_marked.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"icon": "temaki-pedestrian_crosswalk",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"{@templates/crossing/markings}",
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"{@templates/crossing/bicycle_more}",
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "path",
|
||||
"path": "crossing",
|
||||
"crossing": "marked"
|
||||
},
|
||||
"addTags": {
|
||||
"highway": "path",
|
||||
"path": "crossing",
|
||||
"crossing": "marked",
|
||||
"crossing:markings": "yes"
|
||||
},
|
||||
"reference": {
|
||||
"key": "crossing",
|
||||
"value": "marked"
|
||||
},
|
||||
"name": "{highway/path/crossing/uncontrolled}",
|
||||
"searchable": false
|
||||
}
|
||||
30
data/presets/highway/path/crossing/_traffic_signals.json
Normal file
30
data/presets/highway/path/crossing/_traffic_signals.json
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"icon": "temaki-railway_signals",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"{@templates/crossing/traffic_signal}",
|
||||
"{@templates/crossing/markings}",
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/traffic_signal_more}",
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"{@templates/crossing/bicycle_more}",
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "path",
|
||||
"path": "crossing",
|
||||
"crossing": "traffic_signals"
|
||||
},
|
||||
"reference": {
|
||||
"key": "crossing",
|
||||
"value": "traffic_signals"
|
||||
},
|
||||
"name": "Cycle & Foot Crossing With Pedestrian Signals",
|
||||
"searchable": false
|
||||
}
|
||||
28
data/presets/highway/path/crossing/_uncontrolled.json
Normal file
28
data/presets/highway/path/crossing/_uncontrolled.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"icon": "temaki-pedestrian",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"{@templates/crossing/markings_yes}",
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"{@templates/crossing/bicycle_more}",
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "path",
|
||||
"path": "crossing",
|
||||
"crossing": "uncontrolled"
|
||||
},
|
||||
"reference": {
|
||||
"key": "crossing",
|
||||
"value": "uncontrolled"
|
||||
},
|
||||
"name": "Marked Cycle & Foot Crossing",
|
||||
"searchable": false
|
||||
}
|
||||
33
data/presets/highway/path/crossing/_unmarked.json
Normal file
33
data/presets/highway/path/crossing/_unmarked.json
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
"icon": "temaki-pedestrian",
|
||||
"fields": [
|
||||
"crossing",
|
||||
"{@templates/crossing/defaults}",
|
||||
"surface"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/crossing/geometry_way_more}",
|
||||
"{@templates/crossing/bicycle_more}",
|
||||
"flashing_lights"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "path",
|
||||
"path": "crossing",
|
||||
"crossing": "unmarked"
|
||||
},
|
||||
"addTags": {
|
||||
"highway": "path",
|
||||
"path": "crossing",
|
||||
"crossing": "unmarked",
|
||||
"crossing:markings": "no"
|
||||
},
|
||||
"reference": {
|
||||
"key": "crossing",
|
||||
"value": "unmarked"
|
||||
},
|
||||
"name": "Unmarked Cycle & Foot Crossing",
|
||||
"searchable": false
|
||||
}
|
||||
38
data/presets/highway/path/crossing/bicycle_foot.json
Normal file
38
data/presets/highway/path/crossing/bicycle_foot.json
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"locationSet": {
|
||||
"include": [
|
||||
"fr",
|
||||
"lt",
|
||||
"pl",
|
||||
"de",
|
||||
"il",
|
||||
"ps"
|
||||
]
|
||||
},
|
||||
"icon": "temaki-ped_cyclist_crosswalk",
|
||||
"fields": [
|
||||
"{highway/cycleway/crossing/bicycle_foot}"
|
||||
],
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "path",
|
||||
"path": "crossing",
|
||||
"foot": "designated",
|
||||
"bicycle": "designated"
|
||||
},
|
||||
"removeTags": {
|
||||
"highway": "path",
|
||||
"path": "crossing",
|
||||
"foot": "designated",
|
||||
"bicycle": "designated",
|
||||
"segregated": "*"
|
||||
},
|
||||
"reference": {
|
||||
"key": "path",
|
||||
"value": "crossing"
|
||||
},
|
||||
"matchScore": 0.9,
|
||||
"name": "{highway/cycleway/crossing/bicycle_foot}"
|
||||
}
|
||||
30
data/presets/highway/path/traffic_island_shared.json
Normal file
30
data/presets/highway/path/traffic_island_shared.json
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"locationSet": {
|
||||
"include": [
|
||||
"fr",
|
||||
"lt",
|
||||
"pl",
|
||||
"de",
|
||||
"il",
|
||||
"ps"
|
||||
]
|
||||
},
|
||||
"icon": "temaki-pedestrian_and_cyclist",
|
||||
"geometry": [
|
||||
"line"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "path",
|
||||
"path": "traffic_island",
|
||||
"foot": "designated",
|
||||
"bicycle": "designated"
|
||||
},
|
||||
"reference": {
|
||||
"key": "path",
|
||||
"value": "traffic_island"
|
||||
},
|
||||
"fields": [
|
||||
"{highway/cycleway/traffic_island_shared}"
|
||||
],
|
||||
"name": "{highway/cycleway/traffic_island_shared}"
|
||||
}
|
||||
|
|
@ -13,6 +13,7 @@
|
|||
"lamp_mount",
|
||||
"direction",
|
||||
"height",
|
||||
"operator",
|
||||
"ref"
|
||||
],
|
||||
"terms": [
|
||||
|
|
|
|||
27
data/presets/historic/aircraft.json
Normal file
27
data/presets/historic/aircraft.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"icon": "roentgen-plane",
|
||||
"fields": [
|
||||
"name",
|
||||
"start_date",
|
||||
"aircraft/type",
|
||||
"model"
|
||||
],
|
||||
"moreFields": [
|
||||
"ref",
|
||||
"model/wikidata",
|
||||
"manufacturer",
|
||||
"manufacturer/wikidata",
|
||||
"description"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"historic": "aircraft"
|
||||
},
|
||||
"terms": [
|
||||
"gate guardian"
|
||||
],
|
||||
"name": "Historic Aircraft"
|
||||
}
|
||||
|
|
@ -17,11 +17,13 @@
|
|||
},
|
||||
"terms": [
|
||||
"fish farm",
|
||||
"marine farm",
|
||||
"crustacean",
|
||||
"algae",
|
||||
"aquafarming",
|
||||
"shrimp farm",
|
||||
"oyster farm",
|
||||
"mussel farm",
|
||||
"mariculture",
|
||||
"algaculture"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,7 +8,8 @@
|
|||
],
|
||||
"moreFields": [
|
||||
"{@templates/contact}",
|
||||
"address"
|
||||
"address",
|
||||
"irrigation_pivot"
|
||||
],
|
||||
"geometry": [
|
||||
"area"
|
||||
|
|
|
|||
37
data/presets/landuse/meadow_orchard/meadow.json
Normal file
37
data/presets/landuse/meadow_orchard/meadow.json
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"icon": "maki-park",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
"trees"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/contact}",
|
||||
"address",
|
||||
"species/wikidata",
|
||||
"surface",
|
||||
"description"
|
||||
],
|
||||
"geometry": [
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"landuse": "meadow",
|
||||
"meadow": "meadow_orchard"
|
||||
},
|
||||
"reference": {
|
||||
"key": "meadow",
|
||||
"value": "meadow_orchard"
|
||||
},
|
||||
"terms": [
|
||||
"fruit",
|
||||
"maedow"
|
||||
],
|
||||
"name": "Meadow With Fruit Trees",
|
||||
"matchScore": 0.9,
|
||||
"locationSet": {
|
||||
"include": [
|
||||
"Q46"
|
||||
]
|
||||
}
|
||||
}
|
||||
37
data/presets/landuse/meadow_orchard/orchard.json
Normal file
37
data/presets/landuse/meadow_orchard/orchard.json
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"icon": "maki-park",
|
||||
"fields": [
|
||||
"name",
|
||||
"operator",
|
||||
"trees"
|
||||
],
|
||||
"moreFields": [
|
||||
"{@templates/contact}",
|
||||
"address",
|
||||
"species/wikidata",
|
||||
"surface",
|
||||
"description"
|
||||
],
|
||||
"geometry": [
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"landuse": "orchard",
|
||||
"orchard": "meadow_orchard"
|
||||
},
|
||||
"reference": {
|
||||
"key": "orchard",
|
||||
"value": "meadow_orchard"
|
||||
},
|
||||
"terms": [
|
||||
"fruit",
|
||||
"maedow"
|
||||
],
|
||||
"name": "Orchard Planted in a Meadow",
|
||||
"matchScore": 0.9,
|
||||
"locationSet": {
|
||||
"include": [
|
||||
"Q46"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -18,7 +18,12 @@
|
|||
"earthquake",
|
||||
"seismology",
|
||||
"air",
|
||||
"gps"
|
||||
"gps",
|
||||
"traffic counter",
|
||||
"bicycle counter",
|
||||
"bike counter",
|
||||
"water level",
|
||||
"measurement station"
|
||||
],
|
||||
"tags": {
|
||||
"man_made": "monitoring_station"
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@
|
|||
"water",
|
||||
"oil",
|
||||
"gas",
|
||||
"fuel",
|
||||
"petrol"
|
||||
],
|
||||
"tags": {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,8 @@
|
|||
"icon": "maki-observation-tower",
|
||||
"moreFields": [
|
||||
"{man_made/tower}",
|
||||
"opening_hours"
|
||||
"opening_hours",
|
||||
"direction"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
|
|
|
|||
|
|
@ -15,6 +15,8 @@
|
|||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"waterwheel",
|
||||
"water wheel",
|
||||
"water",
|
||||
"wheel",
|
||||
"mill"
|
||||
|
|
|
|||
19
data/presets/natural/arch.json
Normal file
19
data/presets/natural/arch.json
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"icon": "temaki-natural_arch",
|
||||
"fields": [
|
||||
"name"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"natural": "arch"
|
||||
},
|
||||
"terms": [
|
||||
"natural arch",
|
||||
"natural bridge",
|
||||
"rock arch"
|
||||
],
|
||||
"name": "Natural Arch"
|
||||
}
|
||||
|
|
@ -13,7 +13,8 @@
|
|||
"species/wikidata",
|
||||
"taxon",
|
||||
"diameter_crown",
|
||||
"diameter"
|
||||
"diameter",
|
||||
"ref"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,8 @@
|
|||
"defender",
|
||||
"lawyer",
|
||||
"legal",
|
||||
"prosecutor"
|
||||
"prosecutor",
|
||||
"solicitor"
|
||||
],
|
||||
"name": "Law Office"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
{
|
||||
"icon": "fas-solar-panel",
|
||||
"fields": [
|
||||
"{power/generator/method/photovoltaic}"
|
||||
"{power/generator/method/photovoltaic}",
|
||||
"layer_1"
|
||||
],
|
||||
"moreFields": [
|
||||
"{power/generator}"
|
||||
|
|
@ -22,8 +23,7 @@
|
|||
"generator:method": "photovoltaic",
|
||||
"generator:type": "solar_photovoltaic_panel",
|
||||
"generator:output:electricity": "*",
|
||||
"building": "roof",
|
||||
"layer": "1"
|
||||
"building": "roof"
|
||||
},
|
||||
"reference": {
|
||||
"key": "generator:method",
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
"public transit",
|
||||
"public transportation",
|
||||
"rail",
|
||||
"railway platform",
|
||||
"track",
|
||||
"train",
|
||||
"transit",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-store-alt-slash",
|
||||
"fields": [
|
||||
"name",
|
||||
"address",
|
||||
|
|
@ -9,6 +9,9 @@
|
|||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"empty"
|
||||
],
|
||||
"tags": {
|
||||
"shop": "vacant"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "maki-art-gallery",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
|
|
|||
23
data/presets/shop/bbq.json
Normal file
23
data/presets/shop/bbq.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"icon": "maki-bbq",
|
||||
"fields": [
|
||||
"{shop}"
|
||||
],
|
||||
"moreFields": [
|
||||
"{shop}"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"barbecue",
|
||||
"barbeque",
|
||||
"bbq",
|
||||
"grill"
|
||||
],
|
||||
"tags": {
|
||||
"shop": "bbq"
|
||||
},
|
||||
"name": "Barbecue Shop"
|
||||
}
|
||||
|
|
@ -13,6 +13,7 @@
|
|||
"shop": "clothes"
|
||||
},
|
||||
"terms": [
|
||||
"apparel",
|
||||
"blouses",
|
||||
"boutique",
|
||||
"bras",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"icon": "fas-cut",
|
||||
"icon": "fas-palette",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"icon": "maki-shop",
|
||||
"icon": "fas-smoking",
|
||||
"moreFields": [
|
||||
"{shop}",
|
||||
"min_age"
|
||||
|
|
|
|||
17
data/presets/shop/gold_buyer.json
Normal file
17
data/presets/shop/gold_buyer.json
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"icon": "fas-hand-holding",
|
||||
"fields": [
|
||||
"{shop}"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"aliases": [
|
||||
"Gold trader"
|
||||
],
|
||||
"tags": {
|
||||
"shop": "gold_buyer"
|
||||
},
|
||||
"name": "Gold buyer"
|
||||
}
|
||||
20
data/presets/shop/groundskeeping.json
Normal file
20
data/presets/shop/groundskeeping.json
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"icon": "fas-tractor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"chainsaw",
|
||||
"cultivator",
|
||||
"garden machinery",
|
||||
"garden power tools",
|
||||
"groundskeeping",
|
||||
"mower, string trimmer",
|
||||
"snow blower"
|
||||
],
|
||||
"tags": {
|
||||
"shop": "groundskeeping"
|
||||
},
|
||||
"name": "Lawn & Garden Equipment Store"
|
||||
}
|
||||
|
|
@ -10,7 +10,8 @@
|
|||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bike"
|
||||
"bike",
|
||||
"motorbike"
|
||||
],
|
||||
"tags": {
|
||||
"shop": "motorcycle"
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
"bike",
|
||||
"garage",
|
||||
"motorcycle",
|
||||
"motorbike",
|
||||
"repair",
|
||||
"service"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -10,7 +10,8 @@
|
|||
"terms": [
|
||||
"patisserie",
|
||||
"cake shop",
|
||||
"cakery"
|
||||
"cakery",
|
||||
"cookies"
|
||||
],
|
||||
"moreFields": [
|
||||
"fhrs/id-GB"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,8 @@
|
|||
],
|
||||
"terms": [
|
||||
"card",
|
||||
"paper"
|
||||
"paper",
|
||||
"stationary"
|
||||
],
|
||||
"tags": {
|
||||
"shop": "stationery"
|
||||
|
|
|
|||
|
|
@ -20,5 +20,9 @@
|
|||
"tags": {
|
||||
"tourism": "theme_park"
|
||||
},
|
||||
"terms": [
|
||||
"amusement park",
|
||||
"fun park"
|
||||
],
|
||||
"name": "Theme Park"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,5 +14,8 @@
|
|||
"tags": {
|
||||
"tourism": "viewpoint"
|
||||
},
|
||||
"terms": [
|
||||
"lookout"
|
||||
],
|
||||
"name": "Viewpoint"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue