Package org.opengis.metadata.lineage
Interface NominalResolution
-
@UML(identifier="LE_NominalResolution", specification=ISO_19115_2) public interface NominalResolution
Distance between consistent parts of (centre, left side, right side) adjacent pixels.- Since:
- 2.3
- Version:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.DoublegetGroundResolution()Distance between consistent parts of (centre, left side, right side) adjacent pixels in the object space.java.lang.DoublegetScanningResolution()Distance between consistent parts of (centre, left side, right side) adjacent pixels in the scan plane.
-
-
-
Method Detail
-
getScanningResolution
@UML(identifier="scanningResolution", obligation=MANDATORY, specification=ISO_19115_2) java.lang.Double getScanningResolution()
Distance between consistent parts of (centre, left side, right side) adjacent pixels in the scan plane.Warning: The return type of this method may change in GeoAPI 3.1. It may be replaced by the
Lengthtype in order to provide unit of measurement together with the value.- Returns:
- Distance between consistent parts of adjacent pixels in the scan plane.
-
getGroundResolution
@UML(identifier="groundResolution", obligation=MANDATORY, specification=ISO_19115_2) java.lang.Double getGroundResolution()
Distance between consistent parts of (centre, left side, right side) adjacent pixels in the object space.Warning: The return type of this method may change in GeoAPI 3.1. It may be replaced by the
Lengthtype in order to provide unit of measurement together with the value.- Returns:
- Distance between consistent parts of adjacent pixels in the object space.
-
-