source: production/karratha_2005/project.py @ 1793

Last change on this file since 1793 was 1793, checked in by ole, 19 years ago

Added MOST boundary stuff

File size: 561 bytes
Line 
1"""Common filenames and locations for topographic data, meshes and outputs.
2"""
3
4
5from os import sep
6from os.path import expanduser
7
8home = expanduser('~')
9
10
11meshdir = home+sep+'karratha_tsunami_scenario_2005'+sep+'meshes'+sep
12datadir = home+sep+'karratha_tsunami_scenario_2005'+sep+'data'+sep
13outputdir = home+sep+'karratha_tsunami_scenario_2005'+sep+'output'+sep
14boundarydir = home+sep+'karratha_tsunami_scenario_2005'+sep+'boundaries'+sep
15
16
17basename = 'karratha_250m'
18meshname = meshdir + basename
19demname = datadir + basename
20
21boundary_basename = 'SU-AU'
22
23
Note: See TracBrowser for help on using the repository browser.