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

I am looking to form a Query-to-Map statement that will show all the Paths within a specified Bounding Box that have a given Hiking Route relationship (= "Lake Hopatcong Trail"). Would someone suggest the appropriate syntax?

If there is an alternate approach, I am "all ears".

--Thanks

asked 20 Jan '22, 15:44

Rob009's gravatar image

Rob009
565511
accept rate: 0%

edited 21 Jan '22, 15:07


A Reddit user suggested using "Overpass turbo" for this query. Here is a link to the query: https://overpass-turbo.eu/s/1fhW

/*
This query looks for nodes, ways and relations 
with the given key/value combination.
Choose your region and hit the Run button above!
*/
[out:json][timeout:25];
// gather results
(
  // query part
  relation["name"="Lake Hopatcong Trail"]({{bbox}});
);
// print results
out body;
>;
out skel qt;
permanent link

answered 21 Jan '22, 15:06

Rob009's gravatar image

Rob009
565511
accept rate: 0%

Your answer
toggle preview

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:

×483
×228
×179
×41
×4

question asked: 20 Jan '22, 15:44

question was seen: 1,276 times

last updated: 21 Jan '22, 15:07

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