| org.geotools.referencing.factory.DirectAuthorityFactory org.geotools.referencing.factory.wms.AutoCRSFactory
Constructor Summary | |
public | AutoCRSFactory() Constructs a default factory for the
AUTO authority. | public | AutoCRSFactory(Hints hints) Constructs a factory for the
AUTO authority using the specified hints. |
Method Summary | |
public CoordinateReferenceSystem | createCoordinateReferenceSystem(String code) Creates a coordinate reference system from the specified code. | public IdentifiedObject | createObject(String code) Creates an object from the specified code. | public ProjectedCRS | createProjectedCRS(String code) Creates a projected coordinate reference system from the specified code. | public Citation | getAuthority() Returns the authority for this factory. | public Set | getAuthorityCodes(Class type) Provides a complete set of the known codes provided by this authority.
The returned set contains only numeric identifiers like
"42001" ,
"42002" , etc. | public InternationalString | getDescriptionText(String code) Returns the CRS name for the given code. |
AutoCRSFactory | public AutoCRSFactory()(Code) | | Constructs a default factory for the
AUTO authority.
|
AutoCRSFactory | public AutoCRSFactory(Hints hints)(Code) | | Constructs a factory for the
AUTO authority using the specified hints.
|
createCoordinateReferenceSystem | public CoordinateReferenceSystem createCoordinateReferenceSystem(String code) throws FactoryException(Code) | | Creates a coordinate reference system from the specified code. The default implementation
delegates to
(code) .
|
createObject | public IdentifiedObject createObject(String code) throws FactoryException(Code) | | Creates an object from the specified code. The default implementation delegates to
(code) .
|
createProjectedCRS | public ProjectedCRS createProjectedCRS(String code) throws FactoryException(Code) | | Creates a projected coordinate reference system from the specified code.
|
getAuthority | public Citation getAuthority()(Code) | | Returns the authority for this factory.
|
getAuthorityCodes | public Set getAuthorityCodes(Class type) throws FactoryException(Code) | | Provides a complete set of the known codes provided by this authority.
The returned set contains only numeric identifiers like
"42001" ,
"42002" , etc. The authority name (
"AUTO" )
and the
lon0,lat0 part are not included. This is consistent with the
and avoid duplication, since the authority is the
same for every codes returned by this factory. It also make it easier for clients to
prepend whatever authority name they wish, as for example in the
.
|
getDescriptionText | public InternationalString getDescriptionText(String code) throws FactoryException(Code) | | Returns the CRS name for the given code.
|
Methods inherited from org.geotools.referencing.factory.DirectAuthorityFactory | public Map getImplementationHints()(Code)(Java Doc)
|
|
|