- Timestamp:
- Aug 4, 2008, 12:08:33 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/shallow_water/test_data_manager.py
r5599 r5601 22 22 from anuga.coordinate_transforms.redfearn import degminsec2decimal_degrees 23 23 from anuga.abstract_2d_finite_volumes.util import file_function 24 25 from anuga.utilities.system_tools import get_pathname_from_package 24 26 25 27 # This is needed to run the tests of local functions … … 6550 6552 compress,zeros,fabs,take,size 6551 6553 6552 ordering_filename='thinned_bound_order_test.txt' 6553 testdir = 'urs_test_data' 6554 # Get path where this test is run 6555 path = get_pathname_from_package('anuga.shallow_water') 6556 6557 testdir = os.path.join(path, 'urs_test_data') 6558 ordering_filename=os.path.join(testdir, 'thinned_bound_order_test.txt') 6559 6560 6554 6561 sources = ['1-z.grd','2-z.grd','3-z.grd'] 6555 6562 … … 6759 6766 # make sts file for combined sources 6760 6767 weights = [1., 2., 3.] 6761 ordering_filename='thinned_bound_order_test.txt' 6762 testdir = 'urs_test_data' 6768 6769 path = get_pathname_from_package('anuga.shallow_water') 6770 6771 testdir = os.path.join(path, 'urs_test_data') 6772 ordering_filename=os.path.join(testdir, 'thinned_bound_order_test.txt') 6773 6763 6774 urs_filenames = [os.path.join(testdir,'1-z.grd'), 6764 6775 os.path.join(testdir,'2-z.grd'),
Note: See TracChangeset
for help on using the changeset viewer.