Changeset 9566 for trunk/anuga_core/source/anuga/file/tests
- Timestamp:
- Jan 31, 2015, 11:47:13 PM (10 years ago)
- Location:
- trunk/anuga_core/source/anuga/file/tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/file/tests/test_csv.py
r9551 r9566 229 229 230 230 path = get_pathname_from_package('anuga.shallow_water') 231 testfile = os.path.join(path, 'test ', 'data', 'polygon_values_example.csv')231 testfile = os.path.join(path, 'tests', 'data', 'polygon_values_example.csv') 232 232 233 233 polygons, values = load_csv_as_polygons(testfile, … … 306 306 307 307 path = get_pathname_from_package('anuga.shallow_water') 308 testfile = os.path.join(path, 'test ', 'data', 'polygon_values_example.csv')308 testfile = os.path.join(path, 'tests', 'data', 'polygon_values_example.csv') 309 309 310 310 polygons, values = load_csv_as_polygons(testfile, … … 386 386 387 387 path = get_pathname_from_package('anuga.shallow_water') 388 testfile = os.path.join(path, 'test ', 'data', 'polygon_values_example.csv')388 testfile = os.path.join(path, 'tests', 'data', 'polygon_values_example.csv') 389 389 390 390 polygons, values = load_csv_as_building_polygons(testfile, -
trunk/anuga_core/source/anuga/file/tests/test_urs.py
r9490 r9566 74 74 75 75 76 def dave_test_URS_points_needed(self):76 def in_development_URS_points_needed(self): 77 77 ll_lat = -21.51667 78 78 ll_long = 114.51667 … … 89 89 verbose=self.verbose) 90 90 91 def X_test_URS_points_neededII(self):92 ll_lat = -21.593 ll_long = 114.594 grid_spacing = 1./60.95 lat_amount = 3096 long_amount = 3097 98 # change this so lats and longs are inputed, then converted99 100 #boundary_polygon = [[7660000,250000],[7660000,280000],101 # [7630000,280000],[7630000,250000]]102 calculate_boundary_points(boundary_polygon, ll_lat, ll_long,103 grid_spacing,104 lat_amount, long_amount,105 verbose=self.verbose)106 91 107 92 def test_URS_points_northern_hemisphere(self): … … 167 152 assert False 168 153 169 def covered_in_other_tests_test_URS_points_needed_poly1(self):154 def in_development_URS_points_needed_poly1(self): 170 155 # Values used for FESA 2007 results 171 156 # domain in southern hemisphere zone 51 … … 194 179 195 180 196 def covered_in_other_tests_test_URS_points_needed_poly2(self):181 def in_development_URS_points_needed_poly2(self): 197 182 # Values used for 2004 validation work 198 183 # domain in northern hemisphere zone 47
Note: See TracChangeset
for help on using the changeset viewer.