Package de.dlr.proseo.model.enums
Enum Class ProcessingLevel
- All Implemented Interfaces:
Serializable,Comparable<ProcessingLevel>,Constable
Processing level, usually indicating the number of processing steps required to create a product of this class from
unprocessed ("level 0") data. The enumeration values have been derived from a number of sources (listed below).
- Author:
- Dr. Thomas Bassler
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionReconstructed, unprocessed instrument and payload dataData derived from level 0 at the instrument’s full time/space resolutionReconstructed, unprocessed instrument data at full resolution, time-referenced, and annotated with ancillary informationLevel 1A data that have been processed to sensor unitsFurther processed data at sensor unitsData derived from Level 1 data that have been processed to geophysical quantities of interestLevel 2 data in a first or intermediate pro- cessing stageFurther processed level 2(A) dataSometimes referred to as “level 2 cumula- tive”, i. e. aggregation of level 2 data over a larger time frameVariables mapped on uniform space-time grid scales (resampling)Further derived products -
Method Summary
Modifier and TypeMethodDescriptionstatic ProcessingLevelReturns the enum constant of this class with the specified name.static ProcessingLevel[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
L0
Reconstructed, unprocessed instrument and payload data -
L1
Data derived from level 0 at the instrument’s full time/space resolution -
L1A
Reconstructed, unprocessed instrument data at full resolution, time-referenced, and annotated with ancillary information -
L1B
Level 1A data that have been processed to sensor units -
L1C
Further processed data at sensor units -
L2
Data derived from Level 1 data that have been processed to geophysical quantities of interest -
L2A
Level 2 data in a first or intermediate pro- cessing stage -
L2B
Further processed level 2(A) data -
L2C
Sometimes referred to as “level 2 cumula- tive”, i. e. aggregation of level 2 data over a larger time frame -
L3
Variables mapped on uniform space-time grid scales (resampling) -
L4
Further derived products
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-