Changeset 19433


Ignore:
Timestamp:
07/13/15 00:35:19 (10 years ago)
Author:
cborstad
Message:

CHG: x and y are now passed as lists, and the contour is passed as a dict to expwrite

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/mesh/roundmesh.py

    r17497 r19433  
    2929        y_list=roundsigfig(radius*y_list*numpy.sin(theta),12)
    3030        A=OrderedDict()
    31         A['x']=x_list
    32         A['y']=y_list
     31        A['x']=[x_list]
     32        A['y']=[y_list]
    3333        A['density']=1.
    34         expwrite([A],'RoundDomainOutline.exp')
     34        expwrite(A,'RoundDomainOutline.exp')
    3535
    3636        #Call Bamg
Note: See TracChangeset for help on using the changeset viewer.