Changeset 5376


Ignore:
Timestamp:
May 29, 2008, 8:54:08 AM (16 years ago)
Author:
kristy
Message:

updated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/perth/run_boundary_points.py

    r4989 r5376  
    2323import project                 # Definition of file names and polygons
    2424
     25#-----------------------------------------------------------------------------
     26# run_boundary_points
     27#-----------------------------------------------------------------------------
     28 
     29LL_LAT = -50.0          #ll_lat - lower left latitude, in decimal degrees
     30LL_LONG = 80.0          #ll-long - lower left longitude, in decimal degrees
     31GRID_SPACING = 2.0/60.0 #grid_spacing - in deciamal degrees
     32LAT_AMOUNT = 4800       #lat_amount - number of latitudes
     33LONG_AMOUNT = 3600      #long_amount- number of longs
     34ZONE = 50
     35
    2536#------------------------------------------------------------------------------
    2637# Copy scripts to time stamped output directory and capture screen
     
    2940poly = project.poly_all
    3041print "poly", poly
    31 print "project.boundaries_in_dir_name",project.boundaries_in_dir_name
    32 URS_points_needed_to_file(project.boundaries_in_dir_name,poly, export_csv=True, zone=50)
     42print "project_urs.boundaries_in_dir_name",project.boundaries_in_dir_name
     43URS_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)
    3345#URS_points_needed_to_file(project.boundaries_dir_name5,poly, export_csv=True, zone=50)
    3446#URS_points_needed_to_file(project.boundaries_dir_name5,poly, export_csv=True)
Note: See TracChangeset for help on using the changeset viewer.