Changeset 26988
- Timestamp:
- 05/04/22 16:25:05 (3 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 6 added
- 3 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/exp/expwrite.py
r26969 r26988 23 23 if isinstance(contours, list): 24 24 for contour in contours: 25 #if it sisome kind of array it is a contour and we loop on indexes25 #if it is some kind of array it is a contour and we loop on indexes 26 26 if isinstance(contour['x'], (list, tuple, np.ndarray)): 27 27 writegeomlist(contour, fid, filename) … … 31 31 #if it is a dict type it means just one contour 32 32 else: 33 #if it sisome kind of array it is a contour and we loop on indexes33 #if it is some kind of array it is a contour and we loop on indexes 34 34 if isinstance(contours['x'], (list, tuple, np.ndarray)): 35 35 writegeomlist(contours, fid, filename)
Note:
See TracChangeset
for help on using the changeset viewer.