Ignore:
Timestamp:
Oct 11, 2006, 12:23:30 PM (17 years ago)
Author:
ole
Message:

A few minor changes to convert_from_latlon_to_UTM to make run_karratha work

File:
1 edited

Legend:

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

    r3739 r3745  
    156156        lats = [lat_gong, lat_2]
    157157        longs = [lon_gong, lon_2]
    158         points, zone = convert_from_latlon_to_utm(lats, longs)
     158        points, zone = convert_from_latlon_to_utm(latitudes=lats, longitudes=longs)
    159159
    160160        assert allclose(points[0][0], 308728.009)
     
    183183       
    184184        try:
    185             points, zone = convert_from_latlon_to_utm(lats, longs)
     185            points, zone = convert_from_latlon_to_utm(latitudes=lats, longitudes=longs)
    186186        except ANUGAError:
    187187            pass
     
    206206        longs = [lon_gong, lon_2]
    207207        try:
    208             points, zone  = convert_from_latlon_to_utm(lats, longs)
     208            points, zone  = convert_from_latlon_to_utm(latitudes=lats, longitudes=longs)
    209209        except ANUGAError:
    210210            pass
Note: See TracChangeset for help on using the changeset viewer.