Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
gboeing committed Dec 25, 2023
1 parent 47ff456 commit 657dd73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion osmnx/utils_geo.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,8 @@ def _consolidate_subdivide_geometry(geometry):
):
geometry = geometry.convex_hull

# if geometry area exceeds max size, subdivide it into smaller sub-polygons
# if geometry area exceeds max size, subdivide it into smaller subpolygons
# that are no greater than settings.max_query_area_size in size
if geometry.area > mqas:
geometry = _quadrat_cut_geometry(geometry, quadrat_width=np.sqrt(mqas))

Check warning on line 280 in osmnx/utils_geo.py

View check run for this annotation

Codecov / codecov/patch

osmnx/utils_geo.py#L280

Added line #L280 was not covered by tests

Expand Down

0 comments on commit 657dd73

Please sign in to comment.