Skip to content

Commit

Permalink
/deploy sit
Browse files Browse the repository at this point in the history
  • Loading branch information
sliu008 committed Oct 30, 2024
1 parent c68fd18 commit ca98637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion podaac/forge_py/open_cv_footprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def ensure_counter_clockwise(geometry):
# Function to ensure a single polygon is counter-clockwise
def correct_polygon(polygon):
# Correct the exterior ring if it's not counterclockwise
if not polygon.exterior.is_ccw:
if polygon.exterior.is_ccw:
exterior = list(polygon.exterior.coords)[::-1]
else:
exterior = list(polygon.exterior.coords)
Expand Down

0 comments on commit ca98637

Please sign in to comment.