This is a static archive of our old OpenStreetMap Help Site. Please post any new questions and answers at community.osm.org.

osmfilter all speed cameras with related way

0

I'm successfully managed to filter all nodes of a specific type by using osmfilter:

osmfilter austria.o5m --keep="highway=speed_camera"

Now I have got a lot of nodes like this:

<node id="3906966442" lat="48.2975844" lon="14.2988663" version="1" timestamp="2015-12-23T18:18:11Z" changeset="36131585" uid="180830" user="flaimo">
    <tag k="highway" v="speed_camera"/>
    <tag k="maxspeed" v="50"/>
</node>

However in addition to the maxspeed value I'd also be interested in the name of the street where this node is attached too. Is there any way (except manual reverse lookup for every node) to fetch all the related street names? Using alternative tools or APIs (like Overpass) would be fine too.

asked 25 Apr '16, 09:07

hohl's gravatar image

hohl
21112
accept rate: 0%

Source code available on GitHub .