Package com.vividsolutions.jump.warp
Class CoordinateTransform
- java.lang.Object
-
- com.vividsolutions.jump.warp.CoordinateTransform
-
- Direct Known Subclasses:
AffineTransform,BilinearInterpolatedTransform,DummyTransform,ProjectiveTransform
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 FeatureCollectiontransform(FeatureCollection featureCollection)abstract org.locationtech.jts.geom.Coordinatetransform(org.locationtech.jts.geom.Coordinate c)Maps one Coordinate to another.org.locationtech.jts.geom.Geometrytransform(org.locationtech.jts.geom.Geometry oldGeometry)
-
-
-
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)
-
-