public static enum NetcdfDataset.Enhance extends java.lang.Enum<NetcdfDataset.Enhance>
Enum Constant and Description |
---|
ApplyClassifier
Classify doubles or floats based on positive/negative into 1 or 0
x<0 --> 0 x>0 --> 1
|
ApplyNormalizer
Calculate minimum value and range (maximum - minimum) and apply to data: (z - min)/range.
|
ApplyScaleOffset
Apply scale and offset to values, promoting the data type if needed.
|
ApplyStandardizer
Calculate mean and standard deviation and apply to data: (z-mean)/standard_deviation.
|
ConvertEnums
Convert enums to Strings.
|
ConvertMissing
Replace
missing data with NaNs, for efficiency. |
ConvertUnsigned
Convert unsigned values to signed values.
|
CoordSystems
Build coordinate systems.
|
IncompleteCoordSystems
Build coordinate systems allowing for incomplete coordinate systems (i.e.
|
Modifier and Type | Method and Description |
---|---|
static NetcdfDataset.Enhance |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NetcdfDataset.Enhance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NetcdfDataset.Enhance ApplyClassifier
public static final NetcdfDataset.Enhance ApplyNormalizer
FLOAT
or DOUBLE
, this has no effect.public static final NetcdfDataset.Enhance ApplyScaleOffset
public static final NetcdfDataset.Enhance ApplyStandardizer
FLOAT
or DOUBLE
, this has no effect.public static final NetcdfDataset.Enhance ConvertEnums
public static final NetcdfDataset.Enhance ConvertMissing
missing
data with NaNs, for efficiency. Note that if the
enhanced data type is not FLOAT
or DOUBLE
, this has no effect.public static final NetcdfDataset.Enhance ConvertUnsigned
CDM.UNSIGNED
variables, reinterpret the bit patterns of any
negative values as unsigned. The result will be positive values that must be stored in a
larger data type
.public static final NetcdfDataset.Enhance CoordSystems
public static final NetcdfDataset.Enhance IncompleteCoordSystems
public static NetcdfDataset.Enhance valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static NetcdfDataset.Enhance[] values()
for (NetcdfDataset.Enhance c : NetcdfDataset.Enhance.values()) System.out.println(c);