Uses of Interface
org.opengis.referencing.cs.CartesianCS

Packages that use CartesianCS
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. 
org.opengis.referencing.crs Coordinate reference systems (coordinate systems with a datum). 
org.opengis.referencing.cs Coordinate systems and their axis
 

Uses of CartesianCS in org.geotools.referencing.crs
 

Methods in org.geotools.referencing.crs that return CartesianCS
 CartesianCS DefaultProjectedCRS.getCoordinateSystem()
          Returns the coordinate system.
 

Constructors in org.geotools.referencing.crs with parameters of type CartesianCS
DefaultGeocentricCRS(Map<String,?> properties, GeodeticDatum datum, CartesianCS cs)
          Constructs a geographic CRS from a set of properties.
DefaultGeocentricCRS(String name, GeodeticDatum datum, CartesianCS cs)
          Constructs a geocentric 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,?> properties, GeographicCRS base, MathTransform baseToDerived, CartesianCS derivedCS)
          Constructs a projected CRS from a set of properties.
DefaultProjectedCRS(Map<String,?> properties, OperationMethod method, GeographicCRS base, MathTransform baseToDerived, CartesianCS derivedCS)
          Deprecated. Create explicitly a DefiningConversion instead.
DefaultProjectedCRS(String name, GeographicCRS base, MathTransform baseToDerived, CartesianCS derivedCS)
          Constructs a projected CRS from a name.
 

Uses of CartesianCS in org.geotools.referencing.cs
 

Classes in org.geotools.referencing.cs that implement CartesianCS
 class DefaultCartesianCS
          A 1-, 2-, or 3-dimensional coordinate system.
 

Constructors in org.geotools.referencing.cs with parameters of type CartesianCS
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
 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 AbstractAuthorityMediator.createCartesianCS(String code)
           
 CartesianCS BufferedAuthorityFactory.createCartesianCS(String code)
          Returns a cartesian coordinate system from a code.
 CartesianCS AuthorityFactoryAdapter.createCartesianCS(String code)
          Creates a cartesian coordinate system from a code.
 CartesianCS AbstractCachedAuthorityFactory.createCartesianCS(String code)
          Creates a cartesian coordinate system from a code.
 CartesianCS CachedAuthorityDecorator.createCartesianCS(String code)
           
 CartesianCS ThreadedAuthorityFactory.createCartesianCS(String code)
          Returns a cartesian coordinate system from a code.
 CartesianCS FallbackAuthorityFactory.createCartesianCS(String code)
          Creates a cartesian coordinate system from a code.
 CartesianCS AbstractAuthorityFactory.createCartesianCS(String code)
          Creates a cartesian coordinate system from a code.
 

Methods in org.geotools.referencing.factory with parameters of type CartesianCS
 GeocentricCRS ReferencingObjectFactory.createGeocentricCRS(Map<String,?> properties, GeodeticDatum datum, CartesianCS cs)
          Creates a geocentric coordinate reference system from a cartesian coordinate system.
 ProjectedCRS ReferencingFactoryContainer.createProjectedCRS(Map<String,?> properties, GeographicCRS baseCRS, Conversion conversionFromBase, CartesianCS derivedCS)
          Deprecated. Moved to the CRSFactory interface.
 ProjectedCRS ReferencingObjectFactory.createProjectedCRS(Map<String,?> properties, GeographicCRS baseCRS, Conversion conversionFromBase, CartesianCS derivedCS)
          Creates a projected coordinate reference system from a conversion.
 ProjectedCRS ReferencingFactoryContainer.createProjectedCRS(Map<String,?> properties, GeographicCRS baseCRS, OperationMethod method, ParameterValueGroup parameters, CartesianCS derivedCS)
          Deprecated. Use CRSFactory#createDefiningConversion followed by CRSFactory.createProjectedCRS(java.util.Map, org.opengis.referencing.crs.GeographicCRS, org.opengis.referencing.operation.Conversion, org.opengis.referencing.cs.CartesianCS) instead.
 ProjectedCRS ReferencingObjectFactory.createProjectedCRS(Map<String,?> properties, OperationMethod method, GeographicCRS base, MathTransform baseToDerived, CartesianCS derivedCS)
          Deprecated. Use CoordinateOperationFactory.createDefiningConversion(java.util.Map, org.opengis.referencing.operation.OperationMethod, org.opengis.parameter.ParameterValueGroup) followed by ReferencingObjectFactory.createProjectedCRS(java.util.Map, org.opengis.referencing.operation.OperationMethod, org.opengis.referencing.crs.GeographicCRS, org.opengis.referencing.operation.MathTransform, org.opengis.referencing.cs.CartesianCS) instead.
 

Uses of CartesianCS in org.geotools.referencing.operation.builder
 

Methods in org.geotools.referencing.operation.builder that return types with arguments of type CartesianCS
 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.
 

Uses of CartesianCS in org.opengis.referencing.crs
 

Methods in org.opengis.referencing.crs that return CartesianCS
 CartesianCS ProjectedCRS.getCoordinateSystem()
          Returns the coordinate system, which must be cartesian.
 

Methods in org.opengis.referencing.crs with parameters of type CartesianCS
 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.opengis.referencing.cs
 

Methods in org.opengis.referencing.cs that return CartesianCS
 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.
 CartesianCS CSAuthorityFactory.createCartesianCS(String code)
          Creates a cartesian coordinate system from a code.
 



Copyright © 1996-2014 Geotools. All Rights Reserved.