Ignore:
Timestamp:
Mar 21, 2007, 6:25:37 PM (18 years ago)
Author:
sexton
Message:

update damage scripts for FESA areas

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/gold_coast_2007/project.py

    r4294 r4310  
    2828gc250 = 'dem_250'
    2929
     30# better DEM
     31gc5 = 'dem_5m_ascii'
     32offshore = 'xy_AHD'
     33coastline = 'coastline'
     34
    3035#swollen/ all data output
    3136basename = 'source'
     
    4247outputtimedir = outputdir + local_time + sep
    4348polygondir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'polygons'+sep
     49alex_datadir = home+sep+state+sep+scenario_dir_name+sep+'elevation_final'+sep+'points'+sep
    4450
    45 #gauge_filename = gaugedir + 'sydney_slide_gauges.csv'
    4651codedir = getcwd()+sep                           
    4752codedirname = codedir + 'project.py'
     
    4954
    5055# Necessary if using point datasets, rather than grid
    51 gc_dem_name = datadir + gc250
     56gc_dem_name = alex_datadir + gc5
     57offshore_name = datadir + offshore
     58coast_name = datadir + coastline
    5259combined_dem_name   = datadir + 'gc_elevation'
    5360
     61gauge_name = gaugedir + 'gc_gauges.csv'
     62buildings_filename = gaugedir + 'gc_nexis.csv'
     63buildings_filename_out = 'gc_nexis_modified.csv'
    5464###############################
    5565# Domain definitions
     
    5767
    5868# bounding polygon for study area
    59 polyAll = read_polygon(polygondir+'extent.csv')
     69polyAll = read_polygon(polygondir+'extentv2.csv')
    6070
    6171print 'Area of bounding polygon', polygon_area(polyAll)/1000000.0
     
    7080print 'Area of local polygon', polygon_area(poly_int)/1000000.0
    7181
     82poly_bathy = read_polygon(polygondir+'mainland_only.csv')
     83
    7284###################################################################
    7385# Clipping regions for export to asc and regions for clipping data
     
    7587
    7688# exporting asc grid
    77 eastingmin = 538450
     89eastingmin = 534300
    7890eastingmax = 546775
    79 northingmin = 6890540
    80 northingmax = 6902925
     91northingmin = 6890000
     92northingmax = 6912925
Note: See TracChangeset for help on using the changeset viewer.