Skip to content

Commit f075f3b

Browse files
Removed area algorithm link.
1 parent 54320b0 commit f075f3b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

shapefile.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,7 @@ def __repr__(self):
9696

9797
def signed_area(coords):
9898
"""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.
99+
algorithm. A value >= 0 indicates a counter-clockwise oriented ring.
102100
"""
103101
xs, ys = map(list, zip(*coords))
104102
xs.append(xs[1])

0 commit comments

Comments
 (0)