Uses of Class
org.locationtech.proj4j.CoordinateReferenceSystem
-
Packages that use CoordinateReferenceSystem Package Description org.locationtech.proj4j org.locationtech.proj4j.geoapi Wraps the PROJ4J classes behind the equivalent GeoAPI interfaces.org.locationtech.proj4j.parser org.locationtech.proj4j.util -
-
Uses of CoordinateReferenceSystem in org.locationtech.proj4j
Fields in org.locationtech.proj4j declared as CoordinateReferenceSystem Modifier and Type Field Description static CoordinateReferenceSystem
CoordinateReferenceSystem. CS_GEO
private CoordinateReferenceSystem
BasicCoordinateTransform. srcCRS
private CoordinateReferenceSystem
BasicCoordinateTransform. tgtCRS
Methods in org.locationtech.proj4j that return CoordinateReferenceSystem Modifier and Type Method Description CoordinateReferenceSystem
CRSFactory. createFromName(java.lang.String name)
Creates aCoordinateReferenceSystem
(CRS) from a well-known name.CoordinateReferenceSystem
CRSFactory. createFromParameters(java.lang.String name, java.lang.String paramStr)
Creates aCoordinateReferenceSystem
from a PROJ.4 projection parameter string.CoordinateReferenceSystem
CRSFactory. createFromParameters(java.lang.String name, java.lang.String[] params)
Creates aCoordinateReferenceSystem
defined by an array of PROJ.4 projection parameters.CoordinateReferenceSystem
CoordinateReferenceSystem. createGeographic()
Creates a geographic (unprojected)CoordinateReferenceSystem
based on theDatum
of this CRS.CoordinateReferenceSystem
BasicCoordinateTransform. getSourceCRS()
CoordinateReferenceSystem
CoordinateTransform. getSourceCRS()
CoordinateReferenceSystem
BasicCoordinateTransform. getTargetCRS()
CoordinateReferenceSystem
CoordinateTransform. getTargetCRS()
Methods in org.locationtech.proj4j with parameters of type CoordinateReferenceSystem 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.Constructors in org.locationtech.proj4j with parameters of type CoordinateReferenceSystem Constructor Description BasicCoordinateTransform(CoordinateReferenceSystem srcCRS, CoordinateReferenceSystem tgtCRS)
Creates a transformation from a sourceCoordinateReferenceSystem
to a target one. -
Uses of CoordinateReferenceSystem in org.locationtech.proj4j.geoapi
Fields in org.locationtech.proj4j.geoapi declared as CoordinateReferenceSystem Modifier and Type Field Description (package private) CoordinateReferenceSystem
AbstractCRS. impl
The wrapped PROJ4 implementation.Methods in org.locationtech.proj4j.geoapi that return CoordinateReferenceSystem Modifier and Type Method Description CoordinateReferenceSystem
Importer. convert(org.opengis.referencing.crs.SingleCRS src)
Returns the given CRS as a PROJ4J implementation.static CoordinateReferenceSystem
Wrappers. proj4j(org.opengis.referencing.crs.SingleCRS src)
Returns the given CRS as a PROJ4J implementation.private static CoordinateReferenceSystem
OperationFactoryWrapper. unwrap(java.lang.String name, org.opengis.referencing.crs.CoordinateReferenceSystem crs)
Returns the given CRS as a PROJ4J implementation.Methods in org.locationtech.proj4j.geoapi with parameters of type CoordinateReferenceSystem Modifier and Type Method Description static org.opengis.referencing.crs.SingleCRS
Wrappers. geoapi(CoordinateReferenceSystem impl, boolean is3D)
Wraps the given PROJ4J CRS behind the equivalent GeoAPI interface.private static java.lang.String
TransformWrapper. getName(CoordinateReferenceSystem crs)
Returns the name of the given CRS, or an arbitrary name if none is specified.private static Projection
TransformWrapper. getProjection(CoordinateReferenceSystem crs)
Returns the projection of the given CRS, ornull
if none.(package private) static AbstractCRS
AbstractCRS. wrap(CoordinateReferenceSystem impl, boolean is3D)
Wraps the given implementation.(package private) static DatumWrapper
DatumWrapper. wrap(CoordinateReferenceSystem crs)
Wraps the given implementation.Constructors in org.locationtech.proj4j.geoapi with parameters of type CoordinateReferenceSystem Constructor Description AbstractCRS(CoordinateReferenceSystem impl, boolean is3D)
Creates a new wrapper for the given PROJ4J implementation.GeographicCRSWrapper(CoordinateReferenceSystem impl, boolean is3D)
Creates a new wrapper for the given PROJ4J implementation.ProjectedCRSWrapper(CoordinateReferenceSystem impl, boolean is3D)
Creates a new wrapper for the given PROJ4J implementation. -
Uses of CoordinateReferenceSystem in org.locationtech.proj4j.parser
Methods in org.locationtech.proj4j.parser that return CoordinateReferenceSystem Modifier and Type Method Description CoordinateReferenceSystem
Proj4Parser. parse(java.lang.String name, java.lang.String[] args)
-
Uses of CoordinateReferenceSystem in org.locationtech.proj4j.util
Fields in org.locationtech.proj4j.util with type parameters of type CoordinateReferenceSystem Modifier and Type Field Description private java.util.concurrent.ConcurrentHashMap<java.lang.String,CoordinateReferenceSystem>
CRSCache. crsCache
Methods in org.locationtech.proj4j.util that return CoordinateReferenceSystem Modifier and Type Method Description CoordinateReferenceSystem
CRSCache. createFromName(java.lang.String name)
CoordinateReferenceSystem
CRSCache. createFromParameters(java.lang.String name, java.lang.String paramStr)
CoordinateReferenceSystem
CRSCache. createFromParameters(java.lang.String name, java.lang.String[] params)
Constructor parameters in org.locationtech.proj4j.util with type arguments of type CoordinateReferenceSystem Constructor Description CRSCache(java.util.concurrent.ConcurrentHashMap<java.lang.String,CoordinateReferenceSystem> crsCache, java.util.concurrent.ConcurrentHashMap<java.lang.String,java.lang.String> epsgCache)
-