Changeset 2351 for inundation/utilities
- Timestamp:
- Feb 7, 2006, 5:14:55 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/utilities/polygon.py
r2241 r2351 58 58 polygon = ensure_numeric(polygon, Float) 59 59 except: 60 msg = 'Polygon could not be converted to Numeric array'60 msg = 'Polygon %s could not be converted to Numeric array' %(str(polygon)) 61 61 raise msg 62 62 … … 70 70 71 71 indices, count = separate_points_by_polygon(points, polygon, 72 closed, verbose) 72 closed=closed, 73 verbose=verbose) 73 74 74 75 if one_point: … … 111 112 112 113 indices, count = separate_points_by_polygon(points, polygon, 113 closed, verbose) 114 closed=closed, 115 verbose=verbose) 114 116 115 117 if one_point:
Note: See TracChangeset
for help on using the changeset viewer.