osm-python-tools
osm-python-tools copied to clipboard
A library to access OpenStreetMap related services
Hi, I just created a fresh Anaconda environment, installed pip, OSMPythonTools, ipykernel and pandas. But when I try the example in readme.md `from OSMPythonTools.api import Api api = Api() way...
I was trying to find all runways within a bounding box, and noticed that I get every runway (mapped as a way with `aeroway=runway`) twice. Here's a test code: ```python...
Why am I getting this error while following the README examples? I was able to use the overpass module and the Api module but cannot use the Nominatim class. I'm...
I just found that we can't get the geometry of some relations, say relation(116278). As in element.py, the code for getting the geometry of a relation is as follows: ```python...
Hi. I'm working on https://github.com/dpriskorn/hiking_trail_matcher/issues/19 and just added this library to check tags on relations. Unfortunately it spews out a lot of WARNING lines like this despite I set the...
Maybe I didn't understand how to do it, but it would be very useful to be able to pass a language-related parameter in Nominatim. Something similar to: `loc = nominatim.query(*coordinates,...
Hi @mocnik-science, thanks a lot for this very useful python package. I am using OSMPythonTools in a server context and recognized, that there are some really heavy dependencies: `matplotlib`, `numpy`...
For example: ```python from OSMPythonTools.api import Api api = Api() way = api.query('relation/3629242') way.centerLat() way.centerLon() ``` I understand that it is probably not trivial and some computation would have to...
I recently updated from version 0.2.8 to 0.3.5 and noticed a significant increase in querying time for overpass queries with the new version. Testing around with different longer queries showed...
When i import the Api by this command: ```python from OSMPythonTools.api import Api ``` I have this exception: ```python Traceback (most recent call last): File "", line 1, in File...