Changeset 28029
- Timestamp:
- 12/19/23 13:24:11 (15 months ago)
- Location:
- issm/trunk-jpl/src/m
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/exp/expread.py
r25455 r28029 8 8 9 9 def expread(filename): 10 """ EXPREAD- read a exp file and build a list of OrderedDicts10 """expread - read a exp file and build a list of OrderedDicts 11 11 12 12 This routine reads a file .exp and builds a list of OrderedDicts containing … … 25 25 26 26 See Also: 27 - EXPDOC28 - EXPWRITEASVERTICES27 - expdoc 28 - expwriteasvertices 29 29 30 30 TODO: -
issm/trunk-jpl/src/m/exp/expwrite.py
r26988 r28029 3 3 4 4 def expwrite(contours, filename): 5 """ EXPWRITE- write an Argus file from a dictionary given in input5 """expwrite - write an Argus file from a dictionary given in input 6 6 7 7 This routine writes an Argus file from a dict containing the fields: … … 16 16 expwrite(coordstruct, 'domainoutline.exp') 17 17 18 See also EXPDOC, EXPREAD, EXPWRITEASVERTICES 18 See also: 19 - expdoc 20 - expread 21 - expwriteasvertices 19 22 """ 20 23 -
issm/trunk-jpl/src/m/geometry/VolumeAboveFloatation.py
r27825 r28029 7 7 8 8 def VolumeAboveFloatation(md, step=None, flags=None): 9 ''' 10 VOLUMEABOVEFLOATATION - returns volume above floatation 9 """VolumeAboveFlotation - returns volume above floatation 11 10 12 11 Usage: … … 14 13 V = VolumeAboveFloatation(md,10) % Will look at step 10 of transient solution 15 14 V = VolumeAboveFloatation(md,10,flags) % Will look at step 10 of transient solution, only flaged elements 16 '''15 """ 17 16 isverb = 0 # verbosity. 18 17
Note:
See TracChangeset
for help on using the changeset viewer.