- All Implemented Interfaces:
Serializable
,Comparable<ImagingCondition>
,ControlledVocabulary
@UML(identifier="MD_ImagingConditionCode",
specification=ISO_19115)
public final class ImagingCondition
extends CodeList<ImagingCondition>
Code which indicates conditions which may affect the image.
- Since:
- 2.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter
-
Field Summary
Modifier and TypeFieldDescriptionstatic final ImagingCondition
Portion of the image is blurred.static final ImagingCondition
Portion of the image is partially obscured by cloud coverstatic final ImagingCondition
Acute angle between the plane of the ecliptic (the plane of the planet's orbit) and the plane of the celestial equator.static final ImagingCondition
Portion of the image is partially obscured by fog.static final ImagingCondition
Portion of the image is partially obscured by heavy smoke or dust.static final ImagingCondition
Image was taken at night.static final ImagingCondition
Image was taken during rainfall.static final ImagingCondition
Image was taken during semi-dark conditions or twilight conditions.static final ImagingCondition
Portion of the image is obscured by shadow.static final ImagingCondition
Portion of the image is obscured by snow.static final ImagingCondition
The absence of collection data of a given point or area caused by the relative location of topographic features which obstruct the collection path between the collector(s) and the subject(s) of interest. -
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns the list of codes of the same kind as this code list element.static ImagingCondition
Returns the imaging condition that matches the given string, or returns a new one if none match it.static ImagingCondition[]
values()
Returns the list ofImagingCondition
s.Methods inherited from class org.opengis.util.CodeList
compareTo, identifier, name, ordinal, readResolve, toString, valueOf, valueOf, valueOf, values
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.opengis.util.ControlledVocabulary
names
-
Field Details
-
BLURRED_IMAGE
@UML(identifier="blurredImage", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition BLURRED_IMAGEPortion of the image is blurred. -
CLOUD
@UML(identifier="cloud", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition CLOUDPortion of the image is partially obscured by cloud cover -
DEGRADING_OBLIQUITY
@UML(identifier="degradingObliquity", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition DEGRADING_OBLIQUITYAcute angle between the plane of the ecliptic (the plane of the planet's orbit) and the plane of the celestial equator. -
FOG
@UML(identifier="fog", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition FOGPortion of the image is partially obscured by fog. -
HEAVY_SMOKE_OR_DUST
@UML(identifier="heavySmokeOrDust", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition HEAVY_SMOKE_OR_DUSTPortion of the image is partially obscured by heavy smoke or dust. -
NIGHT
@UML(identifier="night", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition NIGHTImage was taken at night. -
RAIN
@UML(identifier="rain", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition RAINImage was taken during rainfall. -
SEMI_DARKNESS
@UML(identifier="semiDarkness", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition SEMI_DARKNESSImage was taken during semi-dark conditions or twilight conditions. -
SHADOW
@UML(identifier="shadow", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition SHADOWPortion of the image is obscured by shadow. -
SNOW
@UML(identifier="snow", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition SNOWPortion of the image is obscured by snow. -
TERRAIN_MASKING
@UML(identifier="terrainMasking", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition TERRAIN_MASKINGThe absence of collection data of a given point or area caused by the relative location of topographic features which obstruct the collection path between the collector(s) and the subject(s) of interest.
-
-
Method Details
-
values
Returns the list ofImagingCondition
s.- Returns:
- the list of codes declared in the current JVM.
-
family
Returns the list of codes of the same kind as this code list element. Invoking this method is equivalent to invokingvalues()
, except that this method can be invoked on an instance of the parentCodeList
class.- Specified by:
family
in interfaceControlledVocabulary
- Specified by:
family
in classCodeList<ImagingCondition>
- Returns:
- all code values for this code list.
-
valueOf
Returns the imaging condition that matches the given string, or returns a new one if none match it. This methods returns the first instance (in declaration order) for which the name is equals, ignoring case, to the given name. If no existing instance is found, then a new one is created for the given name.- Parameters:
code
- the name of the code to fetch or to create.- Returns:
- a code matching the given name.
-