wtimme / OSM-Completionist

⛔️ DEPRECATED iOS companion app for OpenStreetMap that allows contributors to complete missing information
ISC License
18 stars 4 forks source link

Help to get it running #12

Closed tordans closed 4 years ago

tordans commented 4 years ago

I have this query in my overpass window, the test-page shows results.

natural=tree and ref!="" and type:node

However, the Map UI does not highlight the trees. Am I doing it wrong?

wtimme commented 4 years ago

Hey @tordans, thanks for testing the Overpass parser!

If I understood your query correctly, you are looking for all trees that have a ref tag set. From my understanding, the proper query would be

natural=tree and ref=*

You can see example results on overpass turbo. Does that help?

tordans commented 4 years ago

Thanks for the help. It's a bit different, it's "all trees that don't have a ref-tag (yet)". Looks like the overpass turbo query is natural=tree and ref is not null (or ref=*). I see the correct results in the preview now, but I still don't see the trees highlighted in the map view …!

wtimme commented 4 years ago

Glad to be of help! From my understanding,

all trees that don't have a ref-tag (yet)

should translate into the query

natural=tree and ref is null

When I enter this in the editor and go back to the map, I see the highlighted trees.

tordans commented 4 years ago

🤦‍♂ well, yes ;-D