hec.const
Provides constants and related items
UNDEFINED =
-3.4028234663852886e+38
CWMS =
'CWMS'
DSS =
'DSS'
class
Combine(enum.Enum):
Enumeration for combining selection states (current, new)
NOOP =
<Combine.NOOP: 0>
REPLACE =
<Combine.REPLACE: 1>
AND =
<Combine.AND: 2>
OR =
<Combine.OR: 3>
XOR =
<Combine.XOR: 4>
class
PercentileMethods(enum.Enum):
Enumeration of methods for computing percentiles
HECMATH: is used only in TimeSeries.cyclic_analysys() and specifies using the Java HecMath algorithm for computing the percentiles in the cyclic analysis statistics.- Others: See the NumPy docs for descriptions
HECMATH =
<PercentileMethods.HECMATH: 0>
AVERAGED_INVERTED_CDF =
<PercentileMethods.AVERAGED_INVERTED_CDF: 1>
CLOSEST_OBSERVATION =
<PercentileMethods.CLOSEST_OBSERVATION: 2>
HAZEN =
<PercentileMethods.HAZEN: 3>
HIGHER =
<PercentileMethods.HIGHER: 4>
INTERPOLATED_INVERTED_CDF =
<PercentileMethods.INTERPOLATED_INVERTED_CDF: 5>
INVERTED_CDF =
<PercentileMethods.INVERTED_CDF: 6>
LINEAR =
<PercentileMethods.LINEAR: 7>
LOWER =
<PercentileMethods.LOWER: 8>
MEDIAN_UNBIASED =
<PercentileMethods.MEDIAN_UNBIASED: 9>
MIDPOINT =
<PercentileMethods.MIDPOINT: 10>
NEAREST =
<PercentileMethods.NEAREST: 11>
NORMAL_UNBIASED =
<PercentileMethods.NORMAL_UNBIASED: 12>
WEIBULL =
<PercentileMethods.WEIBULL: 13>
class
Safety(enum.Enum):
Enumeration for specifying behavior of potentially unsafe operations.
NOOP_ON_UNSAFE: No action is taken on potientially unsafe operationsWARN_ON_UNSAFE: Potentially unsafe operations will generate a warningERROR_ON_UNSAFE: Potentially unsafe operations will raise an exception
NOOP_ON_UNSAFE =
<Safety.NOOP_ON_UNSAFE: 0>
WARN_ON_UNSAFE =
<Safety.WARN_ON_UNSAFE: 1>
ERROR_ON_UNSAFE =
<Safety.ERROR_ON_UNSAFE: 2>
class
Select(enum.Enum):
Enumeration for specifying items to select
NONE =
<Select.NONE: 0>
ALL =
<Select.ALL: 1>
INVERT =
<Select.INVERT: 2>
class
SelectionState(enum.Enum):
Enumeration for specifying selection durability
TRANSIENT =
<SelectionState.TRANSIENT: 0>
DURABLE =
<SelectionState.DURABLE: 1>