You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
my_water = next(w for w in planet_240617("a[natural=water]") if w.id == 17140040)
islands = planet_240617("a[place=island,islet]").ways
islands_in_water = islands.within(my_water)
The function seems to run forever and never return.
The culprit is an invalid multipolygon relation (only a node as a member) that should arguably never have been returned when I called ("a[natural=water]").
The text was updated successfully, but these errors were encountered:
Invalid multipolygon relations are currently responsible for several issues (#29, #30, clarisma/geodesk#52) -- gol build should remove (or fix) them, we'll address this in clarisma/gol-tool#109, which should be part of the next release of the GOL Tool.
Try this:
The function seems to run forever and never return.
The culprit is an invalid multipolygon relation (only a node as a member) that should arguably never have been returned when I called
("a[natural=water]")
.The text was updated successfully, but these errors were encountered: