Uses of Interface
org.geotools.api.referencing.crs.ProjectedCRS
-
Packages that use ProjectedCRS Package Description org.geotools.api.referencing.crs org.geotools.coverage.io.netcdf.crs org.geotools.referencing Reference systems implementation.org.geotools.referencing.crs Coordinate reference systems implementation.org.geotools.referencing.epsg.wkt org.geotools.referencing.factory Base classes for factories and authority factories.org.geotools.referencing.factory.wms Provides coordinate reference systems specified in the Web Map Service specification (ISO 19128).org.geotools.referencing.operation Coordinate operation implementation. -
-
Uses of ProjectedCRS in org.geotools.api.referencing.crs
Methods in org.geotools.api.referencing.crs that return ProjectedCRS Modifier and Type Method Description ProjectedCRS
CRSAuthorityFactory. createProjectedCRS(String code)
Returns a projected coordinate reference system from a code.ProjectedCRS
CRSFactory. createProjectedCRS(Map<String,?> properties, GeographicCRS baseCRS, Conversion conversionFromBase, CartesianCS derivedCS)
Creates a projected coordinate reference system from a defining conversion. -
Uses of ProjectedCRS in org.geotools.coverage.io.netcdf.crs
Methods in org.geotools.coverage.io.netcdf.crs that return ProjectedCRS Modifier and Type Method Description static ProjectedCRS
ProjectionBuilder. createProjectedCRS(Map<String,?> props, GeographicCRS baseCRS, DefiningConversion conversionFromBase, MathTransform transform)
static ProjectedCRS
ProjectionBuilder. createProjectedCRS(Map<String,?> props, GeographicCRS baseCRS, DefiningConversion conversionFromBase, MathTransform transform, CartesianCS derivedCS)
Build aProjectedCRS
given the baseGeographicCRS
, theDefiningConversion
instance from Base as well as theMathTransform
from the base CRS to returned CRS. -
Uses of ProjectedCRS in org.geotools.referencing
Methods in org.geotools.referencing that return ProjectedCRS Modifier and Type Method Description static ProjectedCRS
CRS. getProjectedCRS(CoordinateReferenceSystem crs)
Returns the first projected coordinate reference system found in a the given CRS, ornull
if there is none. -
Uses of ProjectedCRS in org.geotools.referencing.crs
Classes in org.geotools.referencing.crs that implement ProjectedCRS Modifier and Type Class Description class
DefaultProjectedCRS
A 2D coordinate reference system used to approximate the shape of the earth on a planar surface.Constructors in org.geotools.referencing.crs with parameters of type ProjectedCRS Constructor Description DefaultProjectedCRS(ProjectedCRS crs)
Constructs a new projected CRS with the same values than the specified one. -
Uses of ProjectedCRS in org.geotools.referencing.epsg.wkt
Methods in org.geotools.referencing.epsg.wkt that return ProjectedCRS Modifier and Type Method Description ProjectedCRS
EPSGCRSAuthorityFactory. createProjectedCRS(String code)
-
Uses of ProjectedCRS in org.geotools.referencing.factory
Methods in org.geotools.referencing.factory that return ProjectedCRS Modifier and Type Method Description ProjectedCRS
AbstractAuthorityFactory. createProjectedCRS(String code)
Returns a projected coordinate reference system from a code.ProjectedCRS
AbstractAuthorityMediator. createProjectedCRS(String code)
ProjectedCRS
AbstractCachedAuthorityFactory. createProjectedCRS(String code)
ProjectedCRS
AuthorityFactoryAdapter. createProjectedCRS(String code)
Returns a projected coordinate reference system from a code.ProjectedCRS
BufferedAuthorityFactory. createProjectedCRS(String code)
Returns a projected coordinate reference system from a code.ProjectedCRS
CachedAuthorityDecorator. createProjectedCRS(String code)
ProjectedCRS
CachedCRSAuthorityDecorator. createProjectedCRS(String code)
ProjectedCRS
FallbackAuthorityFactory. createProjectedCRS(String code)
Returns a projected coordinate reference system from a code.ProjectedCRS
ReferencingObjectFactory. createProjectedCRS(Map<String,?> properties, GeographicCRS baseCRS, Conversion conversionFromBase, CartesianCS derivedCS)
Creates a projected coordinate reference system from a conversion.ProjectedCRS
ReferencingObjectFactory. createProjectedCRS(Map<String,Object> properties, OperationMethod method, GeographicCRS base, MathTransform baseToDerived, CartesianCS derivedCS)
Creates a projected coordinate reference system from a transform.ProjectedCRS
ThreadedAuthorityFactory. createProjectedCRS(String code)
Returns a projected coordinate reference system from a code. -
Uses of ProjectedCRS in org.geotools.referencing.factory.wms
Methods in org.geotools.referencing.factory.wms that return ProjectedCRS Modifier and Type Method Description ProjectedCRS
AutoCRSFactory. createProjectedCRS(String code)
Creates a projected coordinate reference system from the specified code. -
Uses of ProjectedCRS in org.geotools.referencing.operation
Methods in org.geotools.referencing.operation with parameters of type ProjectedCRS Modifier and Type Method Description protected CoordinateOperation
DefaultCoordinateOperationFactory. createOperationStep(GeographicCRS sourceCRS, ProjectedCRS targetCRS)
Creates an operation from a geographic to a projected coordinate reference system.protected CoordinateOperation
DefaultCoordinateOperationFactory. createOperationStep(ProjectedCRS sourceCRS, GeographicCRS targetCRS)
Creates an operation from a projected to a geographic coordinate reference system.protected CoordinateOperation
DefaultCoordinateOperationFactory. createOperationStep(ProjectedCRS sourceCRS, ProjectedCRS targetCRS)
Creates an operation between two projected coordinate reference systems.protected Set<CoordinateOperation>
DefaultCoordinateOperationFactory. findOperationSteps(GeographicCRS sourceCRS, ProjectedCRS targetCRS, int limit)
Returns all available operations from a geographic to a projected coordinate reference system.protected Set<CoordinateOperation>
DefaultCoordinateOperationFactory. findOperationSteps(ProjectedCRS sourceCRS, GeographicCRS targetCRS, int limit)
Returns all available operations from a projected to a geographic coordinate reference system.protected Set<CoordinateOperation>
DefaultCoordinateOperationFactory. findOperationSteps(ProjectedCRS sourceCRS, ProjectedCRS targetCRS, int limit)
Returns all available operations between two projected coordinate reference systems.
-