We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54320b0 commit f075f3bCopy full SHA for f075f3b
shapefile.py
@@ -96,9 +96,7 @@ def __repr__(self):
96
97
def signed_area(coords):
98
"""Return the signed area enclosed by a ring using the linear time
99
- algorithm at:
100
- https://web.archive.org/web/20080209143651/http://cgafaq.info/wiki/Polygon_Area
101
- indicates a counter-clockwise oriented ring.
+ algorithm. A value >= 0 indicates a counter-clockwise oriented ring.
102
"""
103
xs, ys = map(list, zip(*coords))
104
xs.append(xs[1])
0 commit comments