Prevent Overpass API from returning nodes and show ways only -
Prevent Overpass API from returning nodes and show ways only -
i'm trying roads around point. i'm using next query:
( way (around:300,50.7913547,-1.0944082) ["highway"~"^(primary|secondary|tertiary|residential)$"] ["crossing"!~"."] ["name"]; >; ); out;
i added crossing
exclusion because kept including "markers" crossings, , i'm interested in roads.
however seems ignoring crossing , still plotting markers on map, rather showing road outlines. this can seen here.
these "nodes" don't want have tags:
crossing=zebra highway=crossing
which should fail regex query, doesn't.
how homecoming road plot lines, , none of these nodes/markers?
sorry if terminology wrong, i'm new this
the filter criterion tried utilize apply way rather nodes. usually, way wouldn't have crossing
tag, filter didn't have much of effect on final result. using >;
of nodes tags shown in final result again.
i removed >;
in query , replaced out;
out geom;
output node lat/lon position without tags.
you can seek out using next link (currently pointing overpass turbo beta)
link
overpass-api
Comments
Post a Comment