Changeset 3668


Ignore:
Timestamp:
Sep 26, 2006, 11:11:36 AM (18 years ago)
Author:
duncan
Message:

path fix - also, no extent and different grid size

Location:
anuga_work/production/hobart_2006
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/hobart_2006/export_results.py

    r3666 r3668  
    4242sww2dem(name, basename_out = outname,
    4343            quantity = quantityname,
    44             cellsize = 25,      # would prefer this at 25
     44            cellsize = 30,      # would prefer this at 25
    4545            # define region for viz purposes
    46             easting_min = project.e_min_area,
    47             easting_max = project.e_max_area,
    48             northing_min = project.n_min_area,
    49             northing_max = project.n_max_area,       
     46            #easting_min = project.e_min_area,
     47            #easting_max = project.e_max_area,
     48            #northing_min = project.n_min_area,
     49            #northing_max = project.n_max_area,       
    5050            reduction = max, #this is because we want max quantityname
    5151            verbose = True,
  • anuga_work/production/hobart_2006/project.py

    r3667 r3668  
    5252if sys.platform == 'win32':
    5353    home = getenv('INUNDATIONHOME')
    54     user = getenv('USERPROFILE')   
     54    user = getenv('USERPROFILE')
     55
    5556else:   
    56     home = getenv('INUNDATIONHOME', sep+'d'+sep+'xrd'+sep+'gem'+sep+'2'+sep+'ramp'+sep+'risk_assessment_methods_project'+sep+'inundation'+sep+'data')     
     57    home = getenv('INUNDATIONHOME', sep+'d'+sep+'xrd'+sep+'gem'+sep+'2'+sep+'ramp'+sep+'risk_assessment_methods_project'+sep+'inundation')     
    5758    user = getenv('LOGNAME')
    5859    print 'USER:', user
     60
     61# INUNDATIONHOME is the inundation directory, not the data directory.
     62home += sep +'data'
    5963
    6064#Derive subdirectories and filenames
Note: See TracChangeset for help on using the changeset viewer.