Changeset 4863 for anuga_core/source/anuga/shallow_water/data_manager.py
- Timestamp:
- Nov 29, 2007, 5:46:55 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/shallow_water/data_manager.py
r4862 r4863 70 70 from Numeric import concatenate, array, Float, Int, Int32, resize, sometrue, \ 71 71 searchsorted, zeros, allclose, around, reshape, transpose, sort, \ 72 NewAxis, ArrayType, compress, take, arange, argmax, alltrue, shape,Float3272 NewAxis, ArrayType, compress, take, arange, argmax, alltrue, shape, Float32 73 73 74 74 import string … … 5625 5625 5626 5626 5627 # Get the relevant quantities 5628 elevation = fid.variables['elevation'][:]5629 stage = fid.variables['stage'][:]5627 # Get the relevant quantities (Convert from single precison) 5628 elevation = array(fid.variables['elevation'][:], Float) 5629 stage = array(fid.variables['stage'][:], Float) 5630 5630 5631 5631
Note: See TracChangeset
for help on using the changeset viewer.