forked from HydrologicEngineeringCenter/hec-dss-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.py
60 lines (54 loc) · 1.81 KB
/
tests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from hec_dss import HecDss
from datetime import datetime
from catalog import Catalog
class Tests:
@staticmethod
def test_issue9():
dss = HecDss("sample7.dss")
pathnames = [
"//SACRAMENTO/PRECIP-INC//1Day/OBS/",
"/EF RUSSIAN/COYOTE/PRECIP-INC//1Hour/TB/"
"/GREEN RIVER/OAKVILLE/ELEVATION//1Hour//"
]
t1 = datetime(2006, 3, 1)
t2 = datetime(2006, 3 ,30)
for path in pathnames:
print(f"reading {path}")
tsc = dss.get(path,t1,t2)
print(f"len(tsc.values) = {len(tsc.values)}")
assert(len(tsc.values)>1)
@staticmethod
def basic_tests():
dss = HecDss("sample7.dss")
print("record count = "+str(dss.recordCount()))
catalog = dss.getCatalog()
print(catalog[0:5])
t1 = datetime(2005, 1, 1)
t2 = datetime(2005, 1 ,4)
tsc = dss.get("//SACRAMENTO/PRECIP-INC//1Day/OBS/",t1,t2)
tsc.print_to_console()
assert(len(tsc.values)>0)
tsc2 = dss.get("//SACRAMENTO/TEMP-MAX//1Day/OBS/",t1,t2)
tsc2.print_to_console()
assert(len(tsc2.values)>0)
# save to a new path
tsc.pathname = "//SACRAMENTO/PRECIP-INC//1Day/OBS-modified/"
dss.put(tsc)
tsc3 = dss.get(tsc.pathname,t1,t2)
assert(len(tsc3.values)== len(tsc.values))
@staticmethod
def catalog_test():
rawPaths = [
"//SACRAMENTO/TEMP-MIN/01Jan1989/1Day/OBS/",
"//SACRAMENTO/TEMP-MIN/01Jan1990/1Day/OBS/",
"//SACRAMENTO/TEMP-MIN/01Jan1991/1Day/OBS/",
"//SACRAMENTO/TEMP-MIN/01Jan1992/1Day/OBS/",
"//SACRAMENTO/TEMP-MIN/01Jan1993/1Day/OBS/"
]
rt = [100,100,100,100,100]
c = Catalog(rawPaths,rt)
c.print()
if __name__ == "__main__":
#Tests.test_issue9()
#Tests.basic_tests()
Tests.catalog_test()