Changeset 17730
- Timestamp:
- 04/14/14 17:46:16 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/exp/expread.py
r17614 r17730 30 30 31 31 #initialize number of profile 32 contours= []32 contours=OrderedDict() 33 33 34 34 #open file … … 67 67 #Get number of nodes and density 68 68 A=fid.readline().split() 69 contour['nods'] =float(A[0])69 contour['nods']=int(A[0]) 70 70 contour['density']=float(A[1]) 71 71 … … 92 92 contour['closed']=False 93 93 94 contours. append(contour)94 contours.update(contour) 95 95 96 96 #close file
Note:
See TracChangeset
for help on using the changeset viewer.