diff --git a/data/presets.yaml b/data/presets.yaml index eef7404e3..3d24277ea 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -2425,11 +2425,19 @@ en: name: Helipad # 'terms: helicopter,helipad,heliport' terms: '' + aeroway/holding_position: + # aeroway=holding_position + name: Aircraft Holding Position + terms: '' aeroway/jet_bridge: # aeroway=jet_bridge name: Jet Bridge # 'terms: aerobridge,air jetty,airbridge,finger,gangway,jet way,jetway,passenger boarding bridge,PBB,portal,skybridge,terminal gate connector' terms: '' + aeroway/parking_position: + # aeroway=parking_position + name: Aircraft Parking Position + terms: '' aeroway/runway: # aeroway=runway name: Runway diff --git a/data/presets/presets.json b/data/presets/presets.json index 7435c7f38..39ee9aea9 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -45,7 +45,9 @@ "aeroway/gate": {"icon": "maki-airport", "geometry": ["point"], "fields": ["ref_aeroway_gate"], "tags": {"aeroway": "gate"}, "name": "Airport Gate"}, "aeroway/hangar": {"icon": "fas-warehouse", "geometry": ["area"], "fields": ["name", "building_area"], "tags": {"aeroway": "hangar"}, "addTags": {"building": "hangar", "aeroway": "hangar"}, "name": "Hangar"}, "aeroway/helipad": {"icon": "maki-heliport", "geometry": ["point", "area"], "fields": ["name", "ref", "operator", "surface", "lit"], "moreFields": ["access_simple", "address", "fee", "opening_hours"], "terms": ["helicopter", "helipad", "heliport"], "tags": {"aeroway": "helipad"}, "name": "Helipad"}, + "aeroway/holding_position": {"icon": "maki-airport", "geometry": ["vertex"], "fields": ["ref"], "tags": {"aeroway": "holding_position"}, "name": "Aircraft Holding Position"}, "aeroway/jet_bridge": {"icon": "temaki-pedestrian", "geometry": ["line"], "fields": ["ref_aeroway_gate", "width", "access_simple", "wheelchair"], "moreFields": ["manufacturer"], "terms": ["aerobridge", "air jetty", "airbridge", "finger", "gangway", "jet way", "jetway", "passenger boarding bridge", "PBB", "portal", "skybridge", "terminal gate connector"], "tags": {"aeroway": "jet_bridge"}, "addTags": {"aeroway": "jet_bridge", "highway": "corridor"}, "matchScore": 1.05, "name": "Jet Bridge"}, + "aeroway/parking_position": {"icon": "maki-airport", "geometry": ["vertex", "point", "line"], "fields": ["ref"], "tags": {"aeroway": "parking_position"}, "name": "Aircraft Parking Position"}, "aeroway/runway": {"icon": "fas-plane-departure", "geometry": ["line", "area"], "terms": ["landing strip"], "fields": ["ref_runway", "surface", "length", "width"], "tags": {"aeroway": "runway"}, "name": "Runway"}, "aeroway/taxiway": {"icon": "fas-plane", "geometry": ["line"], "fields": ["ref_taxiway", "surface"], "tags": {"aeroway": "taxiway"}, "name": "Taxiway"}, "aeroway/terminal": {"icon": "maki-airport", "geometry": ["point", "area"], "terms": ["airport", "aerodrome"], "fields": ["name", "operator", "building_area"], "moreFields": ["wheelchair", "smoking"], "tags": {"aeroway": "terminal"}, "name": "Airport Terminal"}, diff --git a/data/presets/presets/aeroway/holding_position.json b/data/presets/presets/aeroway/holding_position.json new file mode 100644 index 000000000..d2f3384b9 --- /dev/null +++ b/data/presets/presets/aeroway/holding_position.json @@ -0,0 +1,13 @@ +{ + "icon": "maki-airport", + "geometry": [ + "vertex" + ], + "fields": [ + "ref" + ], + "tags": { + "aeroway": "holding_position" + }, + "name": "Aircraft Holding Position" +} diff --git a/data/presets/presets/aeroway/parking_position.json b/data/presets/presets/aeroway/parking_position.json new file mode 100644 index 000000000..e176d0cc7 --- /dev/null +++ b/data/presets/presets/aeroway/parking_position.json @@ -0,0 +1,15 @@ +{ + "icon": "maki-airport", + "geometry": [ + "vertex", + "point", + "line" + ], + "fields": [ + "ref" + ], + "tags": { + "aeroway": "parking_position" + }, + "name": "Aircraft Parking Position" +} diff --git a/data/taginfo.json b/data/taginfo.json index ca1fc610e..927946f93 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -48,7 +48,9 @@ {"key": "aeroway", "value": "gate", "description": "🄿 Airport Gate", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/airport-15.svg"}, {"key": "aeroway", "value": "hangar", "description": "🄿 Hangar", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD/svg/fontawesome/fas-warehouse.svg"}, {"key": "aeroway", "value": "helipad", "description": "🄿 Helipad", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heliport-15.svg"}, + {"key": "aeroway", "value": "holding_position", "description": "🄿 Aircraft Holding Position", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/airport-15.svg"}, {"key": "aeroway", "value": "jet_bridge", "description": "🄿 Jet Bridge", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/bhousel/temaki/icons/pedestrian.svg"}, + {"key": "aeroway", "value": "parking_position", "description": "🄿 Aircraft Parking Position", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/airport-15.svg"}, {"key": "aeroway", "value": "runway", "description": "🄿 Runway", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD/svg/fontawesome/fas-plane-departure.svg"}, {"key": "aeroway", "value": "taxiway", "description": "🄿 Taxiway", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD/svg/fontawesome/fas-plane.svg"}, {"key": "aeroway", "value": "terminal", "description": "🄿 Airport Terminal", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/airport-15.svg"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index 263564597..767001efc 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -4539,10 +4539,18 @@ "name": "Helipad", "terms": "helicopter,helipad,heliport" }, + "aeroway/holding_position": { + "name": "Aircraft Holding Position", + "terms": "" + }, "aeroway/jet_bridge": { "name": "Jet Bridge", "terms": "aerobridge,air jetty,airbridge,finger,gangway,jet way,jetway,passenger boarding bridge,PBB,portal,skybridge,terminal gate connector" }, + "aeroway/parking_position": { + "name": "Aircraft Parking Position", + "terms": "" + }, "aeroway/runway": { "name": "Runway", "terms": "landing strip"