Changes between Version 3 and Version 4 of Styles/RU-SubwayEntranceLabeling


Ignore:
Timestamp:
2018-10-15T18:15:28+02:00 (7 years ago)
Author:
freeExec
Comment:

fix overpass syntax

Legend:

Unmodified
Added
Removed
Modified
  • Styles/RU-SubwayEntranceLabeling

    v3 v4  
    11=== Kinda proof of concept in Overpass Turbo
    22Thanx to freeExec for helping with overpass ql code.
    3 https://overpass-turbo.eu/s/w6c | https://forum.openstreetmap.org/viewtopic.php?pid=684527#p684527
     3https://overpass-turbo.eu/s/CMl | https://forum.openstreetmap.org/viewtopic.php?pid=684527#p684527
    44
    55{{{
     
    1414  convert node
    1515    ::id = id(),
    16     ref = t[ref],
    17     colour = t[colour],
    18     label = "Выход № " + t[ref] + " со станций: " + r.set(t[name]);
     16    ref = t["ref"],
     17    colour = t["colour"],
     18    label = "Выход № " + t["ref"] + " со станций: " + r.set(t["name"]);
    1919  out;
    2020);