Uses of Interface
org.opengis.referencing.crs.CoordinateReferenceSystem
-
Packages that use CoordinateReferenceSystem Package Description org.opengis.geometry org.opengis.referencing.crs org.opengis.referencing.operation Coordinate operations (relationship between any two coordinate reference systems).org.opengis.test Base classes for validators and test suites for all GeoAPI objects.org.opengis.test.referencing Validators and test suites for theorg.opengis.referencing
package. -
-
Uses of CoordinateReferenceSystem in org.opengis.geometry
Methods in org.opengis.geometry that return CoordinateReferenceSystem Modifier and Type Method Description CoordinateReferenceSystem
DirectPosition. getCoordinateReferenceSystem()
The coordinate reference system in which the coordinate is given.CoordinateReferenceSystem
Envelope. getCoordinateReferenceSystem()
Returns the envelope coordinate reference system, ornull
if unknown. -
Uses of CoordinateReferenceSystem in org.opengis.referencing.crs
Subinterfaces of CoordinateReferenceSystem in org.opengis.referencing.crs Modifier and Type Interface Description interface
CompoundCRS
A coordinate reference system describing the position of points through two or more independent coordinate reference systems.interface
DerivedCRS
A coordinate reference system that is defined by its coordinate conversion from another coordinate reference system but is not a projected coordinate reference system.interface
EngineeringCRS
A contextually local coordinate reference system.interface
GeneralDerivedCRS
A coordinate reference system that is defined by its coordinate conversion from another coordinate reference system (not by a datum).interface
GeocentricCRS
A 3D coordinate reference system with the origin at the approximate centre of mass of the earth.interface
GeodeticCRS
A coordinate reference system associated with a geodetic datum.interface
GeographicCRS
A coordinate reference system based on an ellipsoidal approximation of the geoid; this provides an accurate representation of the geometry of geographic features for a large portion of the earth's surface.interface
ImageCRS
An engineering coordinate reference system applied to locations in images.interface
ProjectedCRS
A 2D coordinate reference system used to approximate the shape of the earth on a planar surface.interface
SingleCRS
Abstract coordinate reference system, consisting of a single Coordinate System and a single Datum (as opposed to Compound CRS).interface
TemporalCRS
A 1D coordinate reference system used for the recording of time.interface
VerticalCRS
A 1D coordinate reference system used for recording heights or depths.Methods in org.opengis.referencing.crs that return CoordinateReferenceSystem Modifier and Type Method Description CoordinateReferenceSystem
CRSAuthorityFactory. createCoordinateReferenceSystem(java.lang.String code)
Returns an arbitrary coordinate reference system from a code.CoordinateReferenceSystem
CRSFactory. createFromWKT(java.lang.String wkt)
Creates a coordinate reference system object from a string.CoordinateReferenceSystem
CRSFactory. createFromXML(java.lang.String xml)
Creates a coordinate reference system object from a XML string.CoordinateReferenceSystem
GeneralDerivedCRS. getBaseCRS()
Returns the base coordinate reference system.Methods in org.opengis.referencing.crs that return types with arguments of type CoordinateReferenceSystem Modifier and Type Method Description java.util.List<CoordinateReferenceSystem>
CompoundCRS. getComponents()
The ordered list of coordinate reference systems.Methods in org.opengis.referencing.crs with parameters of type CoordinateReferenceSystem Modifier and Type Method Description CompoundCRS
CRSFactory. createCompoundCRS(java.util.Map<java.lang.String,?> properties, CoordinateReferenceSystem... elements)
Creates a compound coordinate reference system from an ordered list ofCoordinateReferenceSystem
objects.DerivedCRS
CRSFactory. createDerivedCRS(java.util.Map<java.lang.String,?> properties, CoordinateReferenceSystem baseCRS, Conversion conversionFromBase, CoordinateSystem derivedCS)
Creates a derived coordinate reference system. -
Uses of CoordinateReferenceSystem in org.opengis.referencing.operation
Methods in org.opengis.referencing.operation that return CoordinateReferenceSystem Modifier and Type Method Description CoordinateReferenceSystem
Conversion. getSourceCRS()
Returns the source CRS.CoordinateReferenceSystem
CoordinateOperation. getSourceCRS()
Returns the source CRS.CoordinateReferenceSystem
Transformation. getSourceCRS()
Returns the source CRS.CoordinateReferenceSystem
Conversion. getTargetCRS()
Returns the target CRS.CoordinateReferenceSystem
CoordinateOperation. getTargetCRS()
Returns the target CRS.CoordinateReferenceSystem
Transformation. getTargetCRS()
Returns the target CRS.Methods in org.opengis.referencing.operation with parameters of type CoordinateReferenceSystem Modifier and Type Method Description MathTransform
MathTransformFactory. createBaseToDerived(CoordinateReferenceSystem baseCRS, ParameterValueGroup parameters, CoordinateSystem derivedCS)
Creates a parameterized transform from a base CRS to a derived CS.CoordinateOperation
CoordinateOperationFactory. createOperation(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS)
Returns an operation for conversion or transformation between two coordinate reference systems.CoordinateOperation
CoordinateOperationFactory. createOperation(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, OperationMethod method)
Returns an operation using a particular method for conversion or transformation between two coordinate reference systems. -
Uses of CoordinateReferenceSystem in org.opengis.test
Methods in org.opengis.test with parameters of type CoordinateReferenceSystem Modifier and Type Method Description void
ValidatorContainer. validate(CoordinateReferenceSystem object)
Tests the conformance of the given object.static void
Validators. validate(CoordinateReferenceSystem object)
Tests the conformance of the given object. -
Uses of CoordinateReferenceSystem in org.opengis.test.referencing
Methods in org.opengis.test.referencing that return CoordinateReferenceSystem Modifier and Type Method Description CoordinateReferenceSystem
SimpleDirectPosition. getCoordinateReferenceSystem()
Returns alwaysnull
, since it is allowed by the specification andTransformTestCase
doesn't want to test the handling of CRS.Methods in org.opengis.test.referencing with parameters of type CoordinateReferenceSystem Modifier and Type Method Description private static int
OperationValidator. dimension(CoordinateReferenceSystem crs)
Returns the dimension of the given CRS.void
CRSValidator. dispatch(CoordinateReferenceSystem object)
Dispatches the given object to one ofvalidate
methods.
-