Ignore:
Timestamp:
Sep 22, 2006, 12:21:09 PM (18 years ago)
Author:
sexton
Message:

updates for Hobart and want to export elevation grid for Onslow

File:
1 edited

Legend:

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

    r3638 r3650  
    1313
    1414# data provided by Tas SES and checked by NM&I
    15 onshore_name = 'hob3_topo'
     15#onshore_name = 'hob3_topo' # original
     16onshore_name = 'hob5_topo' # 12.5m grid and clipped to 100m elevation or 3000m from coast
     17onshore_name_25 = 'hob5_topo_25' # 25m grid and clipped to 100m elevation or 3000m from coast
    1618offshore_name_tas1 = 'derwent_2m'
    1719offshore_name_tas2 = 'derwent_5m'
    18 offshore_name_tas3 = 'south_east_tas'
     20offshore_name_tas3 = 'south_east_tas' #actually this is AHO
    1921offshore_name_tas4 = 'hobart_1m'
    2022
     
    8587
    8688onshore_dem_name = datadir + onshore_name
     89onshore_dem_name_25 = datadir + onshore_name_25
     90all_onshore_dem_name = datadir + 'combined_onshore'
    8791offshore_dem_name_local1 = datadir + offshore_name_tas1
    8892offshore_dem_name_local2 = datadir + offshore_name_tas2
     
    110114outputname = outputtimedir + basename  #Used by post processing
    111115
    112 # region to export
     116# clipping 12.5m onshore data set
     117eastingmin = 520000
     118eastingmax = 536000
     119northingmin = 5245000
     120northingmax = 5260000
     121
     122# region to export for inundation map
    113123e_min_area = 500000
    114124e_max_area = 580000
     
    132142polyAll, zone = convert_points_from_latlon_to_utm([d0, d1, d2, d3])
    133143refzone = zone
     144NWcorner = polyAll[0]
     145SEcorner = polyAll[2]
     146
     147# region to export for Alex to make bathymetry map
     148e_min_area = 480000#NWcorner[0]
     149e_max_area = 600000#SEcorner[0]
     150n_min_area = 5156000#NWcorner[1]
     151n_max_area = 5285000#SEcorner[1]
    134152
    135153#Interior region - Hobart city area + Glenorchy, Kingston
Note: See TracChangeset for help on using the changeset viewer.