diff --git a/data/presets.yaml b/data/presets.yaml index 0ca52a7ca..e0abb7851 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -2380,6 +2380,11 @@ en: # amenity=clock name: Clock terms: '' + amenity/clock/sundial: + # 'amenity=clock, display=sundial' + name: Sundial + # 'terms: gnomon,shadow' + terms: '' amenity/college: # amenity=college name: College Grounds diff --git a/data/presets/presets.json b/data/presets/presets.json index f3a3324da..44438cba6 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -73,6 +73,7 @@ "amenity/clinic/abortion": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "clinic", "healthcare": "clinic", "healthcare:speciality": "abortion"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Abortion Clinic"}, "amenity/clinic/fertility": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["egg", "fertility", "reproductive", "sperm", "ovulation"], "tags": {"amenity": "clinic", "healthcare": "clinic", "healthcare:speciality": "fertility"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Fertility Clinic"}, "amenity/clock": {"icon": "temaki-clock", "fields": ["name", "support", "display", "visibility", "date", "faces"], "moreFields": ["lit"], "geometry": ["point", "vertex"], "tags": {"amenity": "clock"}, "name": "Clock"}, + "amenity/clock/sundial": {"icon": "far-clock", "fields": ["name", "support", "visibility", "inscription"], "moreFields": [], "geometry": ["point", "vertex"], "terms": ["gnomon", "shadow"], "tags": {"amenity": "clock", "display": "sundial"}, "reference": {"key": "display", "value": "sundial"}, "name": "Sundial"}, "amenity/college": {"icon": "maki-college", "fields": ["name", "operator", "address", "website", "internet_access"], "moreFields": ["religion", "denomination", "internet_access/fee", "internet_access/ssid", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["university", "undergraduate school"], "tags": {"amenity": "college"}, "name": "College Grounds"}, "amenity/community_centre": {"icon": "maki-town-hall", "fields": ["name", "operator", "address", "building_area"], "moreFields": ["website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["event", "hall"], "tags": {"amenity": "community_centre"}, "name": "Community Center"}, "amenity/compressed_air": {"icon": "maki-car", "fields": ["operator", "fee", "payment_multi", "lit"], "geometry": ["point", "area"], "tags": {"amenity": "compressed_air"}, "name": "Compressed Air"}, diff --git a/data/presets/presets/amenity/clock/sundial.json b/data/presets/presets/amenity/clock/sundial.json new file mode 100644 index 000000000..695233a54 --- /dev/null +++ b/data/presets/presets/amenity/clock/sundial.json @@ -0,0 +1,27 @@ +{ + "icon": "far-clock", + "fields": [ + "name", + "support", + "visibility", + "inscription" + ], + "moreFields": [], + "geometry": [ + "point", + "vertex" + ], + "terms": [ + "gnomon", + "shadow" + ], + "tags": { + "amenity": "clock", + "display": "sundial" + }, + "reference": { + "key": "display", + "value": "sundial" + }, + "name": "Sundial" +} diff --git a/data/taginfo.json b/data/taginfo.json index e0217e77b..71a702109 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -76,6 +76,7 @@ {"key": "healthcare:speciality", "value": "abortion", "description": "🄿 Abortion Clinic", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, {"key": "healthcare:speciality", "value": "fertility", "description": "🄿 Fertility Clinic", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"}, {"key": "amenity", "value": "clock", "description": "🄿 Clock", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/clock.svg?sanitize=true"}, + {"key": "display", "value": "sundial", "description": "🄿 Sundial", "object_types": ["node"], "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/far-clock.svg?sanitize=true"}, {"key": "amenity", "value": "college", "description": "🄿 College Grounds", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/college-15.svg?sanitize=true"}, {"key": "amenity", "value": "community_centre", "description": "🄿 Community Center", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"}, {"key": "amenity", "value": "compressed_air", "description": "🄿 Compressed Air", "object_types": ["node", "area"], "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index 44fb1ba6f..dd3b7bab7 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -3902,6 +3902,10 @@ "name": "Clock", "terms": "" }, + "amenity/clock/sundial": { + "name": "Sundial", + "terms": "gnomon,shadow" + }, "amenity/college": { "name": "College Grounds", "terms": "university,undergraduate school" diff --git a/svg/fontawesome/far-clock.svg b/svg/fontawesome/far-clock.svg new file mode 100644 index 000000000..6e75eee70 --- /dev/null +++ b/svg/fontawesome/far-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file