Ignore:
Timestamp:
May 18, 2006, 10:01:58 AM (19 years ago)
Author:
nick
Message:

update onslow and pt hedland

File:
1 edited

Legend:

Unmodified
Added
Removed
  • production/onslow_2006/project.py

    r2863 r2902  
    33"""
    44
    5 from os import sep, environ
     5from os import sep, environ, getenv, getcwd
    66from os.path import expanduser
    77from utilities.polygon import read_polygon
     
    1414from time import localtime, strftime
    1515
    16 from os import getcwd
    1716               
    1817#Making assumptions about the location of scenario data
     
    3635if sys.platform == 'win32':
    3736    home = environ['INUNDATIONHOME']     #Sandpit's parent dir
     37#    home = environ['INUNDATIONHOME']     #Sandpit's parent dir
    3838else:   
    39     home = environ['INUNDATIONHOME']     #Sandpit's parent dir
    40 #    home = expanduser('~')
     39    home = getenv('INUNDATIONHOME', sep+'d'+sep+'cit'+sep+'1'+sep+'cit'+sep+'risk_assessment_methods_project'+sep+'inundation')     
    4140
    4241#Derive subdirectories and filenames
Note: See TracChangeset for help on using the changeset viewer.