- Timestamp:
- Sep 18, 2006, 5:37:19 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/coordinate_transforms/test_redfearn.py
r3614 r3616 229 229 230 230 points = [[lat_gong, lon_gong], [lat_2, lon_2]] 231 zone, points= convert_points_from_latlon_to_utm(points)231 points, zone = convert_points_from_latlon_to_utm(points) 232 232 233 233 assert allclose(points[0][0], 308728.009) … … 255 255 256 256 try: 257 zone, points = convert_points_from_latlon_to_utm(points)257 points, zone = convert_points_from_latlon_to_utm(points) 258 258 except ANUGAError: 259 259 pass … … 277 277 278 278 try: 279 zone, points = convert_points_from_latlon_to_utm(points)279 points, zone = convert_points_from_latlon_to_utm(points) 280 280 except ANUGAError: 281 281 pass
Note: See TracChangeset
for help on using the changeset viewer.