Uses of Interface
org.opengis.referencing.crs.CRSAuthorityFactory

Packages that use CRSAuthorityFactory
org.geotools.factory Utility classes which enable dynamic binding to factory implementations at runtime. 
org.geotools.referencing Reference systems implementation. 
org.geotools.referencing.crs Coordinate reference 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.factory.wms Provides coordinate reference systems specified in the Web Map Service specification (ISO 19128). 
 

Uses of CRSAuthorityFactory in org.geotools.factory
 

Methods in org.geotools.factory that return CRSAuthorityFactory
 CRSAuthorityFactory BasicFactories.getCRSAuthorityFactory()
          Returns the CRS authority factory singleton.
 

Uses of CRSAuthorityFactory in org.geotools.referencing
 

Methods in org.geotools.referencing that return CRSAuthorityFactory
static CRSAuthorityFactory CRS.getAuthorityFactory(boolean longitudeFirst)
          Returns the CRS authority factory used by the decode methods.
static CRSAuthorityFactory ReferencingFactoryFinder.getCRSAuthorityFactory(String authority, Hints hints)
          Returns the first implementation of CRSAuthorityFactory matching the specified hints.
 

Methods in org.geotools.referencing that return types with arguments of type CRSAuthorityFactory
static Set<CRSAuthorityFactory> ReferencingFactoryFinder.getCRSAuthorityFactories(Hints hints)
          Returns a set of all available implementations for the CRSAuthorityFactory interface.
 

Uses of CRSAuthorityFactory in org.geotools.referencing.crs
 

Classes in org.geotools.referencing.crs that implement CRSAuthorityFactory
 class EPSGCRSAuthorityFactory
          Deprecated. Uses one of the other EPSG factories backed by a database instead.
 

Methods in org.geotools.referencing.crs that return CRSAuthorityFactory
static CRSAuthorityFactory EPSGCRSAuthorityFactory.getDefault()
          Deprecated. Returns a default coordinate system factory backed by the EPSG property file.
 

Uses of CRSAuthorityFactory in org.geotools.referencing.factory
 

Classes in org.geotools.referencing.factory that implement CRSAuthorityFactory
 class Abstract_URI_AuthorityFactory
          Base class for building OGC URN and HTTP URI wrappers around AllAuthoritiesFactory.
 class AbstractAuthorityMediator
          An authority mediator that consults (a possibily shared) cache before delegating the generation of the content to a "worker" authority factory.
 class AbstractCachedAuthorityFactory
          An authority factory that consults (a possibly shared) cache before generating content itself.
 class AbstractEpsgMediator
          Abstract implementation for EPSG (has a DataSource reference inside).
 class AllAuthoritiesFactory
          An authority factory that delegates the object creation to an other factory determined from the authority name in the code.
 class CachedAuthorityDecorator
          An authority factory that caches all objects created by delegate factories.
 class CachedCRSAuthorityDecorator
          An authority factory that caches all objects created by the delegate CRSAuthorityFactory.
 class HTTP_AuthorityFactory
          Wraps all factories in a "http://www.opengis.net/" name space.
 class HTTP_URI_AuthorityFactory
          AuthorityFactory for OGC HTTP URI resources.
 class ManyAuthoritiesFactory
          An authority factory that delegates the object creation to an other factory determined from the authority name in the code.
 class OrderedAxisAuthorityFactory
          An authority factory which delegates all the work to an other factory, and reorder the axis in some pre-determined order.
 class PropertyAuthorityFactory
          Default implementation for a coordinate reference system authority factory backed by a property file.
 class URN_AuthorityFactory
          Wraps all factories in a "urn:ogc:def" name space.
 

Methods in org.geotools.referencing.factory that return CRSAuthorityFactory
protected  CRSAuthorityFactory ManyAuthoritiesFactory.getCRSAuthorityFactory(String code)
          Returns the CRS authority factory for the specified "AUTHORITY:NUMBER" code.
protected  CRSAuthorityFactory AuthorityFactoryAdapter.getCRSAuthorityFactory(String code)
          Returns the coordinate reference system factory to use for the specified code.
protected  CRSAuthorityFactory Abstract_URI_AuthorityFactory.getCRSAuthorityFactory(String code)
          Returns the coordinate reference system factory to use for the specified URI.
 

Constructors in org.geotools.referencing.factory with parameters of type CRSAuthorityFactory
AuthorityFactoryAdapter(CRSAuthorityFactory crsFactory, CSAuthorityFactory csFactory, DatumAuthorityFactory datumFactory, CoordinateOperationAuthorityFactory opFactory)
          Creates a wrapper around the specified factories.
CachedCRSAuthorityDecorator(CRSAuthorityFactory factory)
          Constructs an instance wrapping the specified factory with a default cache.
CachedCRSAuthorityDecorator(CRSAuthorityFactory factory, ObjectCache cache)
          Constructs an instance wrapping the specified factory.
TransformedAuthorityFactory(CRSAuthorityFactory crsFactory, CSAuthorityFactory csFactory, DatumAuthorityFactory datumFactory, CoordinateOperationAuthorityFactory opFactory)
          Creates a wrapper around the specified factories.
 

Uses of CRSAuthorityFactory in org.geotools.referencing.factory.epsg
 

Classes in org.geotools.referencing.factory.epsg that implement CRSAuthorityFactory
 class AbstractEpsgFactory
          A coordinate reference system factory backed by the EPSG database tables.
 class AccessDialectEpsgFactory
          This factory uses the MS-Access dialect of SQL.
 class AnsiDialectEpsgFactory
          An EPSG factory for the database generated by SQL scripts rather than the MS-Access one.
 class CartesianAuthorityFactory
          A factory providing a EPSG code for a cartesian engineering systems
 class DefaultFactory
          Deprecated. Please use ThreadedEpsgFactory instead, the name DefaultFactory was viewed as confusing
 class DirectEpsgFactory
          A coordinate reference system factory backed by the EPSG database tables.
 class EsriExtension
          Extends the EPSG database with Coordinate Reference Systems defined by ESRI.
 class FactoryUsingAnsiSQL
          Deprecated. Please use AnsiDialectEpsgFactory.
 class FactoryUsingSQL
          Deprecated. Please use AccessDialectEpsgFactory.
 class FactoryUsingWKT
          Authority factory for Coordinate Reference Systems beyong the one defined in the EPSG database.
 class HsqlDialectEpsgMediator
          Mediator which delegates the creation of referencing objects to the HsqlDialectEpsgFactory.
 class LongitudeFirstEpsgDecorator
          An EPSG authority factory using (longitude, latitude) axis order.
 class LongitudeFirstFactory
          An EPSG authority factory using (longitude, latitude) axis order.
 class ThreadedEpsgFactory
          Base class for EPSG factories to be registered in ReferencingFactoryFinder.
 class ThreadedHsqlEpsgFactory
          Connection to the EPSG database in HSQL database engine format using JDBC.
 class ThreadedPostgreSQLEpsgFactory
          Connection to the EPSG database in PostgreSQL database engine using JDBC.
 class UnnamedExtension
          Provides common Coordinate Reference Systems not found in the standard EPSG database.
 

Uses of CRSAuthorityFactory in org.geotools.referencing.factory.wms
 

Classes in org.geotools.referencing.factory.wms that implement CRSAuthorityFactory
 class AutoCRSFactory
          Deprecated. This class will move in a org.geotools.referencing.factory.web package in a future Geotools version, in order to put together other web-related factories defined outside the WMS specification. Don't use this class directly. You should not need to anyway - use ReferencingFactoryFinder instead, which will continue to work no matter where this class is located.
 class WebCRSFactory
          Deprecated. This class will move in a org.geotools.referencing.factory.web package in a future Geotools version, in order to put together other web-related factories defined outside the WMS specification. Don't use this class directly. You should not need to anyway - use ReferencingFactoryFinder instead, which will continue to work no matter where this class is located.
 



Copyright © 1996-2014 Geotools. All Rights Reserved.