Changeset 6250 in josm


Ignore:
Timestamp:
2013-09-24T08:20:50+02:00 (11 years ago)
Author:
stoecker
Message:

fix #9071 - fix route_master relation

Location:
trunk/data
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/data/defaultpresets.xml

    r6249 r6250  
    27142714            <label text="Edit Route master"/>
    27152715            <key key="type" value="route_master"/>
    2716             <combo key="route" text="Route type" values="train,subway,monorail,tram,bus,trolleybus,aerialway,ferry"/>
     2716            <combo key="route_master" text="Route type" values="train,subway,monorail,tram,bus,trolleybus,aerialway,ferry"/>
    27172717            <text key="name" text="Name"/>
    27182718            <text key="ref" text="Reference"/>
  • trunk/data/tagchecker.cfg

    r6196 r6250  
    8383*    : W : highway == * && natural == *                        # unusual tag combination (highway & natural)
    8484
    85 *    : W : natural == water && leisure == swimming_pool       # natural water used for swimming pool
    86 *    : W : natural == water && amenity == swimming_pool       # natural water used for swimming pool
     85*    : W : natural == water && leisure == swimming_pool        # natural water used for swimming pool
     86*    : W : natural == water && amenity == swimming_pool        # natural water used for swimming pool
    8787
    88 *    : W : /\d+/ == *                                         # numerical key
     88*    : W : /\d+/ == *                                          # numerical key
     89
     90# see #9071
     91relation : W : type == route_master && route_master != *       # route_master relation without route_master=*
    8992
    9093########################################
     
    9497# see ticket #5017
    9598# Taginfo query: select keypairs.key1, keypairs.key2, keypairs.count_all, keys.count_all, cast(keypairs.count_all as real)/keys.count_all as from_fraction_all from keys, keypairs where key1='waterway' and keys.key=keypairs.key2 and (key1<>'highway' or keypairs.count_all>12000) and (key1<>'railway' or keypairs.count_all>3000) and (key1<>'waterway' or keypairs.count_all>800) and key2 not like '%:%' and from_fraction_all>0.97 and 1 union select keypairs.key2, keypairs.key1, keypairs.count_all, keys.count_all, cast(keypairs.count_all as real)/keys.count_all as from_fraction_all from keys, keypairs where key2='waterway' and keys.key=keypairs.key1 and (key2<>'highway' or keypairs.count_all>12000) and (key2<>'railway' or keypairs.count_all>3000) and (key2<>'waterway' or keypairs.count_all>800) and key1 not like '%:%' and from_fraction_all>0.97 and 1 order by keypairs.count_all desc limit 1000;
    96 *    : W : incline              == * && highway != *                                   # incline without highway
     99*    : W : incline              == * && highway != * && railway != *                   # incline without highway or railway
    97100way  : W : junction             == * && highway != *                                   # junction without highway
    98101*    : W : lanes                == * && highway != *                                   # lanes without highway
     
    104107*    : W : motorroad            == * && highway != *                                   # motorroad without highway
    105108*    : W : ntd_id               == * && highway != *                                   # ntd_id without highway
    106 *    : W : oneway               == * && highway != *                                   # oneway without highway
     109*    : W : oneway               == * && highway != * && railway != *                   # oneway without highway or railway
    107110*    : W : sac_scale            == * && highway != *                                   # sac_scale without highway
    108111*    : W : segregated           == * && highway != *                                   # segregated without highway
Note: See TracChangeset for help on using the changeset viewer.