Ignore:
Timestamp:
Sep 18, 2006, 5:37:19 PM (17 years ago)
Author:
ole
Message:

Got Karratha running again.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/coordinate_transforms/test_redfearn.py

    r3614 r3616  
    229229       
    230230        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)
    232232
    233233        assert allclose(points[0][0], 308728.009)
     
    255255
    256256        try:
    257             zone, points = convert_points_from_latlon_to_utm(points)            
     257            points, zone = convert_points_from_latlon_to_utm(points)           
    258258        except ANUGAError:
    259259            pass
     
    277277
    278278        try:
    279             zone, points = convert_points_from_latlon_to_utm(points)                        
     279            points, zone = convert_points_from_latlon_to_utm(points)           
    280280        except ANUGAError:
    281281            pass
Note: See TracChangeset for help on using the changeset viewer.