Changeset 5739
- Timestamp:
- Sep 5, 2008, 3:39:00 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/geospatial_data/geospatial_data.py
r5730 r5739 248 248 249 249 if not isinstance(geo_reference, Geo_reference): 250 # FIXME (Ole): This exception will be raised if geo_reference is None 250 # FIXME (Ole): This exception will be raised even 251 # if geo_reference is None. Is that the intent Duncan? 251 252 msg = 'Argument geo_reference must be a valid Geo_reference \n' 252 253 msg += 'object or None.' … … 393 394 return self.geo_reference.get_absolute(self.data_points) 394 395 elif geo_reference is not None: 395 return geo_reference.change_points_geo_ref \ 396 (self.data_points, 397 self.geo_reference) 396 return geo_reference.change_points_geo_ref(self.data_points, 397 self.geo_reference) 398 398 else: 399 399 # If absolute is False
Note: See TracChangeset
for help on using the changeset viewer.