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

Hello, perhaps a simple question as I'm new to the coding here:

I'm looking to build a query to search for memorials/monuments that contains a term like "synagoge" or "ehemalige Synagoge" (Case insesitive search) So not an actual Synagoge itself, but a memorial to a former 'synagoge' that may be in the title, or the inscription of the plaque. Looking for a query to run in overpass that will allow me to only search monuments/memorials by adding a keyword (in this case looking for monuments to former synagogues in Germany)

Would like to apply this query to a number of texts for descriptions/inscriptions of memorials in Germany.

asked 03 Dec '22, 21:20

shaughi's gravatar image

shaughi
11112
accept rate: 0%


As a starter I tried the following overpass query:

[out:json][timeout:25];
// fetch area “Berlin” to search in
{{geocodeArea:Berlin}}->.searchArea;
// gather results
(
 node["historic"="memorial"]["description"~"synagoge",i](area.searchArea);
 way["historic"="memorial"]["description"~"synagoge",i](area.searchArea);
 relation["historic"="memorial"]["description"~"synagoge",i](area.searchArea);
);
// print results
out body;
>;
out skel qt;

see: http://overpass-turbo.eu/s/1oFM

Now this query relies on the word "Synagoge" (case insensitive) being used in the description tag, so it won't find an object where there is no "Synagoge in the description tag.

So I tried a second query, this time checking for the inscription tag finding some more places:

[out:json][timeout:25];
// fetch area “Berlin” to search in
{{geocodeArea:Berlin}}->.searchArea;
// gather results
(
node["historic"="memorial"]["inscription"~"synagoge",i](area.searchArea);
way["historic"="memorial"]["inscription"~"synagoge",i](area.searchArea);
relation["historic"="memorial"]["inscription"~"synagoge",i](area.searchArea);
);
// print results
out body;
>;
out skel qt;

see: http://overpass-turbo.eu/s/1oFP

Edit: Ok, found a way to combine those two searches, a UNION in Overpass QL (maybe there is a better way but this works) - so searching for objects that are tagged as historic=memorial and have the word Synagoge (case insensitive) either in description or inscription (or in both):

[out:json][timeout:25];
// fetch area “Berlin” to search in
{{geocodeArea:Berlin}}->.searchArea;
// gather results
(
node["historic"="memorial"]["description"~"synagoge",i](area.searchArea);
node["historic"="memorial"]["inscription"~"synagoge",i](area.searchArea);
way["historic"="memorial"]["description"~"synagoge",i](area.searchArea);
way["historic"="memorial"]["inscription"~"synagoge",i](area.searchArea);
relation["historic"="memorial"]["description"~"synagoge",i](area.searchArea);
relation["historic"="memorial"]["inscription"~"synagoge",i](area.searchArea);
);
// print results
out body;
>;
out skel qt;

see: https://overpass-turbo.eu/s/1oFU

permanent link

answered 05 Dec '22, 09:22

Spiekerooger's gravatar image

Spiekerooger
3.1k22356
accept rate: 16%

edited 05 Dec '22, 09:47

Thanks! I think this does it. The only addition would be to search the name as some are listed very simply. Wiesbaden, for example produces this result

[out:json][timeout:25];

// fetch area “Wiesbaden” to search in {{geocodeArea:Wiesbaden}}->.searchArea; // gather results ( node["historic"="memorial"]"description"~"synagoge",i; node["historic"="memorial"]"inscription"~"synagoge",i; node["historic"="memorial"]"name"~"synagoge",i; way["historic"="memorial"]"description"~"synagoge",i; way["historic"="memorial"]"inscription"~"synagoge",i; way["historic"="memorial"]"name"~"synagoge",i; relation["historic"="memorial"]"description"~"synagoge",i; relation["historic"="memorial"]"inscription"~"synagoge",i; relation["historic"="memorial"]"name"~"synagoge",i; ); // print results out body;

; out skel qt;

https://overpass-turbo.eu/s/1oGj

Or is the name search not the right way to go here? When I try to change the geocodeArea to a larger region, like Berlin or Hessen, I get a time out error. Ultimately, I'd like to run this query for the entire country of Germany.

Thanks again for the help!

permanent link

answered 05 Dec '22, 11:59

shaughi's gravatar image

shaughi
11112
accept rate: 0%

Note: Increased the timeout and was able to query larger area. ! Let me know if the name search is the right way to go, but it appear to work!

permanent link

answered 05 Dec '22, 12:13

shaughi's gravatar image

shaughi
11112
accept rate: 0%

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:

×3

question asked: 03 Dec '22, 21:20

question was seen: 670 times

last updated: 05 Dec '22, 12:13

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