Package org.geotools.referencing.crs
Class DefaultGeographicCRS
Object
Formattable
AbstractIdentifiedObject
AbstractReferenceSystem
AbstractCRS
AbstractSingleCRS
DefaultGeographicCRS
- All Implemented Interfaces:
- Serializable,- CoordinateReferenceSystem,- GeodeticCRS,- GeographicCRS,- SingleCRS,- IdentifiedObject,- ReferenceSystem,- PROJFormattable
public class DefaultGeographicCRS
extends AbstractSingleCRS
implements GeographicCRS, PROJFormattable
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.
 
 
| Used with CS type(s) | 
|---|
| Ellipsoidal | 
- Since:
- 2.1
- Author:
- Martin Desruisseaux (IRD)
- See Also:
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final DefaultGeographicCRSA two-dimensional geographic coordinate reference system using WGS84 datum.static final DefaultGeographicCRSA three-dimensional geographic coordinate reference system using WGS84 datum.Fields inherited from class AbstractSingleCRSdatumFields inherited from class AbstractCRScoordinateSystemFields inherited from class AbstractIdentifiedObjectEMPTY_ALIAS_ARRAY, EMPTY_IDENTIFIER_ARRAY, IDENTIFIER_COMPARATOR, NAME_COMPARATOR, REMARKS_COMPARATORFields inherited from class FormattableSINGLE_LINEFields inherited from interface IdentifiedObjectALIAS_KEY, IDENTIFIERS_KEY, NAME_KEY, REMARKS_KEYFields inherited from interface ReferenceSystemDOMAIN_OF_VALIDITY_KEY, SCOPE_KEY
- 
Constructor SummaryConstructorsConstructorDescriptionDefaultGeographicCRS(String name, GeodeticDatum datum, EllipsoidalCS cs) Constructs a geographic CRS from a name.DefaultGeographicCRS(Map<String, ?> properties, GeodeticDatum datum, EllipsoidalCS cs) Constructs a geographic CRS from a set of properties.Constructs a new geographic CRS with the same values than the specified one.DefaultGeographicCRS(GeodeticDatum datum, EllipsoidalCS cs) Constructs a geographic CRS with the same properties than the given datum.
- 
Method SummaryModifier and TypeMethodDescriptionintReturns a hash value for this geographic CRS.distance(double[] coord1, double[] coord2) Computes the orthodromic distance between two points.formatPROJ(PROJFormatter formatter) Format the inner part of a PROJFormattable object.protected StringFormat the inner part of a Well Known Text (WKT) element.Returns the coordinate system.getDatum()Returns the datum.Methods inherited from class AbstractSingleCRSequals, getAxis, getDimensionMethods inherited from class AbstractCRShashCodeMethods inherited from class AbstractReferenceSystemgetDomainOfValidity, getScopeMethods inherited from class AbstractIdentifiedObjectasSet, ensureAngularUnit, ensureLinearUnit, ensureNonNull, ensureNonNull, ensureTimeUnit, equals, equals, equals, equals, getAlias, getIdentifier, getIdentifier, getIdentifiers, getName, getName, getName, getProperties, getProperties, getRemarks, nameMatches, nameMatches, nameMatchesMethods inherited from class FormattablecleanupThreadLocals, toString, toWKT, toWKT, toWKT, toWKTMethods inherited from interface IdentifiedObjectgetAlias, getIdentifiers, getName, getRemarks, toWKTMethods inherited from interface ReferenceSystemgetDomainOfValidity, getScope
- 
Field Details- 
WGS84A two-dimensional geographic coordinate reference system using WGS84 datum. This CRS uses (longitude,latitude) ordinates with longitude values increasing East and latitude values increasing North. Angular units are decimal degrees and prime meridian is Greenwich.
- 
WGS84_3DA three-dimensional geographic coordinate reference system using WGS84 datum. This CRS uses (longitude,latitude,height) ordinates with longitude values increasing East, latitude values increasing North and height above the ellipsoid in metres. Angular units are decimal degrees and prime meridian is Greenwich.
 
- 
- 
Constructor Details- 
DefaultGeographicCRSConstructs a new geographic CRS with the same values than the specified one. This copy constructor provides a way to wrap an arbitrary implementation into a Geotools one or a user-defined one (as a subclass), usually in order to leverage some implementation-specific API. This constructor performs a shallow copy, i.e. the properties are not cloned.- Parameters:
- crs- The coordinate reference system to copy.
- Since:
- 2.2
 
- 
DefaultGeographicCRSConstructs a geographic CRS with the same properties than the given datum. The inherited properties include the name and aliases.- Parameters:
- datum- The datum.
- cs- The coordinate system.
- Since:
- 2.5
 
- 
DefaultGeographicCRSConstructs a geographic CRS from a name.- Parameters:
- name- The name.
- datum- The datum.
- cs- The coordinate system.
 
- 
DefaultGeographicCRSConstructs a geographic CRS from a set of properties. The properties are given unchanged to the super-class constructor.- Parameters:
- properties- Set of properties. Should contains at least- "name".
- datum- The datum.
- cs- The coordinate system.
 
 
- 
- 
Method Details- 
getCoordinateSystemReturns the coordinate system.- Specified by:
- getCoordinateSystemin interface- CoordinateReferenceSystem
- Specified by:
- getCoordinateSystemin interface- GeographicCRS
- Specified by:
- getCoordinateSystemin interface- SingleCRS
- Overrides:
- getCoordinateSystemin class- AbstractCRS
- Returns:
- The coordinate system.
 
- 
getDatumReturns the datum.- Specified by:
- getDatumin interface- GeodeticCRS
- Specified by:
- getDatumin interface- SingleCRS
- Overrides:
- getDatumin class- AbstractSingleCRS
- Returns:
- The datum.
 
- 
distancepublic Measure distance(double[] coord1, double[] coord2) throws UnsupportedOperationException, MismatchedDimensionException Computes the orthodromic distance between two points. This convenience method delegates the work to the underlyling ellipsoid, if possible.- Overrides:
- distancein class- AbstractCRS
- Parameters:
- coord1- Coordinates of the first point.
- coord2- Coordinates of the second point.
- Returns:
- The distance between coord1andcoord2.
- Throws:
- UnsupportedOperationException- if this coordinate reference system can't compute distances.
- MismatchedDimensionException- if a coordinate doesn't have the expected dimension.
 
- 
calculateHashCodepublic int calculateHashCode()Returns a hash value for this geographic CRS.- Overrides:
- calculateHashCodein class- AbstractSingleCRS
- Returns:
- The hash code value. This value doesn't need to be the same in past or future versions of this class.
 
- 
formatWKTFormat the inner part of a Well Known Text (WKT) element.- Overrides:
- formatWKTin class- AbstractCRS
- Parameters:
- formatter- The formatter to use.
- Returns:
- The name of the WKT element type, which is "GEOGCS".
- See Also:
 
- 
formatPROJDescription copied from interface:PROJFormattableFormat the inner part of a PROJFormattable object.This method is automatically invoked by PROJFormatter.append(PROJFormattable).For example for a element ( DefaultOperationMethod) of type Projection, the formatter will invoke this method to prepend the "+proj=" String for completing the PROJ String before appending the Projection Name (e.g. lcc for a Lambert Conformal Conic)- Specified by:
- formatPROJin interface- PROJFormattable
- Parameters:
- formatter- The PROJFormatter to use.
- Returns:
- The proj String of the PROJ element type if any. (e.g. +ellps= for named ellipsoids, +datum= for named datums).
 
 
-