Changeset 5446
- Timestamp:
- Jun 27, 2008, 3:07:21 PM (15 years ago)
- Location:
- anuga_work/production/perth
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/perth/export_results_all.py
r5415 r5446 26 26 print 'output dir:', name 27 27 28 area = ['Geordie', 'Sorrento', ' Perth', 'Rockingham']28 area = ['Geordie', 'Sorrento', 'Fremantle', 'Rockingham'] 29 29 30 30 for which_area in area: … … 41 41 northing_max = project.ymaxSorrento 42 42 43 if which_area == ' Perth':44 easting_min = project.xmin Perth45 easting_max = project.xmax Perth46 northing_min = project.ymin Perth47 northing_max = project.ymax Perth43 if which_area == 'Fremantle': 44 easting_min = project.xminFremantle 45 easting_max = project.xmaxFremantle 46 northing_min = project.yminFremantle 47 northing_max = project.ymaxFremantle 48 48 49 49 if which_area == 'Rockingham': -
anuga_work/production/perth/project.py
r5432 r5446 216 216 217 217 #Geordie Bay extract ascii grid 218 xminGeordie = 35 9500219 xmaxGeordie = 36 0850220 yminGeordie = 645 9400221 ymaxGeordie = 646 0430218 xminGeordie = 358000 219 xmaxGeordie = 362000 220 yminGeordie = 6458500 221 ymaxGeordie = 6461000 222 222 223 223 #Sorrento extract ascii grid 224 xminSorrento = 379 560225 xmaxSorrento = 38 0920226 yminSorrento = 6477 750227 ymaxSorrento = 64 79030228 229 # Perthextract ascii grid230 xmin Perth = 379106231 xmax Perth = 383100232 ymin Perth = 6450500233 ymax Perth = 6461150224 xminSorrento = 379000 225 xmaxSorrento = 382500 226 yminSorrento = 6477000 227 ymaxSorrento = 6480000 228 229 #Fremantle extract ascii grid 230 xminFremantle = 376000 231 xmaxFremantle = 388000 232 yminFremantle = 6449000 233 ymaxFremantle = 6461000 234 234 235 235 #Rockingham extract ascii grid 236 xminRockingham = 37 5500237 xmaxRockingham = 38 3100238 yminRockingham = 642 7900239 ymaxRockingham = 643 0100240 236 xminRockingham = 373500 237 xmaxRockingham = 385500 238 yminRockingham = 6424000 239 ymaxRockingham = 6433000 240
Note: See TracChangeset
for help on using the changeset viewer.