Changeset 7647 for anuga_work/production/mandurah_storm_surge_2009
- Timestamp:
- Mar 2, 2010, 2:31:30 PM (15 years ago)
- Location:
- anuga_work/production/mandurah_storm_surge_2009
- Files:
-
- 1 added
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/mandurah_storm_surge_2009/build_elevation.py
r7627 r7647 87 87 G1 = geospatial_data['m_peel_aoi'].clip(project.elevation_clip_box) 88 88 G2 = geospatial_data['ph10m_ss'].clip_outside(project.elevation_clip_box) 89 G3 = geospatial_data['MA-46893-SNDS_AHD.csv'] 90 G4 = geospatial_data['MS0205HY_AHD.csv'] 91 G5 = geospatial_data['MS0404_AHD.csv'] 92 G6 = geospatial_data['YU0403HY_AHD.csv'] 93 G7 = geospatial_data['original_data_ss.csv'] 89 G3 = geospatial_data['DpiU1A03_ss.csv'] 90 G4 = geospatial_data['MA-46893-SNDS_AHD.csv'] 91 G5 = geospatial_data['MS0205HY_AHD.csv'] 92 G6 = geospatial_data['MS0404_AHD.csv'] 93 G7 = geospatial_data['YU0403HY_AHD.csv'] 94 G8 = geospatial_data['original_data_ss.csv'] 94 95 95 G = G1 + G2 + G3 + G4 + G5 + G6 + G7 96 G = G1 + G2 + G3 + G4 + G5 + G6 + G7 + G8 96 97 97 98 print 'Export combined DEM file' -
anuga_work/production/mandurah_storm_surge_2009/gems_comparison/build_elevation_GEMS.py
r7628 r7647 82 82 print 'project_GEMS.elevation_clip_box', project_GEMS.elevation_clip_box 83 83 84 G1 = geospatial_data[' Man_25m'].clip(project_GEMS.elevation_clip_box)84 G1 = geospatial_data['man_25m_prj'].clip(project_GEMS.elevation_clip_box) 85 85 G2 = geospatial_data['man10m_ss'].clip_outside(project_GEMS.elevation_clip_box) 86 86 -
anuga_work/production/mandurah_storm_surge_2009/gems_comparison/project_GEMS.py
r7628 r7647 62 62 #------------------------------------------------------------------------------- 63 63 64 output_comment = [setup, tide, event, ' _GEMS_compare'] # event_number will have to64 output_comment = [setup, tide, event, 'GEMS_compare'] # event_number will have to 65 65 # change to something relevent 66 66 # for storm surge … … 77 77 ## 'm_peel_10m.asc' 78 78 ## 'm_harvey_10m.asc'] 79 ascii_grid_filenames = [' Man_25m', # this is the latest 25m DEM from GEMS79 ascii_grid_filenames = ['man_25m_prj', # this is the latest 25m DEM from GEMS 80 80 'man10m_ss'] # this is to fill in areas not covered by the 81 81 # GEMS grid and is derived from the 10m resampled LiDAR from DoT, -
anuga_work/production/mandurah_storm_surge_2009/gems_comparison/run_model_GEMS.py
r7628 r7647 110 110 print domain.statistics() 111 111 112 domain.s tarttime(project_GEMS.starttime)112 domain.set_starttime(project_GEMS.starttime) 113 113 domain.set_name(project_GEMS.scenario_name) 114 114 domain.set_datadir(project_GEMS.output_run) -
anuga_work/production/mandurah_storm_surge_2009/get_timeseries.py
r7614 r7647 19 19 directory = project.output_folder 20 20 21 time_dir1 = '20090508_150215_run_final_0_51469_lfountai' 22 time_dir2 = '20090511_161526_run_final_1.1_51469_kvanputt' 23 time_dir3 = '20090511_165539_run_final_0_50863_lfountai' 24 time_dir4 = '20090521_220101_run_final_1.1_50863_kvanputt' 25 time_dir5 = '20090522_164526_run_final_0_51392_lfountai' 26 time_dir6 = '20090522_164640_run_final_1.1_51392_lfountai' 27 time_dir7 = '20090518_154710_run_final_0_50994_lfountai' 28 time_dir8 = '20090519_160510_run_final_1.1_50994_lfountai' 29 time_dir9 = '20090522_164948_run_final_0_51423_lfountai' 30 time_dir10 = '20090522_165600_run_final_1.1_51423_lfountai' 21 time_dir1 = '20091229_100831_run_storm_surge_final_0_alby_waves_lfountai' 31 22 32 time_dirs = [time_dir1, time_dir2, time_dir3, time_dir4, time_dir5, 33 time_dir6, time_dir7, time_dir8, time_dir9, time_dir10] 23 time_dirs = [time_dir1] 34 24 35 25 for time_dir in time_dirs: -
anuga_work/production/mandurah_storm_surge_2009/project.py
r7627 r7647 86 86 # Format for point is x,y,elevation (with header) 87 87 # Don't use these for comparison with GEMS inundation 88 point_filenames = ['MA-46893-SNDS_AHD.csv', # These files contain inf-fill bathymetry for 88 point_filenames = ['DpiU1A03_ss.csv', # Bathymetric LiDAR data from DPI, clipped to bounding polygon 89 'MA-46893-SNDS_AHD.csv', # These files contain inf-fill bathymetry for 89 90 'MS0205HY_AHD.csv', # the Peel & Harvey estuaries, as well as around 90 91 'MS0404_AHD.csv', # the canals -
anuga_work/production/mandurah_storm_surge_2009/run_model.py
r7614 r7647 110 110 print domain.statistics() 111 111 112 domain.set_starttime(project.starttime) 112 113 domain.set_name(project.scenario_name) 113 114 domain.set_datadir(project.output_run)
Note: See TracChangeset
for help on using the changeset viewer.