Changeset 2185


Ignore:
Timestamp:
Jan 4, 2006, 4:32:20 PM (18 years ago)
Author:
sexton
Message:

Update project file for Sydney tsunami scenario to include additional interior region (and potential to change clipping regions)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • production/sydney_2006/project.py

    r2181 r2185  
    5151p3 = [north, west]
    5252   
    53 polygon = [p0, p1, p2, p3]
     53polygonall = [p0, p1, p2, p3]
    5454refzone = 56
    5555
    56 #Interior regions
     56# setting up problem area for doing just around the harbour
     57hsouth = degminsec2decimal_degrees(-33,54,0)
     58hnorth = degminsec2decimal_degrees(-33,48,0)
     59hwest = degminsec2decimal_degrees(151,0,0)
     60heast = degminsec2decimal_degrees(151,30,0)
     61
     62hp0 = [hsouth, hwest]
     63hp1 = [hsouth, heast]
     64hp2 = [hnorth, heast]
     65hp3 = [hnorth, hwest]
     66polygon_h = [hp0, hp1, hp2, hp3]
     67
     68#Interior regions - the Harbour
    5769harbour_south = degminsec2decimal_degrees(-33,53,0)
    5870harbour_north = degminsec2decimal_degrees(-33,47,0)
    5971harbour_west = degminsec2decimal_degrees(151,5,0)
    60 harbour_east = degminsec2decimal_degrees(151,15,0)
     72harbour_east = degminsec2decimal_degrees(151,19,0)
    6173
    6274k0 = [harbour_south, harbour_west]
     
    6779harbour_polygon = [k0, k1, k2, k3]
    6880
     81# setting up problem area for doing just around Botany Bay
     82bsouth = degminsec2decimal_degrees(-33,56,0)
     83bnorth = degminsec2decimal_degrees(-34,3,0)
     84bwest = degminsec2decimal_degrees(151,0,0)
     85beast = degminsec2decimal_degrees(151,30,0)
    6986
     87bp0 = [bsouth, bwest]
     88bp1 = [bsouth, beast]
     89bp2 = [bnorth, beast]
     90bp3 = [bnorth, bwest]
     91polygon_bb = [bp0, bp1, bp2, bp3]
     92
     93#Interior region - Botany Bay
     94botanybay_south = degminsec2decimal_degrees(-33,58,0)
     95botanybay_north = degminsec2decimal_degrees(-34,1,0)
     96botanybay_west = degminsec2decimal_degrees(151,5,0)
     97botanybay_east = degminsec2decimal_degrees(151,18,0)
     98
     99j0 = [botanybay_south, botanybay_west]
     100j1 = [botanybay_south, botanybay_east]
     101j2 = [botanybay_north, botanybay_east]
     102j3 = [botanybay_north, botanybay_west]   
     103
     104botanybay_polygon = [j0, j1, j2, j3]
     105
Note: See TracChangeset for help on using the changeset viewer.