Ignore:
Timestamp:
Sep 26, 2006, 11:30:09 AM (18 years ago)
Author:
sexton
Message:

reflecting PATH change in project scripts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/onslow_2006/project.py

    r3650 r3669  
    4949    user = getenv('LOGNAME')
    5050    print 'USER:', user
     51
     52# INUNDATIONHOME is the inundation directory, not the data directory.
     53home += sep +'data'
    5154
    5255#Derive subdirectories and filenames
     
    134137n_max_area = 7610000
    135138
    136 # region to export to make elevation map: JS 22/9/06
     139# region to export to make elevation map: JS 22/9/06 - NOTE, this won't
     140# work as region needs to be inside bounding box (polyAll)!!
    137141
    138142e_min_area = 240000
     
    140144n_min_area = 7580000
    141145n_max_area = 7690000
    142 
     146export_region = [[e_min_area, n_min_area],
     147                 [e_min_area, n_max_area],
     148                 [e_max_area, n_max_area],
     149                 [e_max_area, n_min_area]]
    143150#Georeferencing
    144151from anuga.coordinate_transforms.redfearn import degminsec2decimal_degrees
     
    157164polyAll = [d0, d1, d2, d3, d4, d5, d6]
    158165
     166polygons = [polyAll, export_region]
     167figname = 'checking.png'
     168from anuga.utilities.polygon import plot_polygons
     169plot_polygons(polygons, figname, verbose = False)
     170print figname
    159171#Interior region - Onslow town
    160172
Note: See TracChangeset for help on using the changeset viewer.