Skip to content

Commit

Permalink
Use ccw polygons, please.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelleerilee committed May 22, 2020
1 parent bb4cfa2 commit a65184e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

# PySTARE Notes

## 2020-05-22 0.4.1 Tweaked a test case.

## 2020-05-22 0.4.0 Add non convex hull routine.

## 2020-05-01 0.3.6 Add spatial_ helper routines.
Expand Down
4 changes: 2 additions & 2 deletions examples/example-viz-3.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ def make_nc_hull(lat0,lon0,resolution0):
# resolution = 12
resolution = 13 # Lost some triangles! Needed to increase ntri0!
resolution5 = resolution;
lat5 = np.array([ -2, -2, -1, -1.5, -1], dtype=np.double)
lon5 = np.array([ 0,1,1,0.5,0], dtype=np.double)
lat5 = np.array([ -2, -2, -1, -1.5, -1], dtype=np.double)[::-1]
lon5 = np.array([ 0,1,1,0.5,0], dtype=np.double)[::-1]
lats5,lons5,triang5,hull5 = make_nc_hull(lat5,lon5,resolution5)
# lats5,lons5,triang5,hull5 = make_hull(lat5,lon5,resolution5,ntri0)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def run(self):

setup(
name='pystare',
version='0.4.0',
version='0.4.1',
description="",
cmdclass={'build_py': build_py},
long_description=LONG_DESCRIPTION,
Expand Down

0 comments on commit a65184e

Please sign in to comment.