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

Hello community,

I wondered if anyone could tell me if it is possible to find a list of all the places in the world that are named after a specific person? The person in question is Italian, so there are various 'corso', 'piazza', 'via' + name in Italy but I would like to search globally and export that data. I feel like it should be easy but I'm new to the world of mapping...

asked 31 Oct '16, 18:38

Amy%20K's gravatar image

Amy K
26112
accept rate: 0%


There are many ways to achieve this. You could download the OSM data for the whole world - the so-called "planet file" - and then use a search program on that (for example osmgrp) or load the data into a database and search there. That would give you the maximum flexibility but take a lot of time and resources.

Another option is the "overpass turbo" database which lets you make certain queries directly to a server without having to load the data yourself. A query for "anything where the name contains 'Botticelli'" would look like this:

[out:json][timeout:25];
(
  node["name"~"Botticelli"];
  way["name"~"Botticelli"];
  relation["name"~"Botticelli"];
);
out body;
>;
out skel qt;

Try it out!

If you read up a bit on Overpass Turbo you will be able to refine your query to, for example, query only for buildings or only for streets.

permanent link

answered 31 Oct '16, 22:35

Frederik%20Ramm's gravatar image

Frederik Ramm ♦
82.5k927201273
accept rate: 23%

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:

×111
×54

question asked: 31 Oct '16, 18:38

question was seen: 3,012 times

last updated: 31 Oct '16, 22:35

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