Changeset 4483
- Timestamp:
- May 24, 2007, 3:01:59 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/exmouth_2006/build_exmouth.py
r4482 r4483 83 83 ''' 84 84 print'create Geospatial data1 objects from topographies',onshore_dir_name + '.pts' 85 G1 = Geospatial_data(file_name = onshore_dir_name + '.pts' )85 G1 = Geospatial_data(file_name = onshore_dir_name + '.pts',verbose=True) 86 86 print'create Geospatial data2 objects from topographies',onshore1_dir_name + '.pts' 87 G2 = Geospatial_data(file_name = onshore1_dir_name + '.pts' )87 G2 = Geospatial_data(file_name = onshore1_dir_name + '.pts',verbose=True) 88 88 print'create Geospatial data3 objects from coast', coast_in_dir_name + '.txt' 89 G3 = Geospatial_data(file_name = coast_in_dir_name + '.txt' )89 G3 = Geospatial_data(file_name = coast_in_dir_name + '.txt',verbose=True) 90 90 print'create Geospatial data3 objects from offshore',offshore_in_dir_name + '.txt' 91 G_off = Geospatial_data(file_name = offshore_in_dir_name + '.txt' )91 G_off = Geospatial_data(file_name = offshore_in_dir_name + '.txt',verbose=True) 92 92 93 93 print'add all geospatial objects' 94 G = G1 + G2 + G3 + G_off 94 G = G2 + G3 + G_off 95 96 print'add DLI data' 97 G = G + G1 95 98 96 99 print'export combined DEM file'
Note: See TracChangeset
for help on using the changeset viewer.