Changeset 2902 for production/onslow_2006/project.py
- Timestamp:
- May 18, 2006, 10:01:58 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
production/onslow_2006/project.py
r2863 r2902 3 3 """ 4 4 5 from os import sep, environ 5 from os import sep, environ, getenv, getcwd 6 6 from os.path import expanduser 7 7 from utilities.polygon import read_polygon … … 14 14 from time import localtime, strftime 15 15 16 from os import getcwd17 16 18 17 #Making assumptions about the location of scenario data … … 36 35 if sys.platform == 'win32': 37 36 home = environ['INUNDATIONHOME'] #Sandpit's parent dir 37 # home = environ['INUNDATIONHOME'] #Sandpit's parent dir 38 38 else: 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') 41 40 42 41 #Derive subdirectories and filenames
Note: See TracChangeset
for help on using the changeset viewer.