Ignore:
Timestamp:
Aug 7, 2007, 2:20:57 PM (17 years ago)
Author:
duncan
Message:

getting rid of xya more. Cleaning up.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/pmesh/mesh.py

    r4458 r4663  
    12141214            del v.dupindex
    12151215        return Vertices,counter
    1216    
     1216
     1217    # FIXME (DSG-DSG) Move this to geospatial
    12171218    def thinoutVertices(self, delta):
    12181219        """Pre-condition: There are no user segments
     
    20152016    def exportPointsFile(self,ofile):
    20162017        """
    2017         export a points (.xya or .pts)  file, ofile.
     2018        export a points file, ofile.
    20182019       
    20192020        """
     
    29993000
    30003001def importMeshFromFile(ofile):
    3001     """returns a mesh object, made from a .xya/.pts or .tsh/.msh file
     3002    """returns a mesh object, made from a points file or .tsh/.msh file
    30023003    Often raises IOError,RuntimeError
    30033004    """
    30043005    newmesh = None
    3005     if (ofile[-4:]== ".xya" or ofile[-4:]== ".pts" or ofile[-4:]== ".txt" or \
     3006    if (ofile[-4:]== ".pts" or ofile[-4:]== ".txt" or \
    30063007        ofile[-4:]== ".csv"):
    30073008        geospatial = Geospatial_data(ofile)
Note: See TracChangeset for help on using the changeset viewer.