mirror of
https://github.com/openstreetmap/id-tagging-schema.git
synced 2025-10-28 13:23:52 +01:00
add common independent physicians (#718)
This commit is contained in:
parent
b43ded69d0
commit
d40b047db0
29 changed files with 892 additions and 14 deletions
25
data/presets/amenity/doctors/allergology.json
Normal file
25
data/presets/amenity/doctors/allergology.json
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"allergy",
|
||||
"asthma"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "allergology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "allergology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "allergology"
|
||||
},
|
||||
"name": "Allergologist"
|
||||
}
|
||||
28
data/presets/amenity/doctors/cardiology.json
Normal file
28
data/presets/amenity/doctors/cardiology.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"cardiac surgeon",
|
||||
"Cardiology",
|
||||
"cardiovascular system",
|
||||
"coronary artery",
|
||||
"heart"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "cardiology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "cardiology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "cardiology"
|
||||
},
|
||||
"name": "Cardiologist"
|
||||
}
|
||||
27
data/presets/amenity/doctors/dermatology.json
Normal file
27
data/presets/amenity/doctors/dermatology.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"dermatology",
|
||||
"hair",
|
||||
"nails",
|
||||
"skin"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "dermatology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "dermatology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "dermatology"
|
||||
},
|
||||
"name": "Dermatologist"
|
||||
}
|
||||
38
data/presets/amenity/doctors/gastroenterology.json
Normal file
38
data/presets/amenity/doctors/gastroenterology.json
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"bowels",
|
||||
"digestive system",
|
||||
"digestion",
|
||||
"esophagus",
|
||||
"food pipe",
|
||||
"gallstone",
|
||||
"gastrointestinal tract",
|
||||
"gastroenterology",
|
||||
"gullet",
|
||||
"intestines",
|
||||
"large intestine",
|
||||
"liver",
|
||||
"oesophagus",
|
||||
"small intestine",
|
||||
"stomach"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "gastroenterology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "gastroenterology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "gastroenterology"
|
||||
},
|
||||
"name": "Gastroenterologist"
|
||||
}
|
||||
30
data/presets/amenity/doctors/general.json
Normal file
30
data/presets/amenity/doctors/general.json
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"gp",
|
||||
"family physician",
|
||||
"family practitioner",
|
||||
"family doctor"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "general"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "general",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "general"
|
||||
},
|
||||
"name": "Primary Care Physician",
|
||||
"aliases": [
|
||||
"General Practitioner"
|
||||
]
|
||||
}
|
||||
|
|
@ -17,9 +17,13 @@
|
|||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare": "doctor",
|
||||
"healthcare:speciality": "gynaecology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "gynaecology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "gynaecology"
|
||||
|
|
|
|||
32
data/presets/amenity/doctors/haematology.json
Normal file
32
data/presets/amenity/doctors/haematology.json
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"anemia",
|
||||
"blood",
|
||||
"bone marrow",
|
||||
"haematology",
|
||||
"leukemia",
|
||||
"lymphoma"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "haematology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "haematology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "haematology"
|
||||
},
|
||||
"name": "Hematologist",
|
||||
"aliases": [
|
||||
"Haematologist"
|
||||
]
|
||||
}
|
||||
27
data/presets/amenity/doctors/internal.json
Normal file
27
data/presets/amenity/doctors/internal.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"internal general practitioner",
|
||||
"internal medicine",
|
||||
"internist",
|
||||
"physician"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "internal"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "internal",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "internal"
|
||||
},
|
||||
"name": "Internist"
|
||||
}
|
||||
28
data/presets/amenity/doctors/nephrology.json
Normal file
28
data/presets/amenity/doctors/nephrology.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"kidney",
|
||||
"kidneys",
|
||||
"kidney medicine",
|
||||
"nephrology",
|
||||
"renal"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "nephrology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "nephrology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "nephrology"
|
||||
},
|
||||
"name": "Nephrologist"
|
||||
}
|
||||
28
data/presets/amenity/doctors/neurology.json
Normal file
28
data/presets/amenity/doctors/neurology.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"brain",
|
||||
"nerves",
|
||||
"nervous system",
|
||||
"neurology",
|
||||
"neurosurgery"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "neurology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "neurology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "neurology"
|
||||
},
|
||||
"name": "Neurologist"
|
||||
}
|
||||
28
data/presets/amenity/doctors/neurosurgery.json
Normal file
28
data/presets/amenity/doctors/neurosurgery.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"brain",
|
||||
"neurological surgery"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "neurosurgery"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "neurosurgery",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "neurosurgery"
|
||||
},
|
||||
"name": "Neurosurgeon",
|
||||
"aliases": [
|
||||
"Brain Surgeon"
|
||||
]
|
||||
}
|
||||
27
data/presets/amenity/doctors/oncology.json
Normal file
27
data/presets/amenity/doctors/oncology.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"cancer",
|
||||
"chemotherapy",
|
||||
"oncology",
|
||||
"tumor"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "oncology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "oncology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "oncology"
|
||||
},
|
||||
"name": "Oncologist"
|
||||
}
|
||||
28
data/presets/amenity/doctors/ophthalmology.json
Normal file
28
data/presets/amenity/doctors/ophthalmology.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"eye",
|
||||
"eyes",
|
||||
"glasses",
|
||||
"ocular",
|
||||
"ophthalmology"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "ophthalmology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "ophthalmology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "ophthalmology"
|
||||
},
|
||||
"name": "Ophthalmologist"
|
||||
}
|
||||
28
data/presets/amenity/doctors/orthopaedics.json
Normal file
28
data/presets/amenity/doctors/orthopaedics.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"orthopedic surgery"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "orthopaedics"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "orthopaedics",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "orthopaedics"
|
||||
},
|
||||
"name": "Orthopedic Surgeon",
|
||||
"aliases": [
|
||||
"Orthopedics",
|
||||
"Orthopaedics"
|
||||
]
|
||||
}
|
||||
37
data/presets/amenity/doctors/otolaryngology.json
Normal file
37
data/presets/amenity/doctors/otolaryngology.json
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"ear",
|
||||
"ent",
|
||||
"head and neck surgery",
|
||||
"nose",
|
||||
"ohns",
|
||||
"orl",
|
||||
"orl–h&n",
|
||||
"otolaryngologist",
|
||||
"otorhinolaryngology",
|
||||
"skull",
|
||||
"throat"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "otolaryngology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "otolaryngology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "otolaryngology"
|
||||
},
|
||||
"name": "Otolaryngologist",
|
||||
"aliases": [
|
||||
"Otorhinolaryngologist"
|
||||
]
|
||||
}
|
||||
30
data/presets/amenity/doctors/paediatrics.json
Normal file
30
data/presets/amenity/doctors/paediatrics.json
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"adolescents",
|
||||
"children",
|
||||
"infants",
|
||||
"paediatrics"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "paediatrics"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "paediatrics",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "paediatrics"
|
||||
},
|
||||
"name": "Pediatrician",
|
||||
"aliases": [
|
||||
"Paediatrician"
|
||||
]
|
||||
}
|
||||
27
data/presets/amenity/doctors/pathology.json
Normal file
27
data/presets/amenity/doctors/pathology.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"autopsy",
|
||||
"anatomical pathology",
|
||||
"anatomic pathology",
|
||||
"pathology"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "pathology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "pathology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "pathology"
|
||||
},
|
||||
"name": "Pathologist"
|
||||
}
|
||||
28
data/presets/amenity/doctors/plastic_surgery.json
Normal file
28
data/presets/amenity/doctors/plastic_surgery.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"aesthetic surgery",
|
||||
"cosmetic surgery",
|
||||
"craniofacial surgery",
|
||||
"reconstructive surgery",
|
||||
"plastic surgery"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "plastic_surgery"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "plastic_surgery",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "plastic_surgery"
|
||||
},
|
||||
"name": "Plastic Surgeon"
|
||||
}
|
||||
33
data/presets/amenity/doctors/podiatry.json
Normal file
33
data/presets/amenity/doctors/podiatry.json
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"ankle",
|
||||
"feet",
|
||||
"foot",
|
||||
"leg",
|
||||
"legs",
|
||||
"podiatry"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "podiatry"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "podiatry",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "podiatry"
|
||||
},
|
||||
"name": "Podiatrist",
|
||||
"aliases": [
|
||||
"Chiropodist",
|
||||
"Podiatric Surgeon"
|
||||
]
|
||||
}
|
||||
29
data/presets/amenity/doctors/proctology.json
Normal file
29
data/presets/amenity/doctors/proctology.json
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"assman",
|
||||
"colorectal surgery",
|
||||
"proctology"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "proctology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "proctology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "proctology"
|
||||
},
|
||||
"name": "Colorectal Surgeon",
|
||||
"aliases": [
|
||||
"Proctologist"
|
||||
]
|
||||
}
|
||||
38
data/presets/amenity/doctors/pulmonology.json
Normal file
38
data/presets/amenity/doctors/pulmonology.json
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"asthma",
|
||||
"chest medicine",
|
||||
"lung",
|
||||
"pneumology",
|
||||
"pneumonology",
|
||||
"pneumonia",
|
||||
"pulmonology",
|
||||
"respiratory tract",
|
||||
"respirology",
|
||||
"respiratory medicine"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "pulmonology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "pulmonology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "pulmonology"
|
||||
},
|
||||
"name": "Pulmonologist",
|
||||
"aliases": [
|
||||
"Pneumologist",
|
||||
"Respiratory Physician",
|
||||
"Respirologist"
|
||||
]
|
||||
}
|
||||
35
data/presets/amenity/doctors/radiology.json
Normal file
35
data/presets/amenity/doctors/radiology.json
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"radiology",
|
||||
"computed tomography",
|
||||
"ct",
|
||||
"magnetic resonance imaging",
|
||||
"medical ultrasound",
|
||||
"medical ultrasonography",
|
||||
"mri",
|
||||
"sonography",
|
||||
"ultrasonography"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "radiology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "radiology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "radiology"
|
||||
},
|
||||
"name": "Radiologist",
|
||||
"aliases": [
|
||||
"Rontegenologist"
|
||||
]
|
||||
}
|
||||
27
data/presets/amenity/doctors/rheumatology.json
Normal file
27
data/presets/amenity/doctors/rheumatology.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"lupus",
|
||||
"oteoporosis",
|
||||
"rheuma",
|
||||
"rheumatology"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "rheumatology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "rheumatology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "rheumatology"
|
||||
},
|
||||
"name": "Rheumatologist"
|
||||
}
|
||||
24
data/presets/amenity/doctors/surgery.json
Normal file
24
data/presets/amenity/doctors/surgery.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"surgery"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "surgery"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "surgery",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "surgery"
|
||||
},
|
||||
"name": "General Surgeon"
|
||||
}
|
||||
25
data/presets/amenity/doctors/trauma.json
Normal file
25
data/presets/amenity/doctors/trauma.json
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"surgery",
|
||||
"trauma surgery"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "trauma"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "trauma",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "trauma"
|
||||
},
|
||||
"name": "Trauma Surgeon"
|
||||
}
|
||||
37
data/presets/amenity/doctors/urology.json
Normal file
37
data/presets/amenity/doctors/urology.json
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"icon": "maki-doctor",
|
||||
"geometry": [
|
||||
"point",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"adrenal glands",
|
||||
"bladder",
|
||||
"epididymis",
|
||||
"kidney",
|
||||
"penis",
|
||||
"prostate",
|
||||
"reproductive",
|
||||
"scrotum",
|
||||
"testicles",
|
||||
"testis",
|
||||
"urethra",
|
||||
"ureters",
|
||||
"urology",
|
||||
"urinary"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "urology"
|
||||
},
|
||||
"addTags": {
|
||||
"amenity": "doctors",
|
||||
"healthcare:speciality": "urology",
|
||||
"healthcare": "doctor"
|
||||
},
|
||||
"reference": {
|
||||
"key": "healthcare:speciality",
|
||||
"value": "urology"
|
||||
},
|
||||
"name": "Urologist"
|
||||
}
|
||||
|
|
@ -9,11 +9,12 @@
|
|||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"old",
|
||||
"senior",
|
||||
"living",
|
||||
"assisted living",
|
||||
"care home",
|
||||
"assisted living"
|
||||
"elderly",
|
||||
"living",
|
||||
"old",
|
||||
"senior"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "social_facility",
|
||||
|
|
@ -24,5 +25,5 @@
|
|||
"key": "social_facility",
|
||||
"value": "group_home"
|
||||
},
|
||||
"name": "Elderly Group Home"
|
||||
"name": "Group Home"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue