Changeset 889
- Timestamp:
- Feb 15, 2005, 11:41:39 AM (20 years ago)
- Location:
- inundation/ga/storm_surge/pyvolution
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pyvolution/least_squares.py
r888 r889 66 66 """ 67 67 from load_mesh.loadASCII import mesh_file_to_mesh_dictionary, \ 68 load_points_file, export_triang lulation_file, \68 load_points_file, export_triangulation_file, \ 69 69 concatinate_attributelist 70 70 # load in the .tsh file … … 111 111 mesh_dict['generatedpointattributetitlelist'] = title_list 112 112 113 export_triang lulation_file(mesh_output_file, mesh_dict)113 export_triangulation_file(mesh_output_file, mesh_dict) 114 114 115 115 … … 122 122 expand_search = False): 123 123 """ 124 Fit a smooth surface to a triang lulation,124 Fit a smooth surface to a triangulation, 125 125 given data points with attributes. 126 126 -
inundation/ga/storm_surge/pyvolution/test_least_squares.py
r883 r889 881 881 def test_fit_to_mesh_file(self): 882 882 from load_mesh.loadASCII import mesh_file_to_mesh_dictionary, \ 883 export_triang lulation_file883 export_triangulation_file 884 884 import tempfile 885 885 import os … … 900 900 'external'] 901 901 mesh_file = tempfile.mktemp(".tsh") 902 export_triang lulation_file(mesh_file,mesh_dic)902 export_triangulation_file(mesh_file,mesh_dic) 903 903 904 904 # create an .xya file … … 931 931 def test_fit_to_mesh_fileII(self): 932 932 from load_mesh.loadASCII import mesh_file_to_mesh_dictionary, \ 933 export_triang lulation_file933 export_triangulation_file 934 934 import tempfile 935 935 import os … … 950 950 'external'] 951 951 mesh_file = tempfile.mktemp(".tsh") 952 export_triang lulation_file(mesh_file,mesh_dic)952 export_triangulation_file(mesh_file,mesh_dic) 953 953 954 954 # create an .xya file
Note: See TracChangeset
for help on using the changeset viewer.