- Timestamp:
- Mar 2, 2009, 11:59:23 AM (14 years ago)
- File:
-
- 1 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
Note: See TracChangeset
for help on using the changeset viewer.