Class PixelOrientation
- 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:
- GeoAPI 2.0
- Author:
- Martin Desruisseaux (IRD)
- See Also:
-
Field Summary
FieldsModifier 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 than 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:
-
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 than this enum.- Specified by:
family
in classCodeList<PixelOrientation>
- Returns:
- The codes of the same kind than 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.
-