Changeset 7360
- Timestamp:
- Aug 13, 2009, 10:11:28 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DVD_images/extra_files/BatemansBay/project/project.py
r7300 r7360 83 83 point_filenames = [] 84 84 85 86 ### Add csv header list to all files in point_filenames 87 ##headerlist = ['x', 'y', 'elevation'] 88 ##for f in point_filenames: 89 ## add_csv_header(join(topographies_folder, f), headerlist) 90 91 # BOUNDING POLYGON - for data clipping and estimate of triangles in mesh 85 # BOUNDING POLYGON - for data clipping and estimate of triangles in mesh 92 86 # Used in build_elevation.py 93 87 # Format for points easting,northing (no header) … … 98 92 # Used in run_model.py 99 93 # Format for points easting,northing (no header) 100 101 94 interior_regions_data = [['area_of_interest.csv', 500], 102 95 ['area_of_significance.csv', 2500], 103 96 ['shallow_water.csv', 10000]] 104 97 105 106 98 # LAND - used to set the initial stage/water to be offcoast only 107 99 # Used in run_model.py. Format for points easting,northing (no header) 108 100 land_initial_conditions_filename = [['initial_conditions.csv', 0]] 109 110 101 111 102 # GAUGES - for creating timeseries at a specific point 112 103 # Used in get_timeseries.py. … … 152 143 #------------------------------------------------------------------------------- 153 144 154 # ASCII export grid for Busselton 155 xminBusselton = 340000 156 xmaxBusselton = 352000 157 yminBusselton = 6271500 158 ymaxBusselton = 6280000 159 160 # ASCII export grid for Bunbury 161 xminBunbury = 369000 162 xmaxBunbury = 381000 163 yminBunbury = 6308000 164 ymaxBunbury = 6316500 145 # ASCII export grid for Batemans Bay 146 ##xminBatemans_Bay = 147 ##xmaxBatemans_Bay = 148 ##yminBatemans_Bay = 149 ##ymaxBatemans_Bay = 150 165 151 166 152 ################################################################################
Note: See TracChangeset
for help on using the changeset viewer.