Changes between Initial Version and Version 1 of Presets/Toll_Infrastructure


Ignore:
Timestamp:
2020-11-15T07:40:16+01:00 (5 years ago)
Author:
mdelatorre
Comment:

Initial commit.

Legend:

Unmodified
Added
Removed
Modified
  • Presets/Toll_Infrastructure

    v1 v1  
     1== Toll Infrastructure presets ==
     2
     3
     4The following is a set of presets for tagging toll infrastructure on highway=*. In particular, it will help you tag barrier=toll_booth and highway=toll_gantry.
     5
     6== The preset itself ==
     7
     8{{{
     9#!preset
     10<?xml version="1.0" encoding="UTF-8"?>
     11
     12
     13<presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0"
     14                author="Manuel de la Torre"
     15                icon="presets/barrier/toll_station.svg"
     16                link="https://josm.openstreetmap.de/wiki/Presets/Toll_Facilities"
     17                shortdescription="Toll Facilities"
     18                description="Presets for tagging toll-booths and toll-gantries"
     19                version="1.[[revision]]_[[date]]">
     20
     21        <!--
     22        TODO:
     23        - more translations
     24    - more e-toll countries
     25        -->
     26   
     27  <group icon="presets/barrier/toll_station.svg" name="Toll Facilities">
     28
     29    <chunk id="common_items">
     30        <preset_link preset_name="Contact (Common Schema)" />
     31        <space/>
     32    </chunk>
     33
     34    <chunk id="opening_hours">
     35        <combo key="opening_hours" text="Opening Hours" delimiter="|" values="24/7|08:30-12:30,15:30-20:00|Sa-Su 00:00-24:00|Mo-Su 09:00-21:00|Mo-Sa 08:00-18:00|Mo-Fr 09:00-17:00|Mo-Fr 08:30-20:00; Sa,Su 08:00-15:00; PH off|Mo-Fr 08:30-20:00; Tu-Su 08:00-15:00; Sa 08:00-12:00|Mo-Su 08:00-18:00; Apr 10-15 off; Jun 08:00-14:00; Aug off; Dec 25 off|sunrise-sunset|Su 10:00+|week 01-53/2 Fr 09:00-12:00; week 02-52/2 We 09:00-12:00" values_no_i18n="true" values_sort="false" />
     36    </chunk>
     37   
     38    <chunk id="common_creditcards">
     39      <label text="Credit Cards"
     40          es.text="Tarjetas de Crédito"/>
     41      <checkgroup columns="2">
     42        <check key="payment:american_express" text="Amex" default="off" />
     43        <check key="payment:discover_card" text="Discover" default="off" />
     44        <check key="payment:mastercard" text="MasterCard" default="off" />
     45        <check key="payment:Visa" text="Visa" default="off" />
     46
     47      </checkgroup>
     48    </chunk>
     49
     50    <chunk id="common_debitcards">
     51      <label text="Debit Cards"
     52          es.text="Tarjetas de Débito"/>
     53      <checkgroup columns="2">
     54        <check key="payment:maestro" text="Maestro" es.text="Efectivo" default="off" />
     55        <check key="payment:visa_electron" text="Visa Electron" default="off" />
     56        <check key="payment:visa_debit " text="Visa debit" es.text="Visa débito" default="off" />
     57      </checkgroup>
     58    </chunk>
     59   
     60    <chunk id="common_payment">
     61      <label text="Payment methods:"
     62          es.text="Formas de pago:" />
     63      <check key="payment:cash" delete_if_empty="true"
     64             text="Cash"
     65          es.text="Efectivo" />
     66      <reference ref="common_creditcards" />
     67      <reference ref="common_debitcards" />
     68    </chunk>
     69
     70    <item type="node,closedway" icon="toll_booth_16px.svg" name="Toll Booth">
     71        <label text="Tag a Toll Booth station" />
     72        <key key="barrier" value="toll_booth" />
     73        <text key="name" text="Toll booth name" default=""  />
     74        <text key="ref" text="Toll booth ID" default=""  />
     75        <text key="operator" text="Operator" default=""  />
     76        <optional>
     77            <text key="lanes" text="Lanes" default=""  />
     78            <text key="maxheight" text="Max Height" default=""  />
     79        </optional>
     80        <link wiki="Tag:barrier=toll_booth" />
     81        <reference ref="common_payment" />
     82        <reference ref="opening_hours" />
     83        <reference ref="common_items" />
     84    </item>
     85    <item type="node" icon="toll_gantry.svg" name="Toll Gantry / Toll Bridge">
     86        <label text="Tag a Toll Gantry station" />
     87        <key key="highway" value="toll_gantry" />
     88        <optional>
     89            <text key="operator" text="Operator" default=""  />
     90            <text key="maxheight" text="Max Height" default=""  />
     91        </optional>
     92        <space />
     93        <label text="Consider tagging the eToll payment method" />
     94        <link wiki="Tag:highway=toll_gantry" />
     95        <reference ref="common_items" />
     96    </item>
     97
     98    <group name="eToll Payment" icon="presets/money/bank.svg">
     99
     100      <group name="North America" icon="presets/place/capital.svg">
     101       
     102        <item type="node" icon="https://upload.wikimedia.org/wikipedia/commons/f/fc/Flag_of_Mexico.svg" icon_size="16" name="Mexico">
     103          <label text="If all TAGs are accepted check only MultiTAG." />
     104          <check key="payment:multitag" icon="multitag.png" icon_size="25" text="MultiTAG" delete_if_empty="true" />
     105          <space />
     106          <checkgroup columns="2">
     107            <check key="payment:iave" text="IAVE Telepasaje" delete_if_empty="true" />
     108            <check key="payment:epass" text="E-Pass"  delete_if_empty="true" />
     109            <check key="payment:pase" text="PASE Urbano" delete_if_empty="true" />
     110            <check key="payment:quickpass" text="Quickpass"  delete_if_empty="true" />
     111            <check key="payment:televia" text="TeleVIA"  delete_if_empty="true" />
     112            <check key="payment:viapass" text="ViaPass" delete_if_empty="true" />   
     113          </checkgroup> 
     114          <link wiki="Key:payment" />
     115          <reference ref="common_payment" />
     116        </item>
     117       
     118        <item type="node" icon="https://upload.wikimedia.org/wikipedia/en/a/a4/Flag_of_the_United_States.svg" icon_size="16" name="USA">
     119          <label text="US e-Toll Systems" />
     120          <space />
     121          <checkgroup columns="2">
     122            <check key="payment:e-zpass" text="E-Zpass"  delete_if_empty="true" />
     123            <check key="payment:good_to_go" text="Good to Go (WA)" delete_if_empty="true" />
     124            <check key="payment:pikepass" text="Pikepass (OK)" delete_if_empty="true" />
     125            <check key="payment:nc_quick_pass" text="QuickPass (NC)" delete_if_empty="true" />
     126            <check key="payment:k-tag" text="K-Tag (KS)"  delete_if_empty="true" />
     127            <check key="payment:i-pass" text="I-Pass (IL)"  delete_if_empty="true" />
     128            <check key="payment:peach_pass" text="PeachPass (GA)"  delete_if_empty="true" />
     129            <check key="payment:sunpass" text="SunPass (FL)"  delete_if_empty="true" />
     130            <check key="payment:fastrak" text="FasTrak (CA)"  delete_if_empty="true" />
     131          </checkgroup>
     132          <link wiki="Key:payment" />
     133        </item>
     134
     135      </group>
     136
     137    </group>
     138
     139  </group>
     140</presets>
     141
     142}}}