I'm trying to get the center point with Python and overpy:
but unlike to Overpass Turbo, where I get the center point 49.2559306 / 8.4525152 overpy just returns all nodes: result.nodes is empty and result.ways contains
asked 07 Oct '17, 17:19 Druzhba |
Overpass appends a center element to the way:
You'll have to see if overpy supports this element or not. It seems to: https://python-overpy.readthedocs.io/en/latest/api.html#elements answered 07 Oct '17, 20:08 maxerickson |