Uses of Class
org.geotools.referencing.factory.AbstractAuthorityFactory
-
Packages that use AbstractAuthorityFactory Package Description org.geotools.coverage.io.netcdf.crs org.geotools.referencing.epsg.esri org.geotools.referencing.epsg.postgresql 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.epsg.hsql org.geotools.referencing.factory.wms Provides coordinate reference systems specified in the Web Map Service specification (ISO 19128).org.geotools.referencing.iau -
-
Uses of AbstractAuthorityFactory in org.geotools.coverage.io.netcdf.crs
Subclasses of AbstractAuthorityFactory in org.geotools.coverage.io.netcdf.crs Modifier and Type Class Description class
NetCDFCRSAuthorityFactory
A factory providing NetCDF/GRIB customCoordinateReferenceSystem
instances with the related custom EPSG. -
Uses of AbstractAuthorityFactory in org.geotools.referencing.epsg.esri
Subclasses of AbstractAuthorityFactory in org.geotools.referencing.epsg.esri Modifier and Type Class Description class
EsriExtension
Extends the EPSG database with Coordinate Reference Systems defined by ESRI.class
UnnamedExtension
Provides common Coordinate Reference Systems not found in the standard EPSG database. -
Uses of AbstractAuthorityFactory in org.geotools.referencing.epsg.postgresql
Subclasses of AbstractAuthorityFactory in org.geotools.referencing.epsg.postgresql Modifier and Type Class Description class
ThreadedPostgreSQLEpsgFactory
Connection to the EPSG database in PostgreSQL database engine using JDBC.Methods in org.geotools.referencing.epsg.postgresql that return AbstractAuthorityFactory Modifier and Type Method Description protected AbstractAuthorityFactory
ThreadedPostgreSQLEpsgFactory. createBackingStore(Hints hints)
Returns the backing-store factory for PostgreSQL syntax. -
Uses of AbstractAuthorityFactory in org.geotools.referencing.factory
Subclasses of AbstractAuthorityFactory in org.geotools.referencing.factory Modifier and Type Class Description class
Abstract_URI_AuthorityFactory
Base class for building OGC URN and HTTP URI wrappers aroundAllAuthoritiesFactory
.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
AuthorityFactoryAdapter
class
BufferedAuthorityFactory
An authority factory that caches all objects created by an other factory.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
DeferredAuthorityFactory
A buffered authority factory which will defer the creation of a backing store until when first needed.class
DirectAuthorityFactory
The base class for authority factories that create referencing object directly.class
FallbackAuthorityFactory
A factory which delegates all object creation to a primary factory, and fallback on an other one if the primary factory failed.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
OrderedAxisCRSAuthorityFactory
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
PropertyCoordinateOperationAuthorityFactory
ACoordinateOperationAuthorityFactory
backed by a properties file.class
ThreadedAuthorityFactory
An authority factory that caches all objects created by an other factory.class
TransformedAuthorityFactory
class
URN_AuthorityFactory
Wraps all factories in a"urn:ogc:def"
name space.Methods in org.geotools.referencing.factory that return AbstractAuthorityFactory Modifier and Type Method Description protected abstract AbstractAuthorityFactory
DeferredAuthorityFactory. createBackingStore()
Creates the backing store authority factory.protected AbstractAuthorityFactory
DeferredAuthorityFactory. getBackingStore()
Returns the backing store authority factory.Methods in org.geotools.referencing.factory with parameters of type AbstractAuthorityFactory Modifier and Type Method Description protected boolean
DeferredAuthorityFactory. canDisposeBackingStore(AbstractAuthorityFactory backingStore)
Returnstrue
if the backing store can be disposed now.Constructors in org.geotools.referencing.factory with parameters of type AbstractAuthorityFactory Constructor Description BufferedAuthorityFactory(AbstractAuthorityFactory factory)
Constructs an instance wrapping the specified factory with a default number of entries to keep by strong reference.BufferedAuthorityFactory(AbstractAuthorityFactory factory, int maxStrongReferences)
Constructs an instance wrapping the specified factory.OrderedAxisAuthorityFactory(AbstractAuthorityFactory factory, Hints userHints, AxisDirection... axisOrder)
Creates a factory which will reorder the axis of all objects created by the supplied factory.OrderedAxisCRSAuthorityFactory(AbstractAuthorityFactory factory, Hints userHints, AxisDirection... axisOrder)
Creates a factory which will reorder the axis of all objects created by the supplied factory.ThreadedAuthorityFactory(AbstractAuthorityFactory factory)
Constructs an instance wrapping the specified factory with a default number of entries to keep by strong reference.ThreadedAuthorityFactory(AbstractAuthorityFactory factory, int maxStrongReferences)
Constructs an instance wrapping the specified factory. -
Uses of AbstractAuthorityFactory in org.geotools.referencing.factory.epsg
Subclasses of AbstractAuthorityFactory in org.geotools.referencing.factory.epsg Modifier and Type Class Description 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 systemsclass
CoordinateOperationFactoryUsingWKT
Authority factory that holds user-defined Coordinate Operations.class
DirectEpsgFactory
A coordinate reference system factory backed by the EPSG database tables.class
FactoryUsingAnsiSQL
An EPSG factory for the database generated by SQL scripts rather than the MS-Access one.class
FactoryUsingSQL
Please useAccessDialectEpsgFactory
.class
FactoryUsingWKT
Authority factory for Coordinate Reference Systems beyong the one defined in the EPSG database.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 inReferencingFactoryFinder
.Methods in org.geotools.referencing.factory.epsg with type parameters of type AbstractAuthorityFactory Modifier and Type Method Description protected static <T extends AbstractAuthorityFactory>
TFactoryUsingWKT. getFactory(String authority, Class<T> type)
Methods in org.geotools.referencing.factory.epsg that return AbstractAuthorityFactory Modifier and Type Method Description protected AbstractAuthorityFactory
CoordinateOperationFactoryUsingWKT. createBackingStore()
Creates the backing store authority factory.protected AbstractAuthorityFactory
FactoryUsingWKT. createBackingStore()
Creates the backing store authority factory.protected AbstractAuthorityFactory
LongitudeFirstEpsgDecorator. createBackingStore()
Returns the factory instance (usuallyThreadedEpsgFactory
) to be used as the backing store.protected AbstractAuthorityFactory
LongitudeFirstFactory. createBackingStore()
Returns the factory instance (usuallyThreadedEpsgFactory
) to be used as the backing store.protected AbstractAuthorityFactory
ThreadedEpsgFactory. createBackingStore()
Creates the backing store authority factory.protected AbstractAuthorityFactory
ThreadedEpsgFactory. createBackingStore(Hints hints)
Creates the backing store for the specified data source.Methods in org.geotools.referencing.factory.epsg with parameters of type AbstractAuthorityFactory Modifier and Type Method Description protected boolean
ThreadedEpsgFactory. canDisposeBackingStore(AbstractAuthorityFactory backingStore)
Returnstrue
if the backing store can be disposed now. -
Uses of AbstractAuthorityFactory in org.geotools.referencing.factory.epsg.hsql
Subclasses of AbstractAuthorityFactory in org.geotools.referencing.factory.epsg.hsql Modifier and Type Class Description class
HsqlDialectEpsgMediator
Mediator which delegates the creation of referencing objects to the HsqlDialectEpsgFactory.class
ThreadedHsqlEpsgFactory
Connection to the EPSG database in HSQL database engine format using JDBC.Methods in org.geotools.referencing.factory.epsg.hsql that return AbstractAuthorityFactory Modifier and Type Method Description protected AbstractAuthorityFactory
ThreadedHsqlEpsgFactory. createBackingStore(Hints hints)
Returns the backing-store factory for HSQL syntax. -
Uses of AbstractAuthorityFactory in org.geotools.referencing.factory.wms
Subclasses of AbstractAuthorityFactory in org.geotools.referencing.factory.wms Modifier and Type Class Description class
AutoCRSFactory
class
OGCAPICRSFactory
Similar to the OGC CRS factory, but with a different authority name, designed to support URNs coming from the OGC API - Features - Part 1: Core specification (e.g., "http://www.opengis.net/def/crs/OGC/1.3/CRS84").class
WebCRSFactory
The factory for coordinate reference systems in theCRS
space. -
Uses of AbstractAuthorityFactory in org.geotools.referencing.iau
Subclasses of AbstractAuthorityFactory in org.geotools.referencing.iau Modifier and Type Class Description class
IAUAuthorityFactory
Extends the EPSG database with Coordinate Reference Systems defined by IAU.class
IAULongitudeFirstFactory
An IAU authority factory using (longitude, latitude) axis order.Methods in org.geotools.referencing.iau that return AbstractAuthorityFactory Modifier and Type Method Description protected AbstractAuthorityFactory
IAULongitudeFirstFactory. createBackingStore()
Returns the factory instance (usuallyThreadedEpsgFactory
) to be used as the backing store.
-