Changeset 7557
- Timestamp:
- Nov 18, 2009, 2:31:51 PM (15 years ago)
- Location:
- anuga_work/production/wa/mandurah_2009
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/wa/mandurah_2009/build_elevation.py
r7546 r7557 82 82 G2 = None 83 83 for key in geospatial_data: 84 if key == 'm_peel_1m':84 if key == 'extract_m_peel': 85 85 G1 = geospatial_data[key].clip(project.clip_box) 86 87 if key == 'ph10mex_clipped': 86 if key == 'm_peel_10m': 88 87 G2 = geospatial_data[key].clip_outside(project.clip_box) 89 88 -
anuga_work/production/wa/mandurah_2009/project.py
r7546 r7557 33 33 starttime=0 # start time for simulation 34 34 finaltime=80000 # final time for simulation 35 yieldstep=60 # timestep to save output 35 36 36 37 setup = 'trial' # This can be one of three values … … 59 60 # Used in build_elevation.py 60 61 # Format for ascii grids, as produced in ArcGIS + a projection file 61 ascii_grid_filenames = [ #'m_harvey_1m', # Topo62 'm_peel_1 m',63 'ph10mex_clipped']# mandurah Topo62 ascii_grid_filenames = ['m_harvey_10m', # Topo 63 'm_peel_10m'] 64 #'extract_m_peel' # mandurah Topo 64 65 65 66 # Format for point is x,y,elevation (with header) 66 point_filenames = ['bathymetry_all_data.txt', # All data 67 point_filenames = ['bathymetry_all_data.txt', 68 'DpiU1A03.txt', 69 'MA-46893-SNDS_AHD.txt', 70 'MS0205HY_AHD.txt', 71 'MS0404_AHD.txt', 72 'YU0403HY_AHD.txt', # All data 67 73 'coastline.txt'] # Coastline 68 74
Note: See TracChangeset
for help on using the changeset viewer.