- All Implemented Interfaces:
Serializable
,Comparable<PixelOrientation>
@UML(identifier="MD_PixelOrientationCode",
specification=ISO_19115)
public final class PixelOrientation
extends CodeList<PixelOrientation>
Point in a pixel corresponding to the Earth location of the pixel.
This code list is restricted to the two-dimensional case. A similar code
list, PixelInCell
, can be used for
n-dimensional grid cell.
- Since:
- 2.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class CodeList
CodeList.Filter
-
Field Summary
Modifier and TypeFieldDescriptionstatic final PixelOrientation
Point in a pixel corresponding to the Earth location of the pixel.static final PixelOrientation
The corner in the pixel closest to the origin of the SRS; if two are at the same distance from the origin, the one with the smallest x-value.static final PixelOrientation
Next corner counterclockwise from the lower left.static final PixelOrientation
Next corner counterclockwise from the upper right.static final PixelOrientation
Next corner counterclockwise from the lower right. -
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns the list of enumerations of the same kind as this enum.static PixelOrientation
Returns the pixel orientation that matches the given string, or returns a new one if none match it.static PixelOrientation[]
values()
Returns the list ofPixelOrientation
s.
-
Field Details
-
CENTER
@UML(identifier="center", obligation=CONDITIONAL, specification=ISO_19115) public static final PixelOrientation CENTERPoint in a pixel corresponding to the Earth location of the pixel.- See Also:
-
LOWER_LEFT
@UML(identifier="lowerLeft", obligation=CONDITIONAL, specification=ISO_19115) public static final PixelOrientation LOWER_LEFTThe corner in the pixel closest to the origin of the SRS; if two are at the same distance from the origin, the one with the smallest x-value.- See Also:
- TODO:
- The sentence "closest to the origin of the SRS probably applies to positive coordinates only. For the general case including both positive and negative coordinates, we should probably read "in the direction of negative infinity". This interpretation should be clarified with ISO.
-
LOWER_RIGHT
@UML(identifier="lowerRight", obligation=CONDITIONAL, specification=ISO_19115) public static final PixelOrientation LOWER_RIGHTNext corner counterclockwise from the lower left. -
UPPER_RIGHT
@UML(identifier="upperRight", obligation=CONDITIONAL, specification=ISO_19115) public static final PixelOrientation UPPER_RIGHTNext corner counterclockwise from the lower right. -
UPPER_LEFT
@UML(identifier="upperLeft", obligation=CONDITIONAL, specification=ISO_19115) public static final PixelOrientation UPPER_LEFTNext corner counterclockwise from the upper right.
-
-
Method Details
-
values
Returns the list ofPixelOrientation
s.- Returns:
- The list of codes declared in the current JVM.
-
family
Returns the list of enumerations of the same kind as this enum.- Specified by:
family
in classCodeList<PixelOrientation>
- Returns:
- The codes of the same kind as this code.
-
valueOf
Returns the pixel orientation that matches the given string, or returns a new one if none match it.- Parameters:
code
- The name of the code to fetch or to create.- Returns:
- A code matching the given name.
-