diff --git a/data/presets.yaml b/data/presets.yaml index 0dedcf7d7..b7e27a4f8 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -5315,6 +5315,11 @@ en: name: Beach # 'terms: shore' terms: '' + natural/cape: + # natural=cape + name: Cape + # 'terms: bay,coastline,erosion,headland,promontory' + terms: '' natural/cave_entrance: # natural=cave_entrance name: Cave Entrance diff --git a/data/presets/presets.json b/data/presets/presets.json index 7c1baacc1..57ef8b29b 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -686,6 +686,7 @@ "natural/bare_rock": {"geometry": ["area"], "tags": {"natural": "bare_rock"}, "terms": ["rock"], "name": "Bare Rock"}, "natural/bay": {"icon": "temaki-beach", "geometry": ["point", "area"], "fields": ["name"], "tags": {"natural": "bay"}, "terms": [], "name": "Bay"}, "natural/beach": {"icon": "temaki-beach", "fields": ["surface"], "geometry": ["point", "area"], "tags": {"natural": "beach"}, "terms": ["shore"], "name": "Beach"}, + "natural/cape": {"icon": "temaki-beach", "fields": ["name", "elevation", "description"], "geometry": ["point"], "tags": {"natural": "cape"}, "terms": ["bay", "coastline", "erosion", "headland", "promontory"], "name": "Cape"}, "natural/cave_entrance": {"icon": "maki-triangle", "geometry": ["point", "area"], "fields": ["fee", "access_simple", "direction"], "tags": {"natural": "cave_entrance"}, "terms": ["cavern", "hollow", "grotto", "shelter", "cavity"], "name": "Cave Entrance"}, "natural/cliff": {"icon": "maki-triangle", "fields": ["name", "height"], "geometry": ["point", "vertex", "line", "area"], "tags": {"natural": "cliff"}, "terms": ["crag", "escarpment", "rock face", "scarp"], "name": "Cliff"}, "natural/coastline": {"geometry": ["line"], "tags": {"natural": "coastline"}, "terms": ["shore"], "name": "Coastline"}, diff --git a/data/presets/presets/natural/cape.json b/data/presets/presets/natural/cape.json new file mode 100644 index 000000000..766ee3b94 --- /dev/null +++ b/data/presets/presets/natural/cape.json @@ -0,0 +1,22 @@ +{ + "icon": "temaki-beach", + "fields": [ + "name", + "elevation", + "description" + ], + "geometry": [ + "point" + ], + "tags": { + "natural": "cape" + }, + "terms": [ + "bay", + "coastline", + "erosion", + "headland", + "promontory" + ], + "name": "Cape" +} diff --git a/data/taginfo.json b/data/taginfo.json index 1327ed52e..96d711d35 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -664,6 +664,7 @@ {"key": "natural", "value": "bare_rock", "description": "🄿 Bare Rock", "object_types": ["area"]}, {"key": "natural", "value": "bay", "description": "🄿 Bay", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/beach.svg?sanitize=true"}, {"key": "natural", "value": "beach", "description": "🄿 Beach", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/beach.svg?sanitize=true"}, + {"key": "natural", "value": "cape", "description": "🄿 Cape", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/beach.svg?sanitize=true"}, {"key": "natural", "value": "cave_entrance", "description": "🄿 Cave Entrance", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-15.svg?sanitize=true"}, {"key": "natural", "value": "cliff", "description": "🄿 Cliff", "object_types": ["node", "way", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-15.svg?sanitize=true"}, {"key": "natural", "value": "coastline", "description": "🄿 Coastline", "object_types": ["way"]}, diff --git a/dist/locales/en.json b/dist/locales/en.json index 4babd4d18..aac71dc08 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -6806,6 +6806,10 @@ "name": "Beach", "terms": "shore" }, + "natural/cape": { + "name": "Cape", + "terms": "bay,coastline,erosion,headland,promontory" + }, "natural/cave_entrance": { "name": "Cave Entrance", "terms": "cavern,hollow,grotto,shelter,cavity"