Changeset 889


Ignore:
Timestamp:
Feb 15, 2005, 11:41:39 AM (20 years ago)
Author:
duncan
Message:

fix typo

Location:
inundation/ga/storm_surge/pyvolution
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • inundation/ga/storm_surge/pyvolution/least_squares.py

    r888 r889  
    6666    """
    6767    from load_mesh.loadASCII import mesh_file_to_mesh_dictionary, \
    68                  load_points_file, export_trianglulation_file, \
     68                 load_points_file, export_triangulation_file, \
    6969                 concatinate_attributelist
    7070    # load in the .tsh file
     
    111111        mesh_dict['generatedpointattributetitlelist'] = title_list
    112112   
    113     export_trianglulation_file(mesh_output_file, mesh_dict)
     113    export_triangulation_file(mesh_output_file, mesh_dict)
    114114       
    115115
     
    122122                expand_search = False):
    123123    """
    124     Fit a smooth surface to a trianglulation,
     124    Fit a smooth surface to a triangulation,
    125125    given data points with attributes.
    126126
  • inundation/ga/storm_surge/pyvolution/test_least_squares.py

    r883 r889  
    881881    def test_fit_to_mesh_file(self):
    882882        from load_mesh.loadASCII import mesh_file_to_mesh_dictionary, \
    883              export_trianglulation_file   
     883             export_triangulation_file   
    884884        import tempfile
    885885        import os
     
    900900                                                  'external']       
    901901        mesh_file = tempfile.mktemp(".tsh")
    902         export_trianglulation_file(mesh_file,mesh_dic)
     902        export_triangulation_file(mesh_file,mesh_dic)
    903903       
    904904        # create an .xya file
     
    931931    def test_fit_to_mesh_fileII(self):
    932932        from load_mesh.loadASCII import mesh_file_to_mesh_dictionary, \
    933              export_trianglulation_file   
     933             export_triangulation_file   
    934934        import tempfile
    935935        import os
     
    950950                                                  'external']       
    951951        mesh_file = tempfile.mktemp(".tsh")
    952         export_trianglulation_file(mesh_file,mesh_dic)
     952        export_triangulation_file(mesh_file,mesh_dic)
    953953       
    954954        # create an .xya file
Note: See TracChangeset for help on using the changeset viewer.