Changeset 5377
- Timestamp:
- May 29, 2008, 8:55:23 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/busselton/run_boundary_points.py
r5000 r5377 21 21 from anuga.shallow_water.data_manager import URS_points_needed_to_file, \ 22 22 urs_ungridded2sww 23 import project_new # Definition of file names and polygons 23 import project # Definition of file names and polygons 24 25 #----------------------------------------------------------------------------- 26 # run_boundary_points 27 #----------------------------------------------------------------------------- 28 29 LL_LAT = -50.0 #ll_lat - lower left latitude, in decimal degrees 30 LL_LONG = 80.0 #ll-long - lower left longitude, in decimal degrees 31 GRID_SPACING = 2.0/60.0 #grid_spacing - in deciamal degrees 32 LAT_AMOUNT = 4800 #lat_amount - number of latitudes 33 LONG_AMOUNT = 3600 #long_amount- number of longs 34 ZONE = 50 24 35 25 36 #------------------------------------------------------------------------------ … … 27 38 # output to file 28 39 #------------------------------------------------------------------------------ 29 poly = project _new.poly_all40 poly = project.poly_all 30 41 print "poly", poly 31 print "project.boundaries_in_dir_name",project_new.boundaries_in_dir_name 32 URS_points_needed_to_file(project_new.boundaries_in_dir_name,poly, export_csv=True, zone=50) 42 print "project.boundaries_in_dir_name",project.boundaries_in_dir_name 43 URS_points_needed_to_file(project.boundaries_in_dir_name,poly, ZONE, 44 LL_LAT, LL_LONG,GRID_SPACING,LAT_AMOUNT, LONG_AMOUNT,export_csv=True) 45 #URS_points_needed_to_file(project.boundaries_dir_name5,poly, export_csv=True, zone=50) 46 #URS_points_needed_to_file(project.boundaries_dir_name5,poly, export_csv=True) 33 47 #urs_ungridded2sww(project.boundaries_in_dir_name2, project.boundaries_dir_name5, mean_stage= project.tide, verbose=True)
Note: See TracChangeset
for help on using the changeset viewer.