Changeset 3281
- Timestamp:
- Jul 6, 2006, 12:22:16 PM (19 years ago)
- Location:
- production/pt_hedland_2006
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
production/pt_hedland_2006/project.py
r3277 r3281 26 26 offshore_name2 = 'pt_hedland_offshore_points_fairsheet' 27 27 28 # coastline developed from 30m DTED and aerial photography 29 coast_name = 'pt_hedland_coastline_points_dted2_new' 28 # coastline developed from aerial photography and 1.5m DLI contour 29 #coast_name = 'pt_hedland_coastline_points_dted2_new' 30 coast_name = 'coast_with_extracted_z' 31 30 32 31 33 boundary_basename = 'SU-AU_clip' … … 39 41 home = getenv('INUNDATIONHOME') #Sandpit's parent dir 40 42 # python_home = getenv('PWD') 41 #user = basename(getenv('USERPROFILE'))43 user = getenv('USERPROFILE') 42 44 #print 'USER:', user 43 45 else: … … 76 78 77 79 meshname = meshdir + basename 78 onshore_dem_name = datadir + onshore_name_dted 80 #onshore_dem_name = datadir + onshore_name_dted 81 onshore_dem_name = datadir + onshore_name_dli 79 82 offshore_dem_name1 = datadir + offshore_name1 80 83 offshore_dem_name2 = datadir + offshore_name2 -
production/pt_hedland_2006/run_pt_hedland.py
r3274 r3281 63 63 64 64 # filenames 65 onshore_dem_name = project.onshore_dem_name66 coast_dem_name = project.coast_dem_name67 offshore_points1 = project.offshore_dem_name168 offshore_points2 = project.offshore_dem_name269 65 meshname = project.meshname+'.msh' 70 66 source_dir = project.boundarydir … … 72 68 # fine data (clipping the points file to smaller area) 73 69 # creates DEM from asc data 74 convert_dem_from_ascii2netcdf( onshore_dem_name, use_cache=True, verbose=True)70 convert_dem_from_ascii2netcdf(project.onshore_dem_name, use_cache=True, verbose=True) 75 71 76 72 #creates pts file from DEM 77 dem2pts( onshore_dem_name,73 dem2pts(project.onshore_dem_name, 78 74 easting_min=project.eastingmin, 79 75 easting_max=project.eastingmax, … … 105 101 106 102 region_res = 100000 107 coast_res = 2500 0108 pt_hedland_res = 5000103 coast_res = 2500 104 pt_hedland_res = 1500 109 105 interior_regions = [[project.poly_pt_hedland, pt_hedland_res], 110 106 [project.poly_region, region_res]]
Note: See TracChangeset
for help on using the changeset viewer.