NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum

Hello everybody,

I try to create a request to find all junction next to way which has the tag landuse=meadow in a certain radius.

// Find nodes up to 1000m  around a point
node(around:1000,49.0809183333  ,9.2923300000)
->.aroundnodes;
way(bn.aroundnodes)["junction"]["roundabout"]["landuse"="meadow"]->.allways;
// determine nodes belonging to found ways
    node(w.allways)->.waynodes;
    ( 
    // determine intersection of all ways' nodes and nodes around center point  
    node.waynodes.aroundnodes;  
    // and return ways (intersection is just a workaround for a bug)  
    way.allways.allways; 
    );
out;

Where is my mistake? Help is much appreciated.

asked 26 Jun '18, 08:37

Gustav9999's gravatar image

Gustav9999
11223
accept rate: 0%

1
(26 Jun '18, 14:55) SK53 ♦

Yeah but I dont receive any help, sugesstions or an answer. What a great admin.

(27 Jun '18, 06:15) Gustav9999

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×362
×228

question asked: 26 Jun '18, 08:37

question was seen: 727 times

last updated: 27 Jun '18, 06:15

NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum