Package org.esa.snap.core.datamodel
Class TiePointGeoCoding.Approximation
- java.lang.Object
-
- org.esa.snap.core.datamodel.TiePointGeoCoding.Approximation
-
- Enclosing class:
- TiePointGeoCoding
public static final class TiePointGeoCoding.Approximation extends Object
-
-
Constructor Summary
Constructors Constructor Description Approximation(FXYSum fX, FXYSum fY, double centerLat, double centerLon, double minSquareDistance)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getCenterLat()
double
getCenterLon()
FXYSum
getFX()
FXYSum
getFY()
double
getMinSquareDistance()
double
getSquareDistance(double lat, double lon)
Computes the square distance to the given geographical coordinate.
-
-
-
Method Detail
-
getFX
public final FXYSum getFX()
-
getFY
public final FXYSum getFY()
-
getCenterLat
public double getCenterLat()
-
getCenterLon
public double getCenterLon()
-
getMinSquareDistance
public double getMinSquareDistance()
-
getSquareDistance
public final double getSquareDistance(double lat, double lon)
Computes the square distance to the given geographical coordinate.- Parameters:
lat
- the latitude valuelon
- the longitude value- Returns:
- the square distance
-
-