Merge pull request #2109 from oddityoverseer13/master

Added social_facility presets
This commit is contained in:
John Firebaugh
2014-01-27 13:19:54 -08:00
5 changed files with 114 additions and 0 deletions
@@ -0,0 +1,23 @@
{
"key": "social_facility:for",
"type": "radio",
"label": "People served",
"placeholder": "Homeless, Disabled, Child, etc",
"options": [
"abused",
"child",
"disabled",
"diseased",
"drug_addicted",
"homeless",
"juvenile",
"mental_health",
"migrant",
"orphan",
"senior",
"underprivileged",
"unemployed",
"victim"
]
}
@@ -0,0 +1,20 @@
{
"name": "Social Facility",
"geometry": [
"point",
"area"
],
"terms": [
],
"tags": {
"amenity": "social_facility"
},
"fields": [
"social_facility_for",
"address",
"phone",
"opening_hours",
"wheelchair",
"operator"
]
}
@@ -0,0 +1,21 @@
{
"name": "Food Bank",
"geometry": [
"point",
"area"
],
"terms": [
],
"tags": {
"amenity": "social_facility",
"social_facility": "food_bank"
},
"fields": [
"social_facility_for",
"address",
"phone",
"opening_hours",
"wheelchair",
"operator"
]
}
@@ -0,0 +1,25 @@
{
"name": "Group Home",
"geometry": [
"point",
"area"
],
"terms": [
"elderly",
"old",
"senior living"
],
"tags": {
"amenity": "social_facility",
"social_facility": "group_home",
"social_facility_for": "senior"
},
"fields": [
"social_facility_for",
"address",
"phone",
"opening_hours",
"wheelchair",
"operator"
]
}
@@ -0,0 +1,25 @@
{
"name": "Homeless Shelter",
"geometry": [
"point",
"area"
],
"terms": [
"houseless",
"unhoused",
"displaced"
],
"tags": {
"amenity": "social_facility",
"social_facility": "shelter",
"social_facility:for": "homeless"
},
"fields": [
"social_facility_for",
"address",
"phone",
"opening_hours",
"wheelchair",
"operator"
]
}