Uses of Interface
org.locationtech.proj4j.CoordinateTransform
-
Packages that use CoordinateTransform Package Description org.locationtech.proj4j org.locationtech.proj4j.geoapi Wraps the PROJ4J classes behind the equivalent GeoAPI interfaces. -
-
Uses of CoordinateTransform in org.locationtech.proj4j
Classes in org.locationtech.proj4j that implement CoordinateTransform Modifier and Type Class Description class
BasicCoordinateTransform
Represents the operation of transforming aProjCoordinate
from oneCoordinateReferenceSystem
into a different one, using reprojection and datum conversion as required.Methods in org.locationtech.proj4j that return CoordinateTransform Modifier and Type Method Description CoordinateTransform
CoordinateTransformFactory. createTransform(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS)
Creates a transformation from a source CRS to a target CRS, following the logic in PROJ.4. -
Uses of CoordinateTransform in org.locationtech.proj4j.geoapi
Fields in org.locationtech.proj4j.geoapi declared as CoordinateTransform Modifier and Type Field Description (package private) CoordinateTransform
TransformWrapper. impl
The wrapped PROJ4 implementation.Methods in org.locationtech.proj4j.geoapi that return CoordinateTransform Modifier and Type Method Description CoordinateTransform
Importer. convert(org.opengis.referencing.operation.CoordinateOperation src)
Returns the given coordinate operation as a PROJ4J implementation.static CoordinateTransform
Wrappers. proj4j(org.opengis.referencing.operation.CoordinateOperation src)
Returns the given coordinate operation as a PROJ4J implementation.Methods in org.locationtech.proj4j.geoapi with parameters of type CoordinateTransform Modifier and Type Method Description static org.opengis.referencing.operation.CoordinateOperation
Wrappers. geoapi(CoordinateTransform impl, boolean is3D)
Wraps the given PROJ4J coordinate transform behind the equivalent GeoAPI interface.(package private) static TransformWrapper
TransformWrapper. wrap(CoordinateTransform impl, boolean is3D)
Wraps the given implementation.(package private) static OperationMethodWrapper
OperationMethodWrapper. wrapTarget(CoordinateTransform impl)
Wraps the target CRS of the given transform.Constructors in org.locationtech.proj4j.geoapi with parameters of type CoordinateTransform Constructor Description ProjectionWrapper2D(CoordinateTransform impl)
Creates a new wrapper for the given PROJ4J implementation.ProjectionWrapper3D(CoordinateTransform impl)
Creates a new wrapper for the given PROJ4J implementation.TransformWrapper(CoordinateTransform impl)
Creates a new wrapper for the given PROJ4J implementation.TransformWrapper2D(CoordinateTransform impl)
Creates a new wrapper for the given PROJ4J implementation.TransformWrapper3D(CoordinateTransform impl)
Creates a new wrapper for the given PROJ4J implementation.
-