fix issue when querying within a polygon

The `parse_query` function checked whether the `query` parameter was of type `Polygon` or `MultiPolygon`, while the underlying library expected a `GeoDataFrame` (which is also what `get_perimeter` returns).
This commit is contained in:
mei-se 2021-08-29 16:23:50 +02:00 committed by GitHub
parent aa1376a2a3
commit f52d3e63ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,7 +106,7 @@ def plot_shapes(shapes, ax, vsketch = None, palette = None, **kwargs):
# Parse query (by coordinates, OSMId or name)
def parse_query(query):
if isinstance(query, (Polygon, MultiPolygon)):
if isinstance(query, GeoDataFrame):
return 'polygon'
elif isinstance(query, tuple):
return 'coordinates'