Changeset 975
- Timestamp:
- Mar 1, 2005, 9:50:18 AM (20 years ago)
- Location:
- inundation/ga/storm_surge/pmesh/load_mesh
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pmesh/load_mesh/loadASCII.py
r969 r975 57 57 from os.path import splitext 58 58 59 from Scientific.IO.NetCDF import NetCDFFile 60 59 60 61 61 import exceptions 62 62 class TitleAmountError(exceptions.Exception): pass … … 576 576 WARNING: This function mangles the mesh_dict data structure 577 577 """ 578 578 579 from Scientific.IO.NetCDF import NetCDFFile 579 580 580 581 point_atts2array(point_atts) … … 717 718 """ 718 719 720 from Scientific.IO.NetCDF import NetCDFFile 721 719 722 fid = NetCDFFile(filename, 'r') 720 723 … … 745 748 """ 746 749 750 from Scientific.IO.NetCDF import NetCDFFile 751 747 752 point_atts2array(point_atts) 748 753 # NetCDF file definition -
inundation/ga/storm_surge/pmesh/load_mesh/test_loadASCII.py
r969 r975 19 19 from os.path import splitext 20 20 21 from Scientific.IO.NetCDF import NetCDFFile22 21 from Numeric import array #Float, arrayrange, concatenate 23 22 … … 145 144 146 145 def test_loadpts(self): 146 147 from Scientific.IO.NetCDF import NetCDFFile 148 147 149 fileName = tempfile.mktemp(".pts") 148 150 # NetCDF file definition
Note: See TracChangeset
for help on using the changeset viewer.