From 323854f88f282ad65e460ff70bbfe3f0b1c7decb Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Tue, 16 Apr 2019 12:15:22 -0700 Subject: [PATCH] Add aeroway=jet_bridge preset Deprecate aeroway=aerobridge --- data/deprecated.json | 4 ++ data/presets.yaml | 5 +++ data/presets/presets.json | 1 + data/presets/presets/aeroway/jet_bridge.json | 42 ++++++++++++++++++++ data/taginfo.json | 1 + dist/locales/en.json | 4 ++ 6 files changed, 57 insertions(+) create mode 100644 data/presets/presets/aeroway/jet_bridge.json diff --git a/data/deprecated.json b/data/deprecated.json index d5039b468..b0a0d4ba4 100644 --- a/data/deprecated.json +++ b/data/deprecated.json @@ -4,6 +4,10 @@ "old": {"aerialway": "canopy"}, "replace": {"aerialway": "zip_line"} }, + { + "old": {"aeroway": "aerobridge"}, + "replace": {"aeroway": "jet_bridge"} + }, { "old": {"amenity": "advertising"}, "replace": {"advertising": "*"} diff --git a/data/presets.yaml b/data/presets.yaml index da6049a6b..c51e7f086 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -2328,6 +2328,11 @@ en: name: Helipad # 'terms: helicopter,helipad,heliport' 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/runway: # aeroway=runway name: Runway diff --git a/data/presets/presets.json b/data/presets/presets.json index 29f0cbf0a..396116250 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -41,6 +41,7 @@ "aeroway/gate": {"icon": "maki-airport", "geometry": ["point"], "fields": ["ref_aeroway_gate"], "tags": {"aeroway": "gate"}, "name": "Airport Gate"}, "aeroway/hangar": {"geometry": ["area"], "fields": ["name", "building_area"], "tags": {"aeroway": "hangar"}, "name": "Hangar"}, "aeroway/helipad": {"icon": "maki-heliport", "geometry": ["point", "area"], "fields": ["ref"], "terms": ["helicopter", "helipad", "heliport"], "tags": {"aeroway": "helipad"}, "name": "Helipad"}, + "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"}, "removeTags": {"aeroway": "jet_bridge", "highway": "corridor"}, "matchScore": 1.05, "name": "Jet Bridge"}, "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": {"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/jet_bridge.json b/data/presets/presets/aeroway/jet_bridge.json new file mode 100644 index 000000000..f99d79bcd --- /dev/null +++ b/data/presets/presets/aeroway/jet_bridge.json @@ -0,0 +1,42 @@ +{ + "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" + }, + "removeTags": { + "aeroway": "jet_bridge", + "highway": "corridor" + }, + "matchScore": 1.05, + "name": "Jet Bridge" +} diff --git a/data/taginfo.json b/data/taginfo.json index 111f765b5..90b195393 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -44,6 +44,7 @@ {"key": "aeroway", "value": "gate", "description": "🄿 Airport Gate", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airport-15.svg?sanitize=true"}, {"key": "aeroway", "value": "hangar", "description": "🄿 Hangar", "object_types": ["area"]}, {"key": "aeroway", "value": "helipad", "description": "🄿 Helipad", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/heliport-15.svg?sanitize=true"}, + {"key": "aeroway", "value": "jet_bridge", "description": "🄿 Jet Bridge", "object_types": ["way"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/pedestrian.svg?sanitize=true"}, {"key": "aeroway", "value": "runway", "description": "🄿 Runway", "object_types": ["way", "area"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-plane-departure.svg?sanitize=true"}, {"key": "aeroway", "value": "taxiway", "description": "🄿 Taxiway", "object_types": ["way"]}, {"key": "aeroway", "value": "terminal", "description": "🄿 Airport Terminal", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airport-15.svg?sanitize=true"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index 2a4f3a2fa..c0ad14e69 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -4226,6 +4226,10 @@ "name": "Helipad", "terms": "helicopter,helipad,heliport" }, + "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/runway": { "name": "Runway", "terms": "landing strip"