Changeset 5368 for anuga_work/production/broome
- Timestamp:
- May 26, 2008, 5:09:40 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/broome/run_boundary_points.py
r5245 r5368 23 23 import project_urs # Definition of file names and polygons 24 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 = 51 35 25 36 #------------------------------------------------------------------------------ 26 37 # Copy scripts to time stamped output directory and capture screen … … 30 41 print "poly", poly 31 42 print "project_urs.boundaries_in_dir_name",project_urs.boundaries_in_dir_name 32 URS_points_needed_to_file(project_urs.boundaries_in_dir_name,poly, export_csv=True, zone=51) 43 URS_points_needed_to_file(project_urs.boundaries_in_dir_name,poly, ZONE, 44 LL_LAT, LL_LONG,GRID_SPACING,LAT_AMOUNT, LONG_AMOUNT,export_csv=True) 33 45 #URS_points_needed_to_file(project.boundaries_dir_name5,poly, export_csv=True, zone=50) 34 46 #URS_points_needed_to_file(project.boundaries_dir_name5,poly, export_csv=True)
Note: See TracChangeset
for help on using the changeset viewer.