Changes between Initial Version and Version 1 of Presets/Healthcare


Ignore:
Timestamp:
2017-11-11T08:26:00+01:00 (6 years ago)
Author:
!i!
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Presets/Healthcare

    v1 v1  
     1== [[Image(https://wiki.openstreetmap.org/w/images/8/89/RodOfAsclepius.svg)]] healthcare ==
     2This is a preset for the [https://wiki.openstreetmap.org/wiki/Tag:healthcare  healthcare=*] tags.
     3
     4== The preset's code ==
     5{{{
     6#!preset
     7<presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0"
     8        author="!i!"
     9        icon="https://wiki.openstreetmap.org/w/images/8/89/RodOfAsclepius.svg"
     10
     11        shortdescription="Healthcare"
     12        de.shortdescription="Gesundheit"
     13       
     14        description="Healthcare services tagged with healthcare=* (exludes conflicting ones, limited to current top value)"
     15        de.description="Gesundheits- und Pflegeeinrichtungen die von healthcare=* erfasst werden (konfliktträchtige derzeit ausgespart und nur häufigste Spezialisierungen"
     16       
     17        version="1_2017-11-10">
     18       
     19        <!--
     20        TODO:
     21    - more translations
     22    - more specialities from wiki page
     23    - merge https://josm.openstreetmap.de/wiki/Presets/BloodDonation ?
     24    - better icons?
     25        - long value titles/explanations for specialities?
     26    - refactoring / splitting menus?
     27        -->
     28        <group name = "healthcare and medicals" de.name = "Gesundheit und Medizin" icon = "https://wiki.openstreetmap.org/w/images/8/89/RodOfAsclepius.svg">
     29                <chunk id="common_items">
     30            <combo key="wheelchair" text="Wheelchairs" de.text="Rollstühle" fr.text="Fauteuils roulants" values="yes,limited,no" />
     31                <preset_link preset_name="Addresses" />
     32                        <preset_link preset_name="Contact (Common Schema)" />
     33                        <space />
     34                        <link href="https://wiki.openstreetmap.org/wiki/Key:healthcare" />
     35                </chunk>
     36                <item name = "healthcare facility" de.name = "Gesundheitseinrichtung"
     37                        type = "node,closedway,relation"
     38                        icon = "https://wiki.openstreetmap.org/w/images/8/89/RodOfAsclepius.svg"
     39                >
     40                        <text key = "name" text = "Name" />
     41            <text key = "operator" text = "Operator" de.text = "Betreiber" />
     42                        <combo key = "healthcare" text = "Type"
     43                                values = "yes,birthing_center,blood_bank,centre,clinic,hospice,hospital,rehabilitation"
     44                                de.display_values = "ja,Geburtshaus,Blutbank,Ärztehaus / Gesundheitszentrum,Klinik,Hospitz,Krankenhaus,Rehabilitationsklinik"
     45                                values_searchable = "true"
     46                                values_sort = "true"
     47                        />
     48                        <combo key = "healthcare:speciality" text = "Specialities" de.text="Spezialisierung"
     49                                values="abortion,acupuncture,cardiology,chiropractic,dermatology,fertility,general,gynaecology,internal,neurology,ophthalmology,orthopaedics,otolaryngology,paediatrics,psychiatry,radiology,surgery,urology"
     50                                de.display_values="Abtreibung,Akkupunktur,Cardiologie,Chiropraktik,Dermatologie,Fruchtbarkeit,Allgemeinmedizin,Gynäkologie,Innere Medizin,Neurologie,Augenheilkunde,Orthopädie,Hals-Nasen-Ohrenheilkunde,Kinder- und Jugendmedizin,Psychiatrie,Radiologie,Chirurgie,Urologie"
     51                                values_searchable = "true"
     52                                values_sort = "true"
     53                        />
     54                        <reference ref="common_items" />
     55                </item>
     56                <item name = "healthcare practitioner" de.name = "Praxen"
     57                type = "node,closedway,relation"
     58                icon = "https://wiki.openstreetmap.org/w/images/8/89/RodOfAsclepius.svg"
     59                >
     60                        <text key = "name" text = "Name" />
     61            <text key = "operator" text = "Operator" de.text = "Betreiber" />
     62                        <combo key = "healthcare" text = "Type" de.text = "Typ"
     63                                values = "audiologist,midwife,occupational_therapist,optometrist,physiotherapist,podiatrist,psychotherapist,speech_therapist"
     64                                de.display_values = "Hörakustiker,Hebamme,Ergotherapie,Augenarzt,Physiotherapie,Fußchirurg,Psychotherapie,Logopädie"
     65                                values_searchable = "true"
     66                                values_sort = "true"
     67                        />
     68                        <reference ref="common_items" />
     69                </item>
     70                <item name = "healthcare alternative" de.name = "alternative Medizin"
     71                type = "node,closedway,relation"
     72                icon = "https://wiki.openstreetmap.org/w/images/8/89/RodOfAsclepius.svg"
     73                >
     74                        <key key = "healthcare" value = "alternative"/>
     75            <text key = "operator" text = "Operator" de.text = "Betreiber" />
     76                        <text key = "name" text = "Name" />
     77                        <combo key = "healthcare:speciality" text = "Specialities" de.text="Spezialisierung"
     78                                values = "acupuncture,anthroposophical,applied_kinesiology,aromatherapy,ayurveda,chiropractic,herbalism,homeopathy,hydrotherapy,hypnosis,naturopathy,osteopathy,reflexology,reiki,shiatsu,traditional_chinese_medicine,tuina,unani"
     79                                de.display_values = "Akkupunktur,Anthroposophische Medizin,Angewandte Kinesiologie,Aromatherapie,Ayurveda,Chiropraktik,Pflanzenheilkunde,Homöopathie,Hydrotherapie,Hypnose,Naturheilkunde,Osteopathie,Reflexologie,Reiki,Shiatsu,Traditionelle chinesische Medizin,Tuina,Unani"
     80                                values_searchable = "true"
     81                                values_sort = "true"
     82                        />
     83                        <reference ref="common_items" />
     84                </item>
     85        </group>
     86</presets>
     87
     88}}}