Uses of Interface
org.geotools.api.referencing.cs.CoordinateSystemAxis
-
Packages that use CoordinateSystemAxis Package Description org.geotools.api.referencing.cs Coordinate systems and their axis.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.factory.epsg Authority factories for the EPSG database.org.geotools.referencing.util -
-
Uses of CoordinateSystemAxis in org.geotools.api.referencing.cs
Methods in org.geotools.api.referencing.cs that return CoordinateSystemAxis Modifier and Type Method Description CoordinateSystemAxis
CSAuthorityFactory. createCoordinateSystemAxis(String code)
Returns a coordinate system axis from a code.CoordinateSystemAxis
CSFactory. createCoordinateSystemAxis(Map<String,?> properties, String abbreviation, AxisDirection direction, Unit<?> unit)
Creates a coordinate system axis from an abbreviation and a unit.CoordinateSystemAxis
CoordinateSystem. getAxis(int dimension)
Returns the axis for this coordinate system at the specified dimension.Methods in org.geotools.api.referencing.cs with parameters of type CoordinateSystemAxis Modifier and Type Method Description AffineCS
CSFactory. createAffineCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Creates a two dimensional coordinate system from the given pair of axis.AffineCS
CSFactory. createAffineCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Creates a three dimensional coordinate system from the given set of axis.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.CylindricalCS
CSFactory. createCylindricalCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Creates a cylindrical coordinate system from the given set of axis.EllipsoidalCS
CSFactory. createEllipsoidalCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Creates an ellipsoidal coordinate system without ellipsoidal height.EllipsoidalCS
CSFactory. createEllipsoidalCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Creates an ellipsoidal coordinate system with ellipsoidal height.LinearCS
CSFactory. createLinearCS(Map<String,?> properties, CoordinateSystemAxis axis)
Creates a linear coordinate system.PolarCS
CSFactory. createPolarCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Creates a polar coordinate system from the given pair of axis.SphericalCS
CSFactory. createSphericalCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Creates a spherical coordinate system from the given set of axis.TimeCS
CSFactory. createTimeCS(Map<String,?> properties, CoordinateSystemAxis axis)
Creates a time coordinate system.UserDefinedCS
CSFactory. createUserDefinedCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Creates a two-dimensional user defined coordinate system.UserDefinedCS
CSFactory. createUserDefinedCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Creates a three-dimensional user defined coordinate system.VerticalCS
CSFactory. createVerticalCS(Map<String,?> properties, CoordinateSystemAxis axis)
Creates a vertical coordinate system. -
Uses of CoordinateSystemAxis in org.geotools.referencing.crs
Methods in org.geotools.referencing.crs that return CoordinateSystemAxis Modifier and Type Method Description CoordinateSystemAxis
AbstractSingleCRS. getAxis(int dimension)
Returns the axis for the underlying coordinate system at the specified dimension. -
Uses of CoordinateSystemAxis in org.geotools.referencing.cs
Classes in org.geotools.referencing.cs that implement CoordinateSystemAxis Modifier and Type Class Description class
DefaultCoordinateSystemAxis
Definition of a coordinate system axis.Methods in org.geotools.referencing.cs that return CoordinateSystemAxis Modifier and Type Method Description CoordinateSystemAxis
AbstractCS. getAxis(int dimension)
Returns the axis for this coordinate system at the specified dimension.Constructors in org.geotools.referencing.cs with parameters of type CoordinateSystemAxis Constructor Description AbstractCS(String name, CoordinateSystemAxis... axis)
Constructs a coordinate system from a name.AbstractCS(Map<String,?> properties, CoordinateSystemAxis... axis)
Constructs a coordinate system from a set of properties.DefaultAffineCS(String name, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Constructs a two-dimensional coordinate system from a name.DefaultAffineCS(String name, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Constructs a three-dimensional coordinate system from a name.DefaultAffineCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Constructs a two-dimensional coordinate system from a set of properties.DefaultAffineCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Constructs a three-dimensional coordinate system from a set of properties.DefaultCartesianCS(String name, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Constructs a two-dimensional coordinate system from a name.DefaultCartesianCS(String name, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Constructs a three-dimensional coordinate system from a name.DefaultCartesianCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Constructs a two-dimensional coordinate system from a set of properties.DefaultCartesianCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Constructs a three-dimensional coordinate system from a set of properties.DefaultCoordinateSystemAxis(CoordinateSystemAxis axis)
Constructs a new coordinate system axis with the same values than the specified one.DefaultCylindricalCS(String name, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Constructs a three-dimensional coordinate system from a name.DefaultCylindricalCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Constructs a three-dimensional coordinate system from a set of properties.DefaultEllipsoidalCS(String name, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Constructs a two-dimensional coordinate system from a name.DefaultEllipsoidalCS(String name, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Constructs a three-dimensional coordinate system from a name.DefaultEllipsoidalCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Constructs a two-dimensional coordinate system from a set of properties.DefaultEllipsoidalCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Constructs a three-dimensional coordinate system from a set of properties.DefaultLinearCS(String name, CoordinateSystemAxis axis)
Constructs a coordinate system from a name.DefaultLinearCS(Map<String,?> properties, CoordinateSystemAxis axis)
Constructs a coordinate system from a set of properties.DefaultPolarCS(String name, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Constructs a two-dimensional coordinate system from a name.DefaultPolarCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Constructs a two-dimensional coordinate system from a set of properties.DefaultSphericalCS(String name, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Constructs a three-dimensional coordinate system from a name.DefaultSphericalCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Constructs a three-dimensional coordinate system from a set of properties.DefaultTimeCS(String name, CoordinateSystemAxis axis)
Constructs a coordinate system from a name.DefaultTimeCS(Map<String,?> properties, CoordinateSystemAxis axis)
Constructs a coordinate system from a set of properties.DefaultUserDefinedCS(String name, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Constructs a two-dimensional coordinate system from a name.DefaultUserDefinedCS(String name, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Constructs a three-dimensional coordinate system from a name.DefaultUserDefinedCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Constructs a two-dimensional coordinate system from a set of properties.DefaultUserDefinedCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Constructs a three-dimensional coordinate system from a set of properties.DefaultVerticalCS(String name, CoordinateSystemAxis axis)
Constructs a coordinate system from a name.DefaultVerticalCS(Map<String,?> properties, CoordinateSystemAxis axis)
Constructs a coordinate system from a set of properties.DefaultVerticalCS(CoordinateSystemAxis axis)
Constructs a coordinate system with the same properties than the specified axis. -
Uses of CoordinateSystemAxis in org.geotools.referencing.factory
Methods in org.geotools.referencing.factory that return CoordinateSystemAxis Modifier and Type Method Description CoordinateSystemAxis
AbstractAuthorityFactory. createCoordinateSystemAxis(String code)
Returns a coordinate system axis from a code.CoordinateSystemAxis
AbstractAuthorityMediator. createCoordinateSystemAxis(String code)
CoordinateSystemAxis
AbstractCachedAuthorityFactory. createCoordinateSystemAxis(String code)
CoordinateSystemAxis
AuthorityFactoryAdapter. createCoordinateSystemAxis(String code)
Returns a coordinate system axis from a code.CoordinateSystemAxis
BufferedAuthorityFactory. createCoordinateSystemAxis(String code)
Returns a coordinate system axis from a code.CoordinateSystemAxis
CachedAuthorityDecorator. createCoordinateSystemAxis(String code)
CoordinateSystemAxis
FallbackAuthorityFactory. createCoordinateSystemAxis(String code)
Returns a coordinate system axis from a code.CoordinateSystemAxis
ReferencingObjectFactory. createCoordinateSystemAxis(Map<String,?> properties, String abbreviation, AxisDirection direction, Unit<?> unit)
Creates a coordinate system axis from an abbreviation and a unit.CoordinateSystemAxis
ThreadedAuthorityFactory. createCoordinateSystemAxis(String code)
Returns a coordinate system axis from a code.protected abstract CoordinateSystemAxis
AbstractCachedAuthorityFactory. generateCoordinateSystemAxis(String code)
protected CoordinateSystemAxis
TransformedAuthorityFactory. replace(CoordinateSystemAxis axis)
Replaces (if needed) the specified axis by a new one.Methods in org.geotools.referencing.factory with parameters of type CoordinateSystemAxis Modifier and Type Method Description int
OrderedAxisCRSAuthorityFactory. compare(CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Compares two axis for order.AffineCS
ReferencingObjectFactory. createAffineCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Creates a two dimensional coordinate system from the given pair of axis.AffineCS
ReferencingObjectFactory. createAffineCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Creates a three dimensional coordinate system from the given set of axis.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.CylindricalCS
ReferencingObjectFactory. createCylindricalCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Creates a cylindrical coordinate system from the given set of axis.EllipsoidalCS
ReferencingObjectFactory. createEllipsoidalCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Creates an ellipsoidal coordinate system without ellipsoidal height.EllipsoidalCS
ReferencingObjectFactory. createEllipsoidalCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Creates an ellipsoidal coordinate system with ellipsoidal height.LinearCS
ReferencingObjectFactory. createLinearCS(Map<String,?> properties, CoordinateSystemAxis axis)
Creates a linear coordinate system.PolarCS
ReferencingObjectFactory. createPolarCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Creates a polar coordinate system from the given pair of axis.SphericalCS
ReferencingObjectFactory. createSphericalCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Creates a spherical coordinate system from the given set of axis.TimeCS
ReferencingObjectFactory. createTimeCS(Map<String,?> properties, CoordinateSystemAxis axis)
Creates a temporal coordinate system.UserDefinedCS
ReferencingObjectFactory. createUserDefinedCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1)
Creates a two dimensional user defined coordinate system from the given pair of axis.UserDefinedCS
ReferencingObjectFactory. createUserDefinedCS(Map<String,?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2)
Creates a three dimensional user defined coordinate system from the given set of axis.VerticalCS
ReferencingObjectFactory. createVerticalCS(Map<String,?> properties, CoordinateSystemAxis axis)
Creates a vertical coordinate system.protected CoordinateSystemAxis
TransformedAuthorityFactory. replace(CoordinateSystemAxis axis)
Replaces (if needed) the specified axis by a new one. -
Uses of CoordinateSystemAxis in org.geotools.referencing.factory.epsg
Methods in org.geotools.referencing.factory.epsg that return CoordinateSystemAxis Modifier and Type Method Description CoordinateSystemAxis
DirectEpsgFactory. createCoordinateSystemAxis(String code)
Returns a coordinate system axis from a code.CoordinateSystemAxis
AbstractEpsgFactory. generateCoordinateSystemAxis(String code)
Returns a coordinate system axis from a code. -
Uses of CoordinateSystemAxis in org.geotools.referencing.util
Methods in org.geotools.referencing.util with parameters of type CoordinateSystemAxis Modifier and Type Method Description static int
CRSUtilities. dimensionColinearWith(CoordinateSystem cs, CoordinateSystemAxis axis)
Returns the dimension within the coordinate system of the first occurrence of an axis colinear with the specified axis.
-