Closed danhamill closed 5 years ago
I have a question about how TimeSeriesContainer containers interpret time series types. In the examples you have:
TimeSeriesContainer
dss_file = "example.dss" pathname = "/REGULAR/TIMESERIES/FLOW//1HOUR/Ex1/" tsc = TimeSeriesContainer() tsc.pathname = pathname tsc.startDateTime = "15JUL2019 19:00:00" tsc.numberValues = 5 tsc.units = "cfs" tsc.type = "INST" tsc.interval = 1 tsc.values = [100,UNDEFINED,500,5000,10000]
When I run this code, I get dss time series of the type `INST-VAL'. Specific questions:
INST-CUM
Is there a docstring that explains this logic?
Thanks,
Dan
INST is not a valid type for time series - this is a type in the example. The HEC-DSS C library probably defaults to INST-VAL if type info is invalid.
I have a question about how
TimeSeriesContainer
containers interpret time series types. In the examples you have:When I run this code, I get dss time series of the type `INST-VAL'. Specific questions:
INST-CUM
?Is there a docstring that explains this logic?
Thanks,
Dan