source: production/karratha_2005/export_results.py @ 1920

Last change on this file since 1920 was 1920, checked in by ole, 18 years ago

Karratha

File size: 645 bytes
Line 
1import project, os
2
3from pyvolution.data_manager import sww2dem
4
5
6#name = project.outputname + '_0.0tide_notsunami'
7#name = project.outputname + '_0.0tide'
8
9name = project.outputname
10
11sww2dem(name, basename_out = name + '_momentum',
12        #quantity = 'stage-elevation',  #Depth
13        quantity = '(xmomentum**2 + ymomentum**2)**0.5',  #Absolute momentum
14        cellsize = 50,
15        #cellsize = 10,       
16        #easting_min = 465646,
17        #easting_max = 480286,
18        #northing_min = 7712865,
19        #northing_max = 7724233,       
20        reduction = max,
21        verbose = True,
22        format = 'ers')
23
Note: See TracBrowser for help on using the repository browser.