Package org.locationtech.jts.jump.warp
Class CoordinateTransform
- java.lang.Object
-
- org.locationtech.jts.jump.warp.CoordinateTransform
-
- Direct Known Subclasses:
AffineTransform
,BilinearInterpolatedTransform
,DummyTransform
public abstract class CoordinateTransform extends Object
A function that maps one Coordinate to another.
-
-
Constructor Summary
Constructors Constructor Description CoordinateTransform()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract org.locationtech.jts.geom.Coordinate
transform(org.locationtech.jts.geom.Coordinate c)
Maps one Coordinate to another.org.locationtech.jts.geom.Geometry
transform(org.locationtech.jts.geom.Geometry oldGeometry)
FeatureCollection
transform(FeatureCollection featureCollection)
-
-
-
Method Detail
-
transform
public abstract org.locationtech.jts.geom.Coordinate transform(org.locationtech.jts.geom.Coordinate c)
Maps one Coordinate to another.- Parameters:
c
- the Coordinate to map- Returns:
- a new Coordinate
-
transform
public FeatureCollection transform(FeatureCollection featureCollection) throws JUMPException
- Throws:
JUMPException
-
transform
public org.locationtech.jts.geom.Geometry transform(org.locationtech.jts.geom.Geometry oldGeometry)
-
-