Uses of Class
org.locationtech.proj4j.proj.Projection
-
Packages that use Projection 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.proj -
-
Uses of Projection in org.locationtech.proj4j
Fields in org.locationtech.proj4j declared as Projection Modifier and Type Field Description private Projection
CoordinateReferenceSystem. proj
Methods in org.locationtech.proj4j that return Projection Modifier and Type Method Description Projection
CoordinateReferenceSystem. getProjection()
Projection
Registry. getProjection(java.lang.String name)
Methods in org.locationtech.proj4j that return types with arguments of type Projection Modifier and Type Method Description java.util.List<Projection>
Registry. getProjections()
Constructors in org.locationtech.proj4j with parameters of type Projection Constructor Description CoordinateReferenceSystem(java.lang.String name, java.lang.String[] params, Datum datum, Projection proj)
ProjectionException(Projection proj, java.lang.String message)
-
Uses of Projection in org.locationtech.proj4j.geoapi
Fields in org.locationtech.proj4j.geoapi declared as Projection Modifier and Type Field Description (package private) Projection
OperationMethodWrapper. impl
The wrapped PROJ4 implementation.private Projection
ParameterWrapper. impl
The wrapped PROJ4 implementation.Fields in org.locationtech.proj4j.geoapi with type parameters of type Projection Modifier and Type Field Description private java.util.function.ToDoubleFunction<Projection>
ParameterAccessor. getter
The method to invoke for getting the parameter value.private java.util.function.ObjDoubleConsumer<Projection>
ParameterAccessor. setter
The method to invoke for setting the parameter value.Methods in org.locationtech.proj4j.geoapi that return Projection Modifier and Type Method Description Projection
Importer. convert(org.opengis.parameter.ParameterValueGroup src)
Returns the given parameters as a PROJ4J implementation.private static Projection
TransformWrapper. getProjection(CoordinateReferenceSystem crs)
Returns the projection of the given CRS, ornull
if none.static Projection
Wrappers. proj4j(org.opengis.parameter.ParameterValueGroup src)
Returns the given parameters as a PROJ4J implementation.Methods in org.locationtech.proj4j.geoapi with parameters of type Projection Modifier and Type Method Description static org.opengis.parameter.ParameterValueGroup
Wrappers. geoapi(Projection impl)
Wraps the given PROJ4J projection behind the equivalent GeoAPI interface.(package private) double
ParameterAccessor. get(Projection proj)
Gets the value of this parameter from the given projection.(package private) static PrimeMeridian
PrimeMeridianWrapper. ifNonGreenwich(Projection proj)
Returns the prime meridian of the given projection if different from Greenwich.(package private) static ParameterAccessor[]
ParameterAccessor. nonDefault(Projection proj)
Returns all descriptors having a non-default values for the given PROJ4J projection.(package private) static void
ParameterAccessor. reset(Projection proj)
Resets all parameters to their default value.(package private) void
ParameterAccessor. set(Projection proj, double value)
Sets the value of this parameter in the given projection.(package private) static OperationMethodWrapper
OperationMethodWrapper. wrap(Projection impl)
Wraps the given implementation.Constructors in org.locationtech.proj4j.geoapi with parameters of type Projection Constructor Description OperationMethodWrapper(Projection impl)
Creates a new wrapper for the given PROJ4J implementation.ParameterWrapper(Projection impl, ParameterAccessor descriptor)
Creates a new wrapper for the given PROJ4J implementation.Constructor parameters in org.locationtech.proj4j.geoapi with type arguments of type Projection Constructor Description ParameterAccessor(java.lang.String name, java.util.function.ToDoubleFunction<Projection> getter, java.util.function.ObjDoubleConsumer<Projection> setter, boolean isScale, boolean angular)
Creates a new parameter descriptor.ParameterAccessor(java.lang.String name, java.util.function.ToDoubleFunction<Projection> getter, java.util.function.ObjDoubleConsumer<Projection> setter, boolean isScale, boolean angular)
Creates a new parameter descriptor. -
Uses of Projection in org.locationtech.proj4j.parser
Methods in org.locationtech.proj4j.parser that return Projection Modifier and Type Method Description private Projection
Proj4Parser. parseProjection(java.util.Map params, Ellipsoid ellipsoid)
Creates aProjection
initialized from a PROJ.4 argument list. -
Uses of Projection in org.locationtech.proj4j.proj
-