Skip to content

Instantly share code, notes, and snippets.

@JamesChevalier
Last active October 25, 2015 20:15
Show Gist options
  • Save JamesChevalier/9852785fbf379f330662 to your computer and use it in GitHub Desktop.
Save JamesChevalier/9852785fbf379f330662 to your computer and use it in GitHub Desktop.
It seems like the Overpass API does not return a complete result set

I'm using Overpass Turbo: http://overpass-turbo.eu/

This is the query I'm using to collect all places that are Admin Level 8 within California:

[out:json];
area['admin_level'='4']['name'='California'];
(relation['admin_level'='8'](area););
out;

That doesn't return all items, though. For example, Pacifica is not included.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment