Package elki.data.projection
Class LatLngToECEFProjection<V extends elki.data.NumberVector>
- java.lang.Object
-
- elki.data.projection.LatLngToECEFProjection<V>
-
- Type Parameters:
V- Vector type
- All Implemented Interfaces:
elki.data.projection.Projection<V,V>
public class LatLngToECEFProjection<V extends elki.data.NumberVector> extends java.lang.Object implements elki.data.projection.Projection<V,V>Project (Latitude, Longitude) vectors to (X, Y, Z), from spherical coordinates to ECEF (earth-centered earth-fixed).- Since:
- 0.6.0
- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description private elki.data.NumberVector.Factory<V>factoryVector factory to use.private EarthModelmodelEarth model to use.
-
Constructor Summary
Constructors Constructor Description LatLngToECEFProjection(EarthModel model)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description elki.data.type.SimpleTypeInformation<? super V>getInputDataTypeInformation()elki.data.type.SimpleTypeInformation<V>getOutputDataTypeInformation()voidinitialize(elki.data.type.SimpleTypeInformation<? extends V> in)Vproject(V data)
-
-
-
Field Detail
-
factory
private elki.data.NumberVector.Factory<V extends elki.data.NumberVector> factory
Vector factory to use.
-
model
private EarthModel model
Earth model to use.
-
-
Constructor Detail
-
LatLngToECEFProjection
public LatLngToECEFProjection(EarthModel model)
Constructor.- Parameters:
model- Earth model to use.
-
-