- Timestamp:
- Mar 3, 2009, 1:16:59 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/geospatial_data/geospatial_data.py
r6166 r6438 1460 1460 """ 1461 1461 1462 import copy 1462 1463 # Input check 1463 1464 if isinstance(points, basestring): … … 1470 1471 assert geo_reference == None, msg 1471 1472 else: 1472 points = ensure_numeric( points, num.Float)1473 points = ensure_numeric(copy.copy(points), num.Float) 1473 1474 1474 1475 # Sort of geo_reference and convert points … … 1507 1508 """ 1508 1509 1510 import copy 1509 1511 # Input check 1510 1512 if isinstance(points, Geospatial_data):
Note: See TracChangeset
for help on using the changeset viewer.