Class FixedLatLng
- java.lang.Object
-
- org.apache.lucene.spatial.geometry.LatLng
-
- org.apache.lucene.spatial.geometry.FixedLatLng
-
@Deprecated public class FixedLatLng extends LatLng
Deprecated.NOTE: This API is still in flux and might change in incompatible ways in the next release.
-
-
Field Summary
Fields Modifier and Type Field Description static double
SCALE_FACTOR
Deprecated.static int
SCALE_FACTOR_INT
Deprecated.
-
Constructor Summary
Constructors Constructor Description FixedLatLng(int lat, int lng)
Deprecated.FixedLatLng(LatLng ll)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description LatLng
calculateMidpoint(LatLng other)
Deprecated.Calculate the midpoint between this point an another.LatLng
copy()
Deprecated.static int
doubleToFixed(double d)
Deprecated.boolean
equals(Object obj)
Deprecated.static double
fixedToDouble(int fixed)
Deprecated.int
getFixedLat()
Deprecated.int
getFixedLng()
Deprecated.double
getLat()
Deprecated.double
getLng()
Deprecated.int
hashCode()
Deprecated.boolean
isFixedPoint()
Deprecated.boolean
isNormalized()
Deprecated.LatLng
normalize()
Deprecated.protected void
setLat(int lat)
Deprecated.protected void
setLng(int lng)
Deprecated.FixedLatLng
toFixed()
Deprecated.FloatLatLng
toFloat()
Deprecated.-
Methods inherited from class org.apache.lucene.spatial.geometry.LatLng
arcDistance, arcDistance, fromCartesian, toCartesian, toString
-
-
-
-
Field Detail
-
SCALE_FACTOR
public static final double SCALE_FACTOR
Deprecated.- See Also:
- Constant Field Values
-
SCALE_FACTOR_INT
public static final int SCALE_FACTOR_INT
Deprecated.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
FixedLatLng
public FixedLatLng(int lat, int lng)
Deprecated.
-
FixedLatLng
public FixedLatLng(LatLng ll)
Deprecated.
-
-
Method Detail
-
setLat
protected void setLat(int lat)
Deprecated.
-
setLng
protected void setLng(int lng)
Deprecated.
-
fixedToDouble
public static double fixedToDouble(int fixed)
Deprecated.
-
doubleToFixed
public static int doubleToFixed(double d)
Deprecated.
-
getFixedLat
public int getFixedLat()
Deprecated.- Specified by:
getFixedLat
in classLatLng
-
getFixedLng
public int getFixedLng()
Deprecated.- Specified by:
getFixedLng
in classLatLng
-
isFixedPoint
public boolean isFixedPoint()
Deprecated.- Specified by:
isFixedPoint
in classLatLng
-
toFixed
public FixedLatLng toFixed()
Deprecated.
-
toFloat
public FloatLatLng toFloat()
Deprecated.
-
isNormalized
public boolean isNormalized()
Deprecated.- Specified by:
isNormalized
in classLatLng
-
calculateMidpoint
public LatLng calculateMidpoint(LatLng other)
Deprecated.Description copied from class:LatLng
Calculate the midpoint between this point an another. Respects fixed vs floating point- Specified by:
calculateMidpoint
in classLatLng
-
-