Changes between Initial Version and Version 1 of Presets/IRS


Ignore:
Timestamp:
2016-01-12T22:28:15+01:00 (10 years ago)
Author:
Zverikk
Comment:

Moved from textual.ru

Legend:

Unmodified
Added
Removed
Modified
  • Presets/IRS

    v1 v1  
     1== A preset for tracing IRS imagery ==
     2
     3Original author: Ilya Zverev
     4
     5This preset was developed some years ago to simplify tagging traced elements with "source" tag. Not sure you should use this now, but it remains for historic reasons.
     6
     7=== The preset source ===
     8
     9{{{
     10#!preset
     11<presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0"
     12  author="Zverik" version="1.2"
     13  shortdescription="IRS presets"
     14  description="Presets for simpler IRS tracing" ru.description="Пресеты для быстрого обклацывания снимков IRS"
     15  link="http://wiki.openstreetmap.org/wiki/Космоснимки">
     16  <group name="IRS Highways" icon="styles/standard/transport/way/way_unclassified.svg">
     17    <item name="Road" type="way" icon="styles/standard/transport/way/way_unclassified.svg">
     18      <key key="highway" value="road"/>
     19      <key key="source" value="IRS"/>
     20    </item>
     21    <item name="Unclassified" type="way" icon="styles/standard/transport/way/way_unclassified.svg">
     22      <key key="highway" value="unclassified"/>
     23      <key key="source" value="IRS"/>
     24    </item>
     25    <item name="Residential" type="way" icon="styles/standard/transport/way/way_residential.svg">
     26      <key key="highway" value="residential"/>
     27      <key key="source" value="IRS"/>
     28    </item>
     29    <item name="Tertiary" type="way" icon="styles/standard/transport/way/way_tertiary.svg">
     30      <key key="highway" value="tertiary"/>
     31      <key key="source" value="IRS"/>
     32    </item>
     33    <item name="Secondary" type="way" icon="styles/standard/transport/way/way_secondary.svg">
     34      <key key="highway" value="secondary"/>
     35      <key key="source" value="IRS"/>
     36    </item>
     37    <item name="Railway" type="way" icon="styles/standard/transport/railway/rail.sv">
     38      <key key="railway" value="rail"/>
     39      <key key="source" value="IRS"/>
     40    </item>
     41  </group>
     42  <group name="IRS Natural" icon="presets/landuse.png">
     43    <item name="Lake" type="way" icon="presets/water.png">
     44      <key key="natural" value="water"/>
     45      <key key="source" value="IRS"/>
     46    </item>
     47    <item name="River" type="way" icon="presets/river.png">
     48      <key key="waterway" value="river"/>
     49      <key key="source" value="IRS"/>
     50    </item>
     51    <item name="Stream" type="way" icon="presets/river.png">
     52      <key key="waterway" value="stream"/>
     53      <key key="source" value="IRS"/>
     54    </item>
     55    <item name="Forest" type="way" icon="presets/landuse.png">
     56      <key key="natural" value="wood"/>
     57      <key key="source" value="IRS"/>
     58    </item>
     59    <item name="Wetland" type="way" icon="presets/landuse_water.png">
     60      <key key="natural" value="wetland"/>
     61      <key key="source" value="IRS"/>
     62    </item>
     63  </group>
     64  <item name="IRS" type="way">
     65    <key key="source" value="IRS"/>
     66  </item>
     67</presets>
     68}}}