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

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'