- Timestamp:
- Oct 11, 2006, 12:23:30 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/geospatial_data/geospatial_data.py
r3739 r3745 295 295 data_points, 296 296 points_are_lats_longs): 297 297 298 if geo_reference is not None: 298 299 msg = """A georeference is specified yet latitude and longitude 299 300 are also specified!""" 300 301 raise ValueError, msg 302 301 303 if data_points is not None and not points_are_lats_longs: 302 304 msg = """Data points are specified yet latitude and … … 324 326 raise ValueError, msg 325 327 326 data_points, zone = convert_from_latlon_to_utm(latitudes, longitudes) 328 data_points, zone = convert_from_latlon_to_utm(latitudes=latitudes, 329 longitudes=longitudes) 327 330 328 331 return data_points, Geo_reference(zone=zone)
Note: See TracChangeset
for help on using the changeset viewer.