Uses of Interface
org.geotools.api.referencing.cs.CartesianCS
-
Packages that use CartesianCS Package Description org.geotools.api.referencing.crs org.geotools.api.referencing.cs Coordinate systems and their axis.org.geotools.coverage.io.netcdf.crs org.geotools.referencing.crs Coordinate reference systems implementation.org.geotools.referencing.cs Coordinate systems implementation.org.geotools.referencing.factory Base classes for factories and authority factories.org.geotools.referencing.operation.builder A package of convenience classes which use control points common to two data sets to derive empirically the transformation parameters needed to convert positions between the coordinate systems of the two data sets. -
-
Uses of CartesianCS in org.geotools.api.referencing.crs
Methods in org.geotools.api.referencing.crs that return CartesianCS Modifier and Type Method Description CartesianCS
ProjectedCRS. getCoordinateSystem()
Returns the coordinate system, which must be cartesian.Methods in org.geotools.api.referencing.crs with parameters of type CartesianCS Modifier and Type Method Description GeocentricCRS
CRSFactory. createGeocentricCRS(Map<String,?> properties, GeodeticDatum datum, CartesianCS cs)
Creates a geocentric coordinate reference system from a cartesian coordinate system.ProjectedCRS
CRSFactory. createProjectedCRS(Map<String,?> properties, GeographicCRS baseCRS, Conversion conversionFromBase, CartesianCS derivedCS)
Creates a projected coordinate reference system from a defining conversion. -
Uses of CartesianCS in org.geotools.api.referencing.cs
Methods in org.geotools.api.referencing.cs that return CartesianCS Modifier and Type Method Description CartesianCS
CSAuthorityFactory. createCartesianCS(String code)
Creates a cartesian coordinate system from a code.CartesianCS
CSFactory. createCartesianCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Creates a two dimensional cartesian coordinate system from the given pair of axis.CartesianCS
CSFactory. createCartesianCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Creates a three dimensional cartesian coordinate system from the given set of axis. -
Uses of CartesianCS in org.geotools.coverage.io.netcdf.crs
Methods in org.geotools.coverage.io.netcdf.crs with parameters of type CartesianCS Modifier and Type Method Description 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 CartesianCS in org.geotools.referencing.crs
Methods in org.geotools.referencing.crs that return CartesianCS Modifier and Type Method Description CartesianCS
DefaultProjectedCRS. getCoordinateSystem()
Returns the coordinate system.Constructors in org.geotools.referencing.crs with parameters of type CartesianCS Constructor Description DefaultGeocentricCRS(String name, GeodeticDatum datum, CartesianCS cs)
Constructs a geocentric CRS from a name.DefaultGeocentricCRS(Map<String,?> properties, GeodeticDatum datum, CartesianCS cs)
Constructs a geographic CRS from a set of properties.DefaultProjectedCRS(String name, GeographicCRS base, MathTransform baseToDerived, CartesianCS derivedCS)
Constructs a projected CRS from a name.DefaultProjectedCRS(Map<String,?> properties, Conversion conversionFromBase, GeographicCRS base, MathTransform baseToDerived, CartesianCS derivedCS)
Constructs a projected CRS from a defining conversion.DefaultProjectedCRS(Map<String,Object> properties, GeographicCRS base, MathTransform baseToDerived, CartesianCS derivedCS)
Constructs a projected CRS from a set of properties.DefaultProjectedCRS(Map<String,Object> properties, OperationMethod method, GeographicCRS base, MathTransform baseToDerived, CartesianCS derivedCS)
Constructs a projected CRS from a set of properties. -
Uses of CartesianCS in org.geotools.referencing.cs
Classes in org.geotools.referencing.cs that implement CartesianCS Modifier and Type Class Description class
DefaultCartesianCS
A 1-, 2-, or 3-dimensional coordinate system.Constructors in org.geotools.referencing.cs with parameters of type CartesianCS Constructor Description DefaultCartesianCS(CartesianCS cs)
Constructs a new coordinate system with the same values than the specified one. -
Uses of CartesianCS in org.geotools.referencing.factory
Methods in org.geotools.referencing.factory that return CartesianCS Modifier and Type Method Description CartesianCS
AbstractAuthorityFactory. createCartesianCS(String code)
Creates a cartesian coordinate system from a code.CartesianCS
AbstractAuthorityMediator. createCartesianCS(String code)
CartesianCS
AbstractCachedAuthorityFactory. createCartesianCS(String code)
Creates a cartesian coordinate system from a code.CartesianCS
AuthorityFactoryAdapter. createCartesianCS(String code)
Creates a cartesian coordinate system from a code.CartesianCS
BufferedAuthorityFactory. createCartesianCS(String code)
Returns a cartesian coordinate system from a code.CartesianCS
CachedAuthorityDecorator. createCartesianCS(String code)
CartesianCS
FallbackAuthorityFactory. createCartesianCS(String code)
Creates a cartesian coordinate system from a code.CartesianCS
ReferencingObjectFactory. createCartesianCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Creates a two dimensional cartesian coordinate system from the given pair of axis.CartesianCS
ReferencingObjectFactory. createCartesianCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Creates a three dimensional cartesian coordinate system from the given set of axis.CartesianCS
ThreadedAuthorityFactory. createCartesianCS(String code)
Returns a cartesian coordinate system from a code.Methods in org.geotools.referencing.factory with parameters of type CartesianCS Modifier and Type Method Description GeocentricCRS
ReferencingObjectFactory. createGeocentricCRS(Map<String,?> properties, GeodeticDatum datum, CartesianCS cs)
Creates a geocentric coordinate reference system from a cartesian coordinate system.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. -
Uses of CartesianCS in org.geotools.referencing.operation.builder
Methods in org.geotools.referencing.operation.builder that return types with arguments of type CartesianCS Modifier and Type Method Description Class<? extends CartesianCS>
BursaWolfTransformBuilder. getCoordinateSystemType()
Returns the required coordinate system type, which is cartesian CS.Class<? extends CartesianCS>
ProjectiveTransformBuilder. getCoordinateSystemType()
Returns the required coordinate system type, which is cartesian CS.
-