Async client for the Overpass API
Project description
aio-overpass
A client for the Overpass API, a read-only API that serves up custom selected parts of OpenStreetMap data. It is optimized for data consumers that need a few elements within a glimpse or up to roughly 10 million elements in some minutes, both selected by search criteria like location, type of objects, tag properties, proximity, or combinations of them. To make use of it, you should familiarize yourself with Overpass QL, the query language used to select the elements that you want.
Contents
See also
- An overview of modules, classes and functions can be found in the API reference.
- The version history is available in CHANGELOG.md.
- Contributor guide is forthcoming :construction:
Features
- Asynchronous requests using aiohttp
- Concurrent queries
- Respects rate limits
- Fault tolerance through (customizable) retries
- Extensions
Getting Started
pip install aio-overpass
pip install aio-overpass[shapely, networkx, joblib]
poetry add aio-overpass
poetry add aio-overpass[shapely, networkx, joblib]
Choosing Extras
This library can be installed with a number of optional extras.
-
Install no extras, if you're fine with
dict
result sets. -
Install the
shapely
extra, if you would like the convenience of typed OSM elements. It is also useful if you are interested in elements' geometries, and either already use Shapely, or want a simple way to export GeoJSON or WKT.- This includes the
pt
module to make it easier to interact with public transportation routes. Something seemingly trivial like listing the stops of a route can have unexpected pitfalls, since stops can have multiple route members, and may have a range of different tags and roles. This submodule will clean up the relation data for you.
- This includes the
-
Install the
networkx
extra to enable thept_ordered
module, if you want a route's path as a simple line from A to B. It is hard to do this consistently, mainly because ways are not always ordered, and stop positions might be missing. You can benefit from this submodule if you wish to- render a route's path between any two stops
- measure the route's travelled distance between any two stops
- validate the order of ways in the relation
- check if the route relation has gaps
-
Install the
joblib
extra to speed uppt_ordered.collect_ordered_routes
, which can benefit greatly from parallelization.
Basic Usage
There are three basic steps to fetch the spatial data you need:
-
Formulate a query
- Either write your own custom query, f.e.
Query("node(5369192667); out;")
, - or use one of the
Query
subclasses, f.e.SingleRouteQuery(relation_id=1643324)
.
- Either write your own custom query, f.e.
-
Call the Overpass API
- Prepare your client with
client = Client(user_agent=...)
. - Use
await client.run_query(query)
to fetch the result set.
- Prepare your client with
-
Collect results
- Either access the raw result dictionaries with
query.result_set
, - or use a collector, f.e.
collect_elements(query)
to get a list of typedElements
. - Collectors are often specific to queries -
collect_routes
requires aRouteQuery
, for instance.
- Either access the raw result dictionaries with
Example
Results as Dictionaries
from aio_overpass import Client, Query
query = Query("way(24981342); out geom;")
client = Client()
await client.run_query(query)
query.result_set
{
# ...
"elements": [
{
"type": "way",
"id": 24981342,
# ...
"tags": {
"addr:city": "Hamburg",
"addr:country": "DE",
"addr:housename": "Elbphilharmonie",
# ...
},
}
],
}
Results as Objects
from aio_overpass.element import collect_elements
elems = collect_elements(query)
elems[0].tags
{
"addr:city": "Hamburg",
"addr:country": "DE",
"addr:housename": "Elbphilharmonie",
# ...
}
Results as GeoJSON
import json
json.dumps(elems[0].geojson, indent=4)
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
9.9832434,
53.5415472
],
...
]
]
},
"properties": {
"id": 24981342,
"type": "way",
"tags": {
"addr:city": "Hamburg",
"addr:country": "DE",
"addr:housename": "Elbphilharmonie",
...
},
...
},
"bbox": [
9.9832434,
53.540877,
9.9849674
53.5416212,
]
}
Motivation
Goals
- A small and stable set of core functionality.
- Good defaults for queries and retrying.
- Room for extensions that simplify querying and/or processing of spatial data in specific problem domains.
- Sensible and spec-compliant GeoJSON exports for all objects that represent spatial features.
- Detailed documentation that supplements learning about OSM and the Overpass API.
Non-Goals
- Any sort of Python interface to replace writing Overpass QL code.
- Integrating other OSM-related services (like the OSM API or Nominatim)
- Command line interface
Related Projects
- Overpass API
- Overpass Turbo, the best choice to prototype your queries in a browser
- Folium, which can be used to visualize GeoJSON on Leaflet maps
- OSMnx, which is specialized on street networks
- overpass-api-python-wrapper, another Python client for the Overpass API
- overpy, another Python client for the Overpass API
- OSMPythonTools, a Python client for OSM-related services
- overpassify, a Python to Overpass QL transpiler
License
Distributed under the MIT License. See LICENSE
for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for aio_overpass-0.1.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0dfa6b95b1a9eb43704aab1c4abc0aff3e37c05f95df817df8b6f92529d681bc |
|
MD5 | 7a2fc11e926177ea04cc2b7d26e7ca6f |
|
BLAKE2b-256 | d24b9b45566d7b90bdf6a728f069c73f0952a968b7f1c125fc1d9782bc36087a |