- Timestamp:
- Oct 11, 2006, 12:23:30 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/coordinate_transforms/redfearn.py
r3739 r3745 164 164 165 165 166 def convert_from_latlon_to_utm(latitudes=None, 166 def convert_from_latlon_to_utm(points=None, 167 latitudes=None, 167 168 longitudes=None, 168 points=None,169 169 false_easting=None, 170 170 false_northing=None): … … 195 195 utm_points = [] 196 196 if points == None: 197 198 197 assert len(latitudes) == len(longitudes) 199 198 points = map(None, latitudes, longitudes) 199 200 200 for point in points: 201 201 zone, easting, northing = redfearn(float(point[0]),
Note: See TracChangeset
for help on using the changeset viewer.