python-overpy
python-overpy copied to clipboard
Python Wrapper to access the Overpass API
Hi, I am trying to query the data of a specific osm file from my hard disk. Is it possible to do so directly using overpy without uploading the osm...
Hi, I am using overpy succesfully to make queries etc. I wonder that is there a way to update(write) to .osm file or maybe query for this to local map(.bz2...
##### Issue type - Feature ##### Summary Replace XML_PARSER_DOM and XML_PARSER_SAX with an enumerator. If this is not a perfect use case for a enum class, I don't what is.
##### Issue type - Feature ##### Summary Add `Result.to_json()`, producing a serializable dictionary which can be used for re-creating the Result later. Calling code must handle serializing `Decimal` instances into...
Considering #75, what do you think of having a `query_raw`, almost the same as `query`, but after doing the request, and parsing json/xml return the raw string response from the...
##### Issue type - Feature ##### Summary Add experimental support to export the result data in different file formats. - Refs #12 - Refs #13
Maybe add some documentation on the custom url parameter? Didn't find it in documentation, but only in #73 E.g. something like this _ Per default overpy uses the public main...
https://github.com/DinoTools/python-overpy/blob/8aa4bafc8e9b336d4f8da7c993ca545494a0e5a9/overpy/__init__.py#L285 `for element in other_collection_map[element_type]:` should be `for element in other_collection_map[element_type].values():`
Add an API to export the result data. This might help to speed up the development of proof of concepts.
Is there a way to write the `Result` object to an XML file as it might come from [geofabrik](http://download.geofabrik.de)? Eventually I'd like to write code that would process the downloaded...