public final class CRS extends Object
ReferencingFactoryFinder
.
The following methods may be added in a future version:
CoordinateReferenceSystem parseXML(String)
When using CoordinateReferenceSystem
matching methods of this class (equalsIgnoreMetadata(Object, Object)
,lookupIdentifier(IdentifiedObject, boolean)
,
lookupEpsgCode(CoordinateReferenceSystem, boolean)
, lookupIdentifier(IdentifiedObject, boolean)
, lookupIdentifier(Citation,
CoordinateReferenceSystem, boolean)
) against objects derived from a database other than the
official EPSG one it may be advisable to set a non zero comparison tolerance with Hints.putSystemDefault(java.awt.RenderingHints.Key, Object)
using the Hints.COMPARISON_TOLERANCE
key. A value of 10e-9 has proved to give satisfactory results with
definitions commonly found in .prj files accompaining shapefiles and georeferenced images.
Warning: the tolerance value is used in all internal comparison, this will also change the
way math transforms are setup. Use with care.
Modifier and Type | Class and Description |
---|---|
static class |
CRS.AxisOrder
Enumeration describing axis order for geographic coordinate reference systems.
|
Modifier and Type | Method and Description |
---|---|
static void |
cleanupThreadLocals()
Cleans up the thread local set in this thread.
|
static CoordinateReferenceSystem |
decode(String code)
Return a Coordinate Reference System for the specified code.
|
static CoordinateReferenceSystem |
decode(String code,
boolean longitudeFirst)
Return a Coordinate Reference System for the specified code, maybe forcing the axis order to
(longitude, latitude).
|
static boolean |
equalsIgnoreMetadata(Object object1,
Object object2)
Compares the specified objects for equality.
|
static MathTransform |
findMathTransform(CoordinateReferenceSystem sourceCRS,
CoordinateReferenceSystem targetCRS)
Grab a transform between two Coordinate Reference Systems.
|
static MathTransform |
findMathTransform(CoordinateReferenceSystem sourceCRS,
CoordinateReferenceSystem targetCRS,
boolean lenient)
Grab a transform between two Coordinate Reference Systems.
|
static CRSAuthorityFactory |
getAuthorityFactory(boolean longitudeFirst)
Returns the CRS authority factory used by the
decode methods. |
static CRS.AxisOrder |
getAxisOrder(CoordinateReferenceSystem crs)
Determines the axis ordering of a specified crs object.
|
static CRS.AxisOrder |
getAxisOrder(CoordinateReferenceSystem crs,
boolean useBaseGeoCRS)
Determines the axis ordering of a specified crs object.
|
static CoordinateOperationFactory |
getCoordinateOperationFactory(boolean lenient)
Returns the coordinate operation factory used by
findMathTransform
convenience methods. |
static Ellipsoid |
getEllipsoid(CoordinateReferenceSystem crs)
Returns the first ellipsoid found in a coordinate reference system, or
null if there
is none. |
static Envelope |
getEnvelope(CoordinateReferenceSystem crs)
Returns the domain of validity for the specified coordinate reference system, or
null
if unknown. |
static GeographicBoundingBox |
getGeographicBoundingBox(CoordinateReferenceSystem crs)
Returns the valid geographic area for the specified coordinate reference system, or
null if unknown. |
static SingleCRS |
getHorizontalCRS(CoordinateReferenceSystem crs)
Returns the first horizontal coordinate reference system found in the given CRS, or
null if there is none. |
static MapProjection |
getMapProjection(CoordinateReferenceSystem crs)
Returns the
MapProjection driving the specified crs, or null if none could be
found. |
static ProjectedCRS |
getProjectedCRS(CoordinateReferenceSystem crs)
Returns the first projected coordinate reference system found in a the given CRS, or
null if there is none. |
static Set<String> |
getSupportedAuthorities(boolean returnAliases)
Returns the set of the authority identifiers supported by registered authority factories.
|
static Set<String> |
getSupportedCodes(String authority)
Get the list of the codes that are supported by the given authority.
|
static TemporalCRS |
getTemporalCRS(CoordinateReferenceSystem crs)
Returns the first temporal coordinate reference system found in the given CRS, or
null if there is none. |
static Version |
getVersion(String authority)
Returns the version number of the specified authority database, or
null if not
available. |
static VerticalCRS |
getVerticalCRS(CoordinateReferenceSystem crs)
Returns the first vertical coordinate reference system found in a the given CRS, or
null if there is none. |
static boolean |
isTransformationRequired(CoordinateReferenceSystem source,
CoordinateReferenceSystem target)
Checks if a transformation is required to go from source to target.
|
static Integer |
lookupEpsgCode(CoordinateReferenceSystem crs,
boolean fullScan)
Looks up an EPSG code for the given coordinate
reference system).
|
static String |
lookupIdentifier(Citation authority,
CoordinateReferenceSystem crs,
boolean fullScan)
Looks up an identifier of the specified authority for the given coordinate reference system).
|
static String |
lookupIdentifier(IdentifiedObject object,
boolean fullScan)
Looks up an identifier for the specified object.
|
static void |
main(String[] args)
Prints to the standard output stream some information about
coordinate reference systems specified by their
authority codes.
|
static CoordinateReferenceSystem |
parseWKT(String wkt)
Parses a Well
Known Text (WKT) into a CRS object.
|
static void |
reset(String aspects)
Resets some aspects of the referencing system.
|
static String |
toSRS(CoordinateReferenceSystem crs)
Returns the Spatial Reference System identifier, or
null if none. |
static String |
toSRS(CoordinateReferenceSystem crs,
boolean codeOnly)
Returns the Spatial Reference System identifier, or
null if none. |
static GeneralEnvelope |
transform(CoordinateOperation operation,
Envelope envelope)
Transforms an envelope using the given coordinate operation.
|
static Rectangle2D |
transform(CoordinateOperation operation,
Rectangle2D envelope,
Rectangle2D destination)
Transforms a rectangular envelope using the given coordinate
operation.
|
static GeneralEnvelope |
transform(Envelope envelope,
CoordinateReferenceSystem targetCRS)
Transforms the given envelope to the specified CRS.
|
static Rectangle2D |
transform(MathTransform2D transform,
Rectangle2D envelope,
Rectangle2D destination)
Transforms a rectangular envelope using the given math transform.
|
static GeneralEnvelope |
transform(MathTransform transform,
Envelope envelope)
Transforms an envelope using the given math transform.
|
public static CRSAuthorityFactory getAuthorityFactory(boolean longitudeFirst) throws FactoryRegistryException
decode
methods.
This factory is buffered, scans over all
factories and uses additional factories as fallbacks if there is more than
one registered factory for the
same authority.
This factory can be used as a kind of system-wide factory for all
authorities. However for more determinist behavior, consider using a more specific factory
(as returned by ReferencingFactoryFinder.getCRSAuthorityFactory(java.lang.String, org.geotools.util.factory.Hints)
when the authority in
known.
longitudeFirst
- true
if axis order should be forced to
(longitude,latitude). Note that false
means "use
default", not "latitude first".FactoryRegistryException
- if the factory can't be created.public static CoordinateOperationFactory getCoordinateOperationFactory(boolean lenient)
findMathTransform
convenience methods.lenient
- true
if the coordinate operations should be created even when there is
no information available for a datum shift.public static Version getVersion(String authority) throws FactoryRegistryException
null
if not
available.authority
- The authority name (typically "EPSG"
).null
if unknown.FactoryRegistryException
- if no CRSAuthorityFactory
implementation was found
for the specified authority.public static Set<String> getSupportedCodes(String authority)
getSupportedCodes("EPSG")
may returns "EPSG:2000"
, "EPSG:2001"
, "EPSG:2002"
, etc. It may also returns "2000"
, "2001"
, "2002"
, etc. without the "EPSG:"
prefix. Whatever the authority name is
prefixed or not is factory implementation dependent.
If there is more than one factory for the given authority, then this method merges the code set of all of them. If a factory fails to provide a set of supported code, then this particular factory is ignored. Please be aware of the following potential issues:
"4326"
and "EPSG:4326"
), then the returned set will contain a lot of synonymous codes.
decode(c)
will use the same authority factory than the one
that formatted c.
FactoryException
s are logged as warnings and otherwise ignored.
If a more determinist behavior is wanted, consider the code below instead. The following code exploit only one factory, the "preferred" one.
CRSAuthorityFactory factory = FactoryFinder.getCRSAuthorityFactory(authority, null);
Set<String> codes = factory.getAuthorityCodes(CoordinateReferenceSystem.class);
String code = ...choose a code here...
CoordinateReferenceSystem crs = factory.createCoordinateReferenceSystem(code);
authority
- The authority name (for example "EPSG"
).public static Set<String> getSupportedAuthorities(boolean returnAliases)
returnAliases
- If true
, the set will contain all identifiers for each
authority. If false
, only the first onepublic static CoordinateReferenceSystem decode(String code) throws NoSuchAuthorityCodeException, FactoryException
If there is more than one factory implementation for the same authority, then all additional factories are fallbacks to be used only when the first acceptable factory failed to create the requested CRS object.EPSG:1234 AUTO:42001, ..., ..., ...
CRS objects created by previous calls to this method are cached in a buffer using weak references. Subsequent calls to this method with the same authority code should be fast, unless the CRS object has been garbage collected.
code
- The Coordinate Reference System authority code.NoSuchAuthorityCodeException
- If the code could not be understood.FactoryException
- if the CRS creation failed for an other reason.getSupportedCodes(java.lang.String)
,
AuthorityFactoryAdapter.createCoordinateReferenceSystem(java.lang.String)
public static CoordinateReferenceSystem decode(String code, boolean longitudeFirst) throws NoSuchAuthorityCodeException, FactoryException
code
argument value is parsed as in
"decode(code)
". The longitudeFirst
argument
value controls the hints to be given to the factory
finder as in the following pseudo-code:
The following table compare this methodif (longitudeFirst) { hints.put(Hints.FORCE_LONGITUDE_FIRST_AXIS_ORDER, Boolean.TRUE); } else { // Do not set the FORCE_LONGITUDE_FIRST_AXIS_ORDER hint to FALSE. // Left it unset, which means "use system default". }
longitudeFirst
argument with the hint
meaning:
This method argument | Hint value | Meaning |
---|---|---|
true |
TRUE |
All coordinate reference systems are forced to (longitude, latitude) axis order. |
false |
null |
Coordinate reference systems may or may not be forced to
(longitude, latitude) axis order. The behavior depends on user
setting, for example the value of the "org.geotools.referencing.forceXY"
system property. |
FALSE |
Forcing (longitude, latitude) axis order is not allowed,
no matter the value of the "org.geotools.referencing.forceXY"
system property. |
code
- The Coordinate Reference System authority code.longitudeFirst
- true
if axis order should be forced to (longitude,
latitude). Note that false
means "use default",
not "latitude first".NoSuchAuthorityCodeException
- If the code could not be understood.FactoryException
- if the CRS creation failed for an other reason.getSupportedCodes(java.lang.String)
,
Hints.FORCE_LONGITUDE_FIRST_AXIS_ORDER
public static CoordinateReferenceSystem parseWKT(String wkt) throws FactoryException
FactoryFinder.getCRSFactory(null).createFromWKT(wkt);
FactoryException
public static Envelope getEnvelope(CoordinateReferenceSystem crs)
null
if unknown.
This method fetchs the domain of validity associated with the given CRS. Only geographic extents of kind bounding polygon are taken in account. If none are found, then the geographic bounding boxes are used as a fallback.
The returned envelope is expressed in terms of the specified CRS.
crs
- The coordinate reference system, or null
.null
if none.getGeographicBoundingBox(org.opengis.referencing.crs.CoordinateReferenceSystem)
,
GeneralEnvelope.normalize(boolean)
public static GeographicBoundingBox getGeographicBoundingBox(CoordinateReferenceSystem crs)
null
if unknown.
This method fetchs the domain of validity associated with the given CRS. Only geographic extents of kind geographic bounding box are taken in account.
crs
- The coordinate reference system, or null
.null
if none.getEnvelope(org.opengis.referencing.crs.CoordinateReferenceSystem)
public static SingleCRS getHorizontalCRS(CoordinateReferenceSystem crs)
null
if there is none. A horizontal CRS is usually a two-dimensional geographic or projected CRS.crs
- The coordinate reference system, or null
.null
if none.public static ProjectedCRS getProjectedCRS(CoordinateReferenceSystem crs)
null
if there is none.crs
- The coordinate reference system, or null
.null
if none.public static MapProjection getMapProjection(CoordinateReferenceSystem crs)
MapProjection
driving the specified crs, or null
if none could be
found.crs
- The coordinate reference system, or null
.MapProjection
, or null
if none.public static VerticalCRS getVerticalCRS(CoordinateReferenceSystem crs)
null
if there is none.crs
- The coordinate reference system, or null
.null
if none.public static TemporalCRS getTemporalCRS(CoordinateReferenceSystem crs)
null
if there is none.crs
- The coordinate reference system, or null
.null
if none.public static Ellipsoid getEllipsoid(CoordinateReferenceSystem crs)
null
if there
is none.crs
- The coordinate reference system, or null
.null
if none.public static boolean equalsIgnoreMetadata(Object object1, Object object2)
AbstractIdentifiedObject
, then this method will ignore the metadata during the
comparaison.object1
- The first object to compare (may be null).object2
- The second object to compare (may be null).true
if both objects are equals.public static boolean isTransformationRequired(CoordinateReferenceSystem source, CoordinateReferenceSystem target) throws FactoryException
DefaultEngineeringCRS.isWildcard()
equalsIgnoreMetadata(Object, Object)
source
- The source CoordinateReferenceSystem
target
- the target CoordinateReferenceSystem
FactoryException
public static String toSRS(CoordinateReferenceSystem crs)
null
if none. OGC
Web Services have the concept of a Spatial Reference System identifier used to communicate
CRS information between systems.
Spatial Reference System (ie SRS) values:
EPSG:4326
- this is the usual format understood to mean forceXY
order prior to WMS 1.3.0. Note that the axis order is not necessarly
(longitude, latitude), but this is the common behavior we observe
in practice.
AUTO:43200
-
CRS:84
- similar to DefaultGeographicCRS.WGS84
(formally defined by
CRSAuthorityFactory)
ogc:uri:.....
- understood to match the EPSG database axis order.
crs
- The coordinate reference system, or null
.null
.public static String toSRS(CoordinateReferenceSystem crs, boolean codeOnly)
null
if none.
Some older web services are unable to deal with the full ogc:uri syntax, set simple to true for force a very simple representation that is just based on the code portion.
crs
- codeOnly
- Set to true to force generation of a simple srsName using only the code
portionpublic static String lookupIdentifier(IdentifiedObject object, boolean fullScan) throws FactoryException
null
.
This convenience method delegates its work to IdentifiedObjectFinder
. Consider
using the later if more control are wanted, for example if the search shall be performed only
on some authority factories instead of all registered onez, or
if the full identified object is wanted instead of only its
identifier.
object
- The object (usually a coordinate
reference system) looked up.fullScan
- If true
, an exhaustive full scan against all registered objects will
be performed (may be slow). Otherwise only a fast lookup based on embedded identifiers
and names will be performed.null
if not found.FactoryException
- if an unexpected failure occured during the search.AbstractAuthorityFactory.getIdentifiedObjectFinder(java.lang.Class<? extends org.opengis.referencing.IdentifiedObject>)
,
IdentifiedObjectFinder.find(org.opengis.referencing.IdentifiedObject)
public static String lookupIdentifier(Citation authority, CoordinateReferenceSystem crs, boolean fullScan) throws FactoryException
lookupIdentifier(object,
fullScan)
except that the search is performed only among the factories of the given
authority.
If the CRS does not have an identifier which corresponds to the EPSG authority, then:
fullScan
is true
, then this method scans the factories in search for
an object equals, ignoring metadata, to the given
object. If one is found, its identifier is returned.
fullScan
is false
or if no identifier was found in the
previous step), this method returns null
.
authority
- The authority for the code to search.crs
- The coordinate reference system instance, or null
.null
if none was found.FactoryException
- if an error occured while searching for the identifier.public static Integer lookupEpsgCode(CoordinateReferenceSystem crs, boolean fullScan) throws FactoryException
lookupIdentifier(Citations.EPSG, crs, fullScan)
except that code is parsed as an integer.crs
- The coordinate reference system instance, or null
.null
if none was found.FactoryException
- if an error occured while searching for the identifier.public static MathTransform findMathTransform(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS) throws FactoryException
FactoryFinder.getCoordinateOperationFactory(null).createOperation(sourceCRS, targetCRS).getMathTransform();
Note that some metadata like positional
accuracy are lost by this method. If those metadata are wanted, use the coordinate operation factory directly.
Sample use:
MathTransform transform = CRS.findMathTransform(
CRS.decode("EPSG:42102"),
CRS.decode("EPSG:4326") );
sourceCRS
- The source CRS.targetCRS
- The target CRS.sourceCRS
to targetCRS
.FactoryException
- If no math transform can be created for the specified source and
target CRS.public static MathTransform findMathTransform(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, boolean lenient) throws FactoryException
findMathTransform(sourceCRS, targetCRS)
, except that it can optionally tolerate
lenient datum shift. If the lenient
argument is true
, then this
method will not throw a "Bursa-Wolf parameters required" exception during datum
shifts if the Bursa-Wolf paramaters are not specified. Instead it will assume a no datum
shift.sourceCRS
- The source CRS.targetCRS
- The target CRS.lenient
- true
if the math transform should be created even when there is no
information available for a datum shift. The default value is false
.sourceCRS
to targetCRS
.FactoryException
- If no math transform can be created for the specified source and
target CRS.Hints.LENIENT_DATUM_SHIFT
public static GeneralEnvelope transform(Envelope envelope, CoordinateReferenceSystem targetCRS) throws TransformException
Don't use this method if there is many envelopes to transform. This method is provided as a convenience when there is only one envelope to transform between CRS that can't be known in advance. If there is many of them or if the CRS are restricted to known values, get the coordinate operation or math transform once for ever and invoke one of the methods below instead (unless if performance is not a concern).
envelope
- The envelope to transform (may be null
).targetCRS
- The target CRS (may be null
).envelope
if no transformation was
required.TransformException
- If a transformation was required and failed.public static GeneralEnvelope transform(MathTransform transform, Envelope envelope) throws TransformException
Note that this method can not handle the case where the envelope contains the North or
South pole, or when it cross the ±180° longitude, because math transforms do not carry suffisient informations. For a more robust envelope
transformation, use transform(CoordinateOperation, Envelope)
instead.
transform
- The transform to use.envelope
- Envelope to transform, or null
. This envelope will not be modified.null
if envelope
was null.TransformException
- if a transform failed.transform(CoordinateOperation, Envelope)
public static GeneralEnvelope transform(CoordinateOperation operation, Envelope envelope) throws TransformException
This method can handle the case where the envelope contains the North or South pole, or when it cross the ±180° longitude.
operation
- The operation to use. Source and target dimension must be 2.envelope
- Envelope to transform, or null
. This envelope will not be modified.null
if envelope
was null.TransformException
- if a transform failed.transform(MathTransform, Envelope)
public static Rectangle2D transform(MathTransform2D transform, Rectangle2D envelope, Rectangle2D destination) throws TransformException
transform(transform, new GeneralEnvelope(envelope)).toRectangle2D()
Note that this method can not handle the case where the rectangle contains the North or
South pole, or when it cross the ±180° longitude, because math transforms do not carry suffisient informations. For a more robust rectangle
transformation, use transform(CoordinateOperation, Rectangle2D, Rectangle2D)
instead.
transform
- The transform to use. Source and target dimension must be 2.envelope
- The rectangle to transform (may be null
).destination
- The destination rectangle (may be envelope
). If null
, a
new rectangle will be created and returned.destination
, or a new rectangle if destination
was non-null and
envelope
was null.TransformException
- if a transform failed.transform(CoordinateOperation, Rectangle2D, Rectangle2D)
,
XAffineTransform.transform(
java.awt.geom.AffineTransform, Rectangle2D, Rectangle2D)
public static Rectangle2D transform(CoordinateOperation operation, Rectangle2D envelope, Rectangle2D destination) throws TransformException
transform(operation, new GeneralEnvelope(envelope)).toRectangle2D()
This method can handle the case where the rectangle contains the North or South pole, or when it cross the ±180° longitude.
operation
- The operation to use. Source and target dimension must be 2.envelope
- The rectangle to transform (may be null
).destination
- The destination rectangle (may be envelope
). If null
, a
new rectangle will be created and returned.destination
, or a new rectangle if destination
was non-null and
envelope
was null.TransformException
- if a transform failed.transform(MathTransform2D, Rectangle2D, Rectangle2D)
,
XAffineTransform.transform(
java.awt.geom.AffineTransform, Rectangle2D, Rectangle2D)
public static void reset(String aspects)
"plugins"
for searching the
classpath for new plugins.
"warnings"
for re-enabling the warnings
to be issued when a coordinate is out of projection valid area.
aspects
- The aspects to reset, or "all"
for all of them. Unknown aspects are
silently ignored.public static void cleanupThreadLocals()
public static CRS.AxisOrder getAxisOrder(CoordinateReferenceSystem crs)
crs
- The coordinate reference system.CRS.AxisOrder.EAST_NORTH
, AxisOrder@NORTH_EAST
, or CRS.AxisOrder.INAPPLICABLE
CRS.AxisOrder
public static CRS.AxisOrder getAxisOrder(CoordinateReferenceSystem crs, boolean useBaseGeoCRS)
The useBaseGeoCRS parameter is used to control behaviour for projected crs. When set to true the comparison will use the coordinate system for the underlying geographic crs object for the comparison. When set to false the comparison will use the coordinate system from projected crs itself.
crs
- The coordinate reference system.useBaseGeoCRS
- Controls whether the base geo crs is used for projected crs.CRS.AxisOrder.EAST_NORTH
, AxisOrder@NORTH_EAST
, or CRS.AxisOrder.INAPPLICABLE
public static void main(String[] args)
By default, this method prints all enumerated objects as Well Known Text.
However this method can prints different kind of information if an option such as -factories
, -codes
or -bursawolfs
is provided.
Usage: java org.geotools.referencing.CRS [options] [codes]
Options:
Examples (assuming that
-authority
=name
Uses the specified authority factory, for example"EPSG"
. The authority name can be any of the authorities listed by the-factories
option. If this option is not specified, then the default is all factories.
-bursawolfs
codes
Lists the Bursa-Wolf parameters for the specified CRS ou datum objects. For some transformations, there is more than one set of Bursa-Wolf parameters available. The standard Well Known Text format prints only what look like the "main" one. This option display all Bursa-Wolf parameters in a table for a given object.
-codes
Lists all available authority codes. Use the-authority
option if the list should be restricted to a single authority.
-colors
Enable syntax coloring on ANSI X3.64 compatible (aka ECMA-48 and ISO/IEC 6429) terminal. This option tries to highlight most of the elements relevant to theequalsIgnoreMetadata
method, with the addition of Bursa-Wolf parameters.
-encoding
=charset
Sets the console encoding for this application output. This value has no impact on data, but may improve the output quality. This is not needed on Linux terminal using UTF-8 encoding (tip: the terminus font gives good results).
-dependencies
Lists authority factory dependencies as a tree.
-factories
Lists all availables CRS authority factories.
-forcexy
Force "longitude first" axis order.
-help
Prints the list of options.
-locale
=name
Formats texts in the specified locale.
-operations
sourceCRS targetCRS
Prints all available coordinate operations between a pair of CRS. This option prints only the operations explicitly defined in a database like EPSG. There is sometime many such operations, and sometime none (in which case this option prints nothing - it doesn't try to find an operation by itself).
-transform
sourceCRS targetCRS
Prints the preferred math transform between a pair of CRS. At the difference of the"-operations"
option, this option pick up only one operation (usually the most accurate one), inferring it if none were explicitly specified in the database.
"CRS"
is a shortcut for "java
org.geotools.referencing.CRS"
):
CRS EPSG:4181 EPSG:4326 CRS:84 AUTO:42001,30,0
Prints the "Luxembourg 1930" CRS, the "WGS 84" CRS (from EPSG database), the ""WGS84" CRS (from the Web Map Service specification) and a UTM projection in WKT format.
CRS -authority=EPSG 4181 4326
Prints the "Luxembourg 1930" and "WGS 84" CRS, looking only in the EPSG database (so there is no need to prefix the codes with"EPSG"
).
CRS -colors EPSG:7411
Prints the "NTF (Paris) / Lambert zone II + NGF Lallemand" CRS with syntax coloring enabled.
CRS -bursawolfs EPSG:4230
Prints three set of Bursa-Wolf parameters for a CRS based on "European Datum 1950".
CRS -authority=EPSG -operations 4230 4326
Prints all operations declared in the EPSG database from "ED50" to "WGS 84" geographic CRS. Note that for this particular pair of CRS, there is close to 40 operations declared in the EPSG database. This method prints only the ones that Geotools can handle.
CRS -transform EPSG:4230 EPSG:4326
Prints the math transform that Geotools would use by default for coordinate transformation from "ED50" to "WGS 84".
args
- Options and list of object codes to display.Copyright © 1996–2019 Geotools. All rights reserved.