Changeset 4483


Ignore:
Timestamp:
May 24, 2007, 3:01:59 PM (18 years ago)
Author:
nick
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/exmouth_2006/build_exmouth.py

    r4482 r4483  
    8383'''
    8484print'create Geospatial data1 objects from topographies',onshore_dir_name + '.pts'
    85 G1 = Geospatial_data(file_name = onshore_dir_name + '.pts')
     85G1 = Geospatial_data(file_name = onshore_dir_name + '.pts',verbose=True)
    8686print'create Geospatial data2 objects from topographies',onshore1_dir_name + '.pts'
    87 G2 = Geospatial_data(file_name = onshore1_dir_name + '.pts')
     87G2 = Geospatial_data(file_name = onshore1_dir_name + '.pts',verbose=True)
    8888print'create Geospatial data3 objects from coast', coast_in_dir_name + '.txt'
    89 G3 = Geospatial_data(file_name = coast_in_dir_name + '.txt')
     89G3 = Geospatial_data(file_name = coast_in_dir_name + '.txt',verbose=True)
    9090print'create Geospatial data3 objects from offshore',offshore_in_dir_name + '.txt'
    91 G_off = Geospatial_data(file_name = offshore_in_dir_name + '.txt')
     91G_off = Geospatial_data(file_name = offshore_in_dir_name + '.txt',verbose=True)
    9292
    9393print'add all geospatial objects'
    94 G = G1 + G2 + G3 + G_off
     94G = G2 + G3 + G_off
     95
     96print'add DLI data'
     97G = G + G1
    9598
    9699print'export combined DEM file'
Note: See TracChangeset for help on using the changeset viewer.