Changeset 6761


Ignore:
Timestamp:
Apr 8, 2009, 10:44:16 AM (15 years ago)
Author:
kristy
Message:

change project.py to reflect 'simple' model

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/australia_ph2/gold_coast/project.py

    r6756 r6761  
    2626# One or all can be changed each time the run_model script is executed
    2727
    28 central_meridian = 153.0 # Central meridian for projection (optional)
    29 #zone = 56
     28central_meridian = None # Central meridian for projection (optional)
     29zone = 56
    3030import sys
    3131if len(sys.argv) > 1:
     
    3636event_number_list = [50883, 51318, 51453] # To piggy back multiple events
    3737
     38# events: 27346 (java 2.1e-6), 58334 (puysegur 8.8e-7), 64322 (sandwich 8.2e-6),
     39# other events: 51466 (newHebrides 7.2e-7), 57537 (peru 4.7e-7), 46591 (midAmerica 1.3e-6),
     40# 68791 (sumatra 7.5e-7), 11100 (andaman 4.9e-7), 65368 (shetland 2.5e-6), 7867 (altiplano 1.0e-6)
    3841tide = 0                # difference between MSL and HAT
    3942alpha = 0.1             # smoothing parameter for mesh
     
    7881# Used in build_elevation.py
    7982# Format for ascii grids, as produced in ArcGIS + a projection file
    80 ascii_grid_filenames = []
     83ascii_grid_filenames = ['grid_250m_simple']
    8184
    8285# Format for points is x,y,elevation (with header)
    83 point_filenames = ['brisbane_250m.txt',
    84                    'GBR_250m.txt',
    85                    'Sydney_250m.txt'] # 250m grid 2005
     86point_filenames = []
     87##point_filenames = ['brisbane_250m.txt',
     88##                   'GBR_250m.txt',
     89##                   'Sydney_250m.txt'] # 250m grid 2005
    8690
    8791### Add csv header list to all files in point_filenames
     
    9397# Used in build_elevation.py
    9498# Format for points: easting,northing (no header)
    95 bounding_polygon_filename = 'bounding_polygon.csv'
     99bounding_polygon_filename = 'bounding_polygon_simple.csv'
    96100bounding_polygon_maxarea = 125000
    97101
     
    134138# Landward bounding points
    135139# Format easting,northing (no header)
    136 landward_boundary_filename = 'landward_boundary.csv'
     140landward_boundary_filename = 'landward_boundary_simple.csv'
    137141
    138142# MUX input filename.
     
    175179# Output filename for elevation
    176180# this is a combination of all the data generated in build_elevation.py
    177 combined_elevation_basename = scenario_name + '_combined_elevation'
     181combined_elevation_basename = scenario_name + 'simple_combined_elevation'
    178182
    179183#-------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.