Changeset 4429 for anuga_work/production/broome_2006/build_broome.py
- Timestamp:
- May 15, 2007, 4:13:58 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/broome_2006/build_broome.py
r4366 r4429 83 83 dem2pts(offshore_dir_name1, use_cache=True, verbose=True) 84 84 dem2pts(offshore_dir_name2, use_cache=True, verbose=True) 85 ''' 85 86 86 print'create Geospatial data1 objects from topographies',onshore_dir_name + '.pts' 87 87 G1 = Geospatial_data(file_name = onshore_dir_name + '.pts') … … 110 110 print'export',project.combined_dir_name+'_unclipped' + '.txt' 111 111 G.export_points_file(project.combined_dir_name+'_unclipped' + '.txt') 112 ''' 112 113 113 print'split' 114 114 G_small, G_other = G_clipped.split(.10,verbose=True) … … 120 120 G_small.export_points_file(project.combined_small_dir_name + '.txt') 121 121 #G_clipped.export_points_file(project.combined_dir_name + '.xya') 122 '''123 122 124 ''' 123 124 125 125 print'project.combined_dir_name + 1.xya',project.combined_dir_name + '1.xya' 126 126 G_all=Geospatial_data(file_name = project.combined_dir_name + '1.xya') … … 132 132 G_all_2.export_points_file(project.combined_dir_name+'_other1' + '.xya') 133 133 134 134 ''' 135 135 #------------------------------------------------------------------------- 136 136 # Convert URS to SWW file for boundary conditions 137 137 #------------------------------------------------------------------------- 138 ''' 138 print 'starting to create boundary conditions' 139 boundaries_in_dir_name = project.boundaries_in_dir_name 140 141 from anuga.shallow_water.data_manager import urs2sww, urs_ungridded2sww 142 143 print 'boundaries_in_dir_name',boundaries_in_dir_name 144 print 'project.boundaries_dir_name',project.boundaries_dir_name 145 146 urs_ungridded2sww(boundaries_in_dir_name, project.boundaries_dir_name, 147 verbose=True, mint=4000, maxt=35000, zscale=1) 139 148 140 149 … … 143 152 144 153 145
Note: See TracChangeset
for help on using the changeset viewer.