diff --git a/data/presets.yaml b/data/presets.yaml index c51e7f086..c7dd1c901 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -2347,6 +2347,10 @@ en: name: Airport Terminal # 'terms: airport,aerodrome' terms: '' + aeroway/windsock: + # aeroway=windsock + name: Windsock + terms: '' allotments/plot: # allotments=plot name: Community Garden Plot diff --git a/data/presets/presets.json b/data/presets/presets.json index 396116250..80842ff5f 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -45,6 +45,7 @@ "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"}, + "aeroway/windsock": {"icon": "fas-wind", "geometry": ["point", "vertex"], "fields": ["ref", "lit", "height"], "moreFields": ["manufacturer"], "tags": {"aeroway": "windsock"}, "name": "Windsock"}, "allotments/plot": {"geometry": ["area"], "fields": ["name", "ref"], "tags": {"allotments": "plot"}, "reference": {"key": "allotments", "value": "plot"}, "name": "Community Garden Plot"}, "amenity/bus_station": {"icon": "maki-bus", "fields": ["name", "building_area", "operator", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"amenity": "bus_station"}, "name": "Bus Station / Terminal", "searchable": false, "replacement": "public_transport/station_bus"}, "amenity/coworking_space": {"icon": "maki-commercial", "fields": ["name", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"amenity": "coworking_space"}, "name": "Coworking Space", "searchable": false}, diff --git a/data/presets/presets/aeroway/windsock.json b/data/presets/presets/aeroway/windsock.json new file mode 100644 index 000000000..1768dfa22 --- /dev/null +++ b/data/presets/presets/aeroway/windsock.json @@ -0,0 +1,19 @@ +{ + "icon": "fas-wind", + "geometry": [ + "point", + "vertex" + ], + "fields": [ + "ref", + "lit", + "height" + ], + "moreFields": [ + "manufacturer" + ], + "tags": { + "aeroway": "windsock" + }, + "name": "Windsock" +} diff --git a/data/taginfo.json b/data/taginfo.json index 90b195393..2e88ae143 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -48,6 +48,7 @@ {"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"}, + {"key": "aeroway", "value": "windsock", "description": "🄿 Windsock", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-wind.svg?sanitize=true"}, {"key": "allotments", "value": "plot", "description": "🄿 Community Garden Plot", "object_types": ["area"]}, {"key": "amenity", "value": "bus_station", "description": "🄿 Bus Station / Terminal (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"}, {"key": "amenity", "value": "coworking_space", "description": "🄿 Coworking Space (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/commercial-15.svg?sanitize=true"}, @@ -1688,6 +1689,7 @@ {"key": "windings:configuration", "value": "scott", "description": "🄵 Windings Configuration"}, {"key": "windings:configuration", "value": "leblanc", "description": "🄵 Windings Configuration"}, {"key": "aerialway", "value": "canopy", "description": "🄳 ➜ aerialway=zip_line"}, + {"key": "aeroway", "value": "aerobridge", "description": "🄳 ➜ aeroway=jet_bridge"}, {"key": "amenity", "value": "advertising", "description": "🄳 ➜ advertising=*"}, {"key": "amenity", "value": "artwork", "description": "🄳 ➜ tourism=artwork"}, {"key": "amenity", "value": "car_repair", "description": "🄳 ➜ shop=car_repair"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index c0ad14e69..1e7f9ae95 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -4242,6 +4242,10 @@ "name": "Airport Terminal", "terms": "airport,aerodrome" }, + "aeroway/windsock": { + "name": "Windsock", + "terms": "" + }, "allotments/plot": { "name": "Community Garden Plot", "terms": "" diff --git a/svg/fontawesome/fas-wind.svg b/svg/fontawesome/fas-wind.svg new file mode 100644 index 000000000..aba9ee006 --- /dev/null +++ b/svg/fontawesome/fas-wind.svg @@ -0,0 +1 @@ + \ No newline at end of file