Changeset 6432
- Timestamp:
- Mar 2, 2009, 11:59:23 AM (16 years ago)
- Location:
- anuga_work/production/busselton/standardised_version
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/busselton/standardised_version/project.py
r6377 r6432 78 78 ## add_csv_header(join(topographies_folder, f), headerlist) 79 79 80 80 # BOUNDING POLYGON - for data clipping and estimate of triangles in mesh 81 81 # Used in build_elevation.py 82 82 # Format for points easting,northing (no header) … … 219 219 220 220 # The pathname for the urs order points, used within build_urs_boundary.py 221 urs_order = join(boundaries_folder, urs_order_filename) 221 if urs_order_filename: 222 urs_order = join(boundaries_folder, urs_order_filename) 222 223 223 224 # The absolute pathname for the landward points of the bounding polygon, 224 225 # Used within run_model.py) 225 landward_boundary = join(boundaries_folder, landward_boundary_filename) 226 if landward_boundary_filename: 227 landward_boundary = join(boundaries_folder, landward_boundary_filename) 226 228 227 229 # The absolute pathname for the .sts file, generated in build_boundary.py … … 238 240 # The absolute pathname for the gauges file 239 241 # Used for get_timeseries.py 240 gauges = join(gauges_folder, gauges_filename) 242 if gauges_filename: 243 gauges = join(gauges_folder, gauges_filename) 241 244 242 245 # The absolute pathname for the building file 243 246 # Used for run_building_inundation.py 244 building_exposure = join(gauges_folder, building_exposure_filename) 247 if building_exposure_filename: 248 building_exposure = join(gauges_folder, building_exposure_filename) 245 249 246 250 # full path to where MUX files (or meta-files) live -
anuga_work/production/busselton/standardised_version/setup_model.py
r6363 r6432 29 29 if os.getenv(project.ENV_MUXHOME) is None: 30 30 print "Environment variable '%s' is not set" % project.ENV_MUXHOME 31 sanity_error = True 32 33 #------------------------------------------------------------------------------- 34 # Check filename strings that MUST be set 35 #------------------------------------------------------------------------------- 36 37 if not urs_order_filename: 38 print ("Sorry, thinned ordering file parameter 'urs_order_filename' " 39 "isn't set") 40 sanity_error = True 41 42 if not landward_boundary_filename: 43 print ("Sorry, landward bounding points parameter " 44 "'landward_boundary_filename' isn't set") 31 45 sanity_error = True 32 46
Note: See TracChangeset
for help on using the changeset viewer.