- Timestamp:
- Oct 11, 2006, 12:23:30 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/coordinate_transforms/test_redfearn.py
r3739 r3745 156 156 lats = [lat_gong, lat_2] 157 157 longs = [lon_gong, lon_2] 158 points, zone = convert_from_latlon_to_utm(lat s,longs)158 points, zone = convert_from_latlon_to_utm(latitudes=lats, longitudes=longs) 159 159 160 160 assert allclose(points[0][0], 308728.009) … … 183 183 184 184 try: 185 points, zone = convert_from_latlon_to_utm(lat s,longs)185 points, zone = convert_from_latlon_to_utm(latitudes=lats, longitudes=longs) 186 186 except ANUGAError: 187 187 pass … … 206 206 longs = [lon_gong, lon_2] 207 207 try: 208 points, zone = convert_from_latlon_to_utm(lat s,longs)208 points, zone = convert_from_latlon_to_utm(latitudes=lats, longitudes=longs) 209 209 except ANUGAError: 210 210 pass
Note: See TracChangeset
for help on using the changeset viewer.