Skip to content

Commit

Permalink
Update fence.py (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
k2shah authored Oct 20, 2023
1 parent d28c003 commit c88d4cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wadl/lib/fence.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def findGeometries(self, placemark):
self.getUTMpoly(placemark.geometry)
if isinstance(placemark.geometry, geometry.MultiPolygon):
# print("found MultiPolygon")
for poly in placemark.geometry:
for poly in placemark.geometry.geoms:
self.getUTMpoly(poly.exterior)
else:
print(placemark.geometry, " object has no handler")
Expand Down

0 comments on commit c88d4cd

Please sign in to comment.