Alexandre Domingues
Results
2
issues of
Alexandre Domingues
Commit https://github.com/mvexel/overpass-api-python-wrapper/commit/603b7ec1818befa780eb6f0389eb7b71db17dcfe which was merged to master has broken the library when dealing with geojson data. It makes the following, wrong assumptions: - Ways and Relations contain a `geometry` field:...
The asserts on lines 30 and 63, i.e. `assert isinstance(coordinates, list)` should also accept tuples, i.e. `assert isinstance(coordinates, (list,tuple))` Since tuples are a valid format on GeoJson and some libraries...