Changeset 595
- Timestamp:
- Nov 19, 2004, 10:08:52 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pyvolution/least_squares.py
r571 r595 21 21 #FIXME (Ole): Currently datapoints outside the triangular mesh are ignored. 22 22 # Is there a clean way of including them? 23 23 24 24 25 … … 71 72 72 73 # load in the .xya file 73 point_dict = load_xya_file(point_file) 74 try: 75 point_dict = load_xya_file(point_file) 76 except SyntaxError,e: 77 point_dict = load_xya_file(point_file,delimiter = ' ') 74 78 point_coordinates = point_dict['pointlist'] 75 79 point_attributes = point_dict['pointattributelist']
Note: See TracChangeset
for help on using the changeset viewer.