Uses of Class
org.geotools.api.referencing.FactoryException
Packages that use FactoryException
Package
Description
Coordinate systems and their
axis.
Geodetic datum (the relationship of a
coordinate system to the earth).
Coordinate operations (relationship between
any two coordinate reference systems).
GridCoverage2D implementation.
GRASS input/output drivers
Vector processing support for the GeoTools library.
Reference systems implementation.
Base classes for factories and
authority factories.
Authority factories for
the EPSG database.
Provides coordinate reference systems specified in the Web Map Service
specification (ISO 19128).
Coordinate operation implementation.
A package of convenience classes which use control points common to two
data sets to derive empirically the transformation parameters needed to
convert positions between the coordinate systems of the two data sets.
Basic implementations of map projections.
Basic implementations of math transforms.
Well
Known Text (WKT) parsing and formatting.
A simple renderer implementation.
SLD 1.0 and SE RasterSymbolizer support classes
-
Uses of FactoryException in org.geotools.api.referencing
Subclasses of FactoryException in org.geotools.api.referencingModifier and TypeClassDescriptionclassThrown when an authority factory can't find the requested authority code.classThrown when a math transform as been requested with an unknow operation method identifier.Methods in org.geotools.api.referencing that throw FactoryExceptionModifier and TypeMethodDescriptionAuthorityFactory.createObject(String code) Returns an arbitrary object from a code.AuthorityFactory.getAuthorityCodes(Class<? extends IdentifiedObject> type) Returns the set of authority codes of the given type.AuthorityFactory.getDescriptionText(String code) Gets a description of the object corresponding to a code. -
Uses of FactoryException in org.geotools.api.referencing.crs
Methods in org.geotools.api.referencing.crs that throw FactoryExceptionModifier and TypeMethodDescriptionCRSAuthorityFactory.createCompoundCRS(String code) Creates a 3D coordinate reference system from a code.CRSFactory.createCompoundCRS(Map<String, ?> properties, CoordinateReferenceSystem... elements) Creates a compound coordinate reference system from an ordered list ofCoordinateReferenceSystemobjects.CRSAuthorityFactory.createCoordinateReferenceSystem(String code) Returns an arbitrary coordinate reference system from a code.CRSAuthorityFactory.createDerivedCRS(String code) Creates a derived coordinate reference system from a code.CRSFactory.createDerivedCRS(Map<String, ?> properties, CoordinateReferenceSystem baseCRS, Conversion conversionFromBase, CoordinateSystem derivedCS) Creates a derived coordinate reference system.CRSAuthorityFactory.createEngineeringCRS(String code) Create a engineering coordinate reference system from a code.CRSFactory.createEngineeringCRS(Map<String, ?> properties, EngineeringDatum datum, CoordinateSystem cs) Creates a engineering coordinate reference system.CRSFactory.createFromWKT(String wkt) Creates a coordinate reference system object from a string.CRSFactory.createFromXML(String xml) Creates a coordinate reference system object from a XML string.CRSAuthorityFactory.createGeocentricCRS(String code) Returns a geocentric coordinate reference system from a code.CRSFactory.createGeocentricCRS(Map<String, ?> properties, GeodeticDatum datum, CartesianCS cs) Creates a geocentric coordinate reference system from a cartesian coordinate system.CRSFactory.createGeocentricCRS(Map<String, ?> properties, GeodeticDatum datum, SphericalCS cs) Creates a geocentric coordinate reference system from a spherical coordinate system.CRSAuthorityFactory.createGeographicCRS(String code) Returns a geographic coordinate reference system from a code.CRSFactory.createGeographicCRS(Map<String, ?> properties, GeodeticDatum datum, EllipsoidalCS cs) Creates a geographic coordinate reference system.CRSAuthorityFactory.createImageCRS(String code) Create a image coordinate reference system from a code.CRSFactory.createImageCRS(Map<String, ?> properties, ImageDatum datum, AffineCS cs) Creates an image coordinate reference system.CRSAuthorityFactory.createProjectedCRS(String code) Returns a projected coordinate reference system from a code.CRSFactory.createProjectedCRS(Map<String, ?> properties, GeographicCRS baseCRS, Conversion conversionFromBase, CartesianCS derivedCS) Creates a projected coordinate reference system from a defining conversion.CRSAuthorityFactory.createTemporalCRS(String code) Create a temporal coordinate reference system from a code.CRSFactory.createTemporalCRS(Map<String, ?> properties, TemporalDatum datum, TimeCS cs) Creates a temporal coordinate reference system.CRSAuthorityFactory.createVerticalCRS(String code) Create a vertical coordinate reference system from a code.CRSFactory.createVerticalCRS(Map<String, ?> properties, VerticalDatum datum, VerticalCS cs) Creates a vertical coordinate reference system. -
Uses of FactoryException in org.geotools.api.referencing.cs
Methods in org.geotools.api.referencing.cs that throw FactoryExceptionModifier and TypeMethodDescriptionCSFactory.createAffineCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1) Creates a two dimensional coordinate system from the given pair of axis.CSFactory.createAffineCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2) Creates a three dimensional coordinate system from the given set of axis.CSAuthorityFactory.createCartesianCS(String code) Creates a cartesian coordinate system from a code.CSFactory.createCartesianCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1) Creates a two dimensional cartesian coordinate system from the given pair of axis.CSFactory.createCartesianCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2) Creates a three dimensional cartesian coordinate system from the given set of axis.CSAuthorityFactory.createCoordinateSystem(String code) Returns an arbitrary coordinate system from a code.CSAuthorityFactory.createCoordinateSystemAxis(String code) Returns a coordinate system axis from a code.CSFactory.createCoordinateSystemAxis(Map<String, ?> properties, String abbreviation, AxisDirection direction, Unit<?> unit) Creates a coordinate system axis from an abbreviation and a unit.CSAuthorityFactory.createCylindricalCS(String code) Creates a cylindrical coordinate system from a code.CSFactory.createCylindricalCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2) Creates a cylindrical coordinate system from the given set of axis.CSAuthorityFactory.createEllipsoidalCS(String code) Creates an ellipsoidal coordinate system from a code.CSFactory.createEllipsoidalCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1) Creates an ellipsoidal coordinate system without ellipsoidal height.CSFactory.createEllipsoidalCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2) Creates an ellipsoidal coordinate system with ellipsoidal height.CSFactory.createLinearCS(Map<String, ?> properties, CoordinateSystemAxis axis) Creates a linear coordinate system.CSAuthorityFactory.createPolarCS(String code) Creates a polar coordinate system from a code.CSFactory.createPolarCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1) Creates a polar coordinate system from the given pair of axis.CSAuthorityFactory.createSphericalCS(String code) Creates a spherical coordinate system from a code.CSFactory.createSphericalCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2) Creates a spherical coordinate system from the given set of axis.CSAuthorityFactory.createTimeCS(String code) Creates a temporal coordinate system from a code.CSFactory.createTimeCS(Map<String, ?> properties, CoordinateSystemAxis axis) Creates a time coordinate system.Unit<?>CSAuthorityFactory.createUnit(String code) Returns an unit from a code.CSFactory.createUserDefinedCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1) Creates a two-dimensional user defined coordinate system.CSFactory.createUserDefinedCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2) Creates a three-dimensional user defined coordinate system.CSAuthorityFactory.createVerticalCS(String code) Creates a vertical coordinate system from a code.CSFactory.createVerticalCS(Map<String, ?> properties, CoordinateSystemAxis axis) Creates a vertical coordinate system. -
Uses of FactoryException in org.geotools.api.referencing.datum
Methods in org.geotools.api.referencing.datum that throw FactoryExceptionModifier and TypeMethodDescriptionDatumAuthorityFactory.createDatum(String code) Returns an arbitrary datum from a code.DatumAuthorityFactory.createEllipsoid(String code) Returns an ellipsoid from a code.DatumFactory.createEllipsoid(Map<String, ?> properties, double semiMajorAxis, double semiMinorAxis, Unit<Length> unit) Creates an ellipsoid from radius values.DatumAuthorityFactory.createEngineeringDatum(String code) Creates a engineering datum from a code.DatumFactory.createEngineeringDatum(Map<String, ?> properties) Creates an engineering datum.DatumFactory.createFlattenedSphere(Map<String, ?> properties, double semiMajorAxis, double inverseFlattening, Unit<Length> unit) Creates an ellipsoid from an major radius, and inverse flattening.DatumAuthorityFactory.createGeodeticDatum(String code) Returns a geodetic datum from a code.DatumFactory.createGeodeticDatum(Map<String, ?> properties, Ellipsoid ellipsoid, PrimeMeridian primeMeridian) Creates geodetic datum from ellipsoid and (optionaly) Bursa-Wolf parameters.DatumAuthorityFactory.createImageDatum(String code) Creates a image datum from a code.DatumFactory.createImageDatum(Map<String, ?> properties, PixelInCell pixelInCell) Creates an image datum.DatumAuthorityFactory.createPrimeMeridian(String code) Returns a prime meridian from a code.DatumFactory.createPrimeMeridian(Map<String, ?> properties, double longitude, Unit<Angle> unit) Creates a prime meridian, relative to Greenwich.DatumAuthorityFactory.createTemporalDatum(String code) Creates a temporal datum from a code.DatumFactory.createTemporalDatum(Map<String, ?> properties, Date origin) Creates a temporal datum from an enumerated type value.DatumAuthorityFactory.createVerticalDatum(String code) Creates a vertical datum from a code.DatumFactory.createVerticalDatum(Map<String, ?> properties, VerticalDatumType type) Creates a vertical datum from an enumerated type value. -
Uses of FactoryException in org.geotools.api.referencing.operation
Subclasses of FactoryException in org.geotools.api.referencing.operationMethods in org.geotools.api.referencing.operation that throw FactoryExceptionModifier and TypeMethodDescriptionMathTransformFactory.createAffineTransform(Matrix matrix) Creates an affine transform from a matrix.MathTransformFactory.createBaseToDerived(CoordinateReferenceSystem baseCRS, ParameterValueGroup parameters, CoordinateSystem derivedCS) Creates a parameterized transform from a base CRS to a derived CS.CoordinateOperationFactory.createConcatenatedOperation(Map<String, ?> properties, CoordinateOperation... operations) Creates a concatenated operation from a sequence of operations.MathTransformFactory.createConcatenatedTransform(MathTransform transform1, MathTransform transform2) Creates a transform by concatenating two existing transforms.CoordinateOperationAuthorityFactory.createCoordinateOperation(String code) Creates an operation from a single operation code.CoordinateOperationFactory.createDefiningConversion(Map<String, ?> properties, OperationMethod method, ParameterValueGroup parameters) Constructs a defining conversion from a set of properties.CoordinateOperationAuthorityFactory.createFromCoordinateReferenceSystemCodes(String sourceCRS, String targetCRS) Creates operations from coordinate reference system codes.MathTransformFactory.createFromWKT(String wkt) Creates a math transform object from a string.MathTransformFactory.createFromXML(String xml) Creates a math transform object from a XML string.CoordinateOperationFactory.createOperation(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS) Returns an operation for conversion or transformation between two coordinate reference systems.CoordinateOperationFactory.createOperation(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, OperationMethod method) Returns an operation using a particular method for conversion or transformation between two coordinate reference systems.MathTransformFactory.createParameterizedTransform(ParameterValueGroup parameters) Creates a transform from a group of parameters.MathTransformFactory.createPassThroughTransform(int firstAffectedOrdinate, MathTransform subTransform, int numTrailingOrdinates) Creates a transform which passes through a subset of ordinates to another transform.CoordinateOperationFactory.findOperations(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS) Returns all the available operations for conversion or transformation between two coordinate reference systems. -
Uses of FactoryException in org.geotools.coverage.grid
Methods in org.geotools.coverage.grid that throw FactoryExceptionModifier and TypeMethodDescriptionGridGeometry2D.reduce(CoordinateReferenceSystem crs) Reduces the specified CRS to a two-dimensional one. -
Uses of FactoryException in org.geotools.coverage.grid.io
Constructors in org.geotools.coverage.grid.io that throw FactoryExceptionModifierConstructorDescriptionReadResolutionCalculator(GridGeometry2D requestedGridGeometry, CoordinateReferenceSystem nativeCrs, double[] fullResolution) -
Uses of FactoryException in org.geotools.coverage.io.netcdf.crs
Methods in org.geotools.coverage.io.netcdf.crs that throw FactoryExceptionModifier and TypeMethodDescriptionstatic CoordinateReferenceSystemProjectionBuilder.buildCRS(Map<String, ?> props, ParameterValueGroup parameters, Ellipsoid ellipsoid) Build a ProjectedCoordinateReferenceSystemparsing Conversion parameters and Ellipsoidstatic CoordinateReferenceSystemProjectionBuilder.createProjection(String projectionName, String code, Double semiMajor, Double inverseFlattening, Map<String, Double> params) Quick method to create aCoordinateReferenceSysteminstance, given the OGC ProjectionName, such as "lambert_conformal_conic_2sp"), a custom code number for it, the semiMajor, the inverseFlattening (when infinity, assuming the reference ellipsoid is a spheroid), and the Projection Params through a <key,value> map (as an instance: <"central_meridian",-95>)static MathTransformProjectionBuilder.createTransform(ParameterValueGroup parameters) static CoordinateReferenceSystemNetCDFProjection.lookForVariableCRS(NetcdfDataset dataset, CoordinateReferenceSystem defaultCrs) static CoordinateReferenceSystemNetCDFProjection.lookForVariableCRS(NetcdfDataset dataset, CoordinateReferenceSystem defaultCrs, Map<String, Object> crsProperties) Look for a CoordinateReferenceSystem defined into a variablestatic CoordinateReferenceSystemNetCDFProjection.lookupForCustomEpsg(CoordinateReferenceSystem crs) Check if any custom EPSG maps the provided crs and return that onestatic CoordinateReferenceSystemNetCDFProjection.parseProjection(Variable var) Extract the georeferencing projection information from the specified variable and setup aCoordinateReferenceSysteminstancestatic CoordinateReferenceSystemNetCDFProjection.parseProjection(Variable var, NetCDFProjection.CRSParser crsParser) Extract the georeferencing projection information from the specified variable and setup aCoordinateReferenceSysteminstancestatic CoordinateReferenceSystemNetCDFProjection.parseProjection(Variable var, NetCDFProjection.CRSParser crsParser, Map<String, Object> crsProperties) Extract the georeferencing projection information from the specified variable and setup aCoordinateReferenceSysteminstance -
Uses of FactoryException in org.geotools.coverage.io.util
Methods in org.geotools.coverage.io.util that throw FactoryExceptionModifier and TypeMethodDescriptionstatic BoundsUtilities.getEnvelopeAsWGS84(Bounds bounds, boolean get2D) Get a WGS84 envelope for the specified envelope.static GeneralBoundsUtilities.getIntersection(ReferencedEnvelope baseEnvelope2D, CoordinateReferenceSystem spatialReferenceSystem2D, GeneralBounds requestedEnvelope2D, Rectangle requestedDim, MathTransform2D readGridToWorld, ReferencedEnvelope wgs84BaseEnvelope2D) Returns the intersection between the base envelope and the requested envelope.static GeneralBoundsUtilities.getRequestedEnvelope2D(GeneralBounds requestedEnvelope) Return a 2D version of a requestedEnvelope -
Uses of FactoryException in org.geotools.data
Constructors in org.geotools.data that throw FactoryExceptionModifierConstructorDescriptionPrjFileReader(ReadableByteChannel channel) Load the index file from the given channel.PrjFileReader(ReadableByteChannel channel, Hints hints) Load the index file from the given channel. -
Uses of FactoryException in org.geotools.data.crs
Constructors in org.geotools.data.crs that throw FactoryExceptionModifierConstructorDescriptionReprojectFeatureReader(FeatureReader<SimpleFeatureType, SimpleFeature> reader, SimpleFeatureType schema) Constructor that will generate mathTransforms for the results, based on target schema.ReprojectFeatureReader(FeatureReader<SimpleFeatureType, SimpleFeature> reader, CoordinateReferenceSystem cs) Constructor that will generate schema and mathTransforms for the results.ReprojectFeatureResults(FeatureCollection<SimpleFeatureType, SimpleFeature> results, CoordinateReferenceSystem destinationCS) Creates a new reprojecting feature results -
Uses of FactoryException in org.geotools.data.store
Constructors in org.geotools.data.store that throw FactoryExceptionModifierConstructorDescriptionReprojectingFeatureIterator(SimpleFeatureIterator delegate, CoordinateReferenceSystem source, CoordinateReferenceSystem target, SimpleFeatureType schema, GeometryCoordinateSequenceTransformer transformer) ReprojectingFeatureIterator(SimpleFeatureIterator delegate, MathTransform transform, SimpleFeatureType schema, GeometryCoordinateSequenceTransformer transformer) ReprojectingIterator(Iterator<SimpleFeature> delegate, CoordinateReferenceSystem source, CoordinateReferenceSystem target, SimpleFeatureType schema, GeometryCoordinateSequenceTransformer transformer) ReprojectingIterator(Iterator<SimpleFeature> delegate, MathTransform transform, SimpleFeatureType schema, GeometryCoordinateSequenceTransformer transformer) -
Uses of FactoryException in org.geotools.gce.grassraster
Methods in org.geotools.gce.grassraster that throw FactoryExceptionModifier and TypeMethodDescriptionstatic EnvelopeJGrassUtilities.reprojectEnvelopeByEpsg(int srcEpsg, int destEpsg, Envelope srcEnvelope) -
Uses of FactoryException in org.geotools.gce.imagemosaic
Methods in org.geotools.gce.imagemosaic that throw FactoryExceptionModifier and TypeMethodDescriptionstatic booleanUtils.isSupportedCRS(GridCoverage2DReader reader, CoordinateReferenceSystem crs) Check if the provided reader is a MultiCRS Reader and it can support the specified crs.static ReferencedEnvelopeUtils.reprojectEnvelope(ReferencedEnvelope sourceEnvelope, CoordinateReferenceSystem targetCRS, ReferencedEnvelope targetReferenceEnvelope) static GeometryUtils.reprojectEnvelopeToGeometry(ReferencedEnvelope sourceEnvelope, CoordinateReferenceSystem targetCRS, ReferencedEnvelope targetReferenceEnvelope) Reprojects an envelope using theProjectionHandlermachinery.voidImageMosaicConfigHandler.updateConfiguration(GridCoverage2DReader coverageReader, String inputCoverageName, File fileBeingProcessed, int fileIndex, double numFiles, DefaultTransaction transaction) voidImageMosaicConfigHandler.updateConfiguration(GridCoverage2DReader coverageReader, String inputCoverageName, ImageMosaicSourceElement element, int fileIndex, double numFiles, DefaultTransaction transaction) Use the passed coverageReader to create or update the all the needed configurations
It not responsible of the passed coverageReader which should be disposed outside (in the caller). -
Uses of FactoryException in org.geotools.geometry.jts
Methods in org.geotools.geometry.jts that throw FactoryExceptionModifier and TypeMethodDescriptionvoidLiteShape2.setGeometry(Geometry g) Sets the geometry contained in this lite shape.ReferencedEnvelope.transform(CoordinateReferenceSystem targetCRS, boolean lenient) Transforms the referenced envelope to the specified coordinate reference system.ReferencedEnvelope.transform(CoordinateReferenceSystem targetCRS, boolean lenient, int numPointsForTransformation) Transforms the referenced envelope to the specified coordinate reference system using the specified amount of points.ReferencedEnvelope3D.transform(CoordinateReferenceSystem targetCRS, boolean lenient) Transforms the referenced envelope to the specified coordinate reference system.ReferencedEnvelope3D.transform(CoordinateReferenceSystem targetCRS, boolean lenient, int numPointsForTransformation) Transforms the referenced envelope to the specified coordinate reference system using the specified amount of points.static ReferencedEnvelopeJTS.transformTo2D(ReferencedEnvelope sourceEnvelope, CoordinateReferenceSystem targetCRS, boolean lenient, int npoints) Transform from 3D down to 2D.static ReferencedEnvelope3DJTS.transformTo3D(ReferencedEnvelope sourceEnvelope, CoordinateReferenceSystem targetCRS, boolean lenient, int npoints) Transform from D up to 3D.Constructors in org.geotools.geometry.jts that throw FactoryExceptionModifierConstructorDescriptionLiteShape2(Geometry geom, MathTransform mathTransform, Decimator decimator, boolean generalize) Creates a new LiteShape object.LiteShape2(Geometry geom, MathTransform mathTransform, Decimator decimator, boolean generalize, boolean clone) Creates a new LiteShape object.LiteShape2(Geometry geom, MathTransform mathTransform, Decimator decimator, boolean generalize, double maxDistance) Creates a new LiteShape object. -
Uses of FactoryException in org.geotools.gml.stream
Methods in org.geotools.gml.stream that throw FactoryExceptionModifier and TypeMethodDescriptionXmlStreamGeometryReader.readGeometry()Reads the nextGeometryfrom the stream. -
Uses of FactoryException in org.geotools.ows.wmts.model
Methods in org.geotools.ows.wmts.model that throw FactoryExceptionModifier and TypeMethodDescriptionprotected CoordinateReferenceSystemTileMatrixSet.parseCoordinateReferenceSystem(String crs) Try and parse the crs string. -
Uses of FactoryException in org.geotools.process.vector
Methods in org.geotools.process.vector that throw FactoryExceptionModifier and TypeMethodDescriptionGraticuleLabelPointProcess.execute(SimpleFeatureCollection features, ReferencedEnvelope bounds, Double offset, String placement) -
Uses of FactoryException in org.geotools.referencing
Methods in org.geotools.referencing that throw FactoryExceptionModifier and TypeMethodDescriptionstatic CoordinateReferenceSystemReturn a Coordinate Reference System for the specified code.static CoordinateReferenceSystemReturn a Coordinate Reference System for the specified code, maybe forcing the axis order to (longitude, latitude).protected voidExecute the specified instruction.static MathTransformCRS.findMathTransform(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS) Grab a transform between two Coordinate Reference Systems.static MathTransformCRS.findMathTransform(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, boolean lenient) Grab a transform between two Coordinate Reference Systems.static MathTransformCRS.findMathTransform(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, String transformCode) Grab a transform between two Coordinate Reference Systems with the required transformation being used.static Map<String,AbstractCoordinateOperation> CRS.getTransforms(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS) List the availableDefaultConcatenatedOperationfrom sourceCRS to targetCRSstatic booleanCRS.isTransformationRequired(CoordinateReferenceSystem source, CoordinateReferenceSystem target) Checks if a transformation is required to go from source to target.static IntegerCRS.lookupEpsgCode(CoordinateReferenceSystem crs, boolean fullScan) Looks up an EPSG code for the given coordinate reference system).static StringCRS.lookupIdentifier(Citation authority, CoordinateReferenceSystem crs, boolean fullScan) Looks up an identifier of the specified authority for the given coordinate reference system).static StringCRS.lookupIdentifier(IdentifiedObject object, boolean fullScan) Looks up an identifier for the specified object.static CoordinateReferenceSystemParses a Well Known Text (WKT) into a CRS object. -
Uses of FactoryException in org.geotools.referencing.epsg.esri
Methods in org.geotools.referencing.epsg.esri that throw FactoryException -
Uses of FactoryException in org.geotools.referencing.epsg.wkt
Methods in org.geotools.referencing.epsg.wkt that throw FactoryExceptionModifier and TypeMethodDescriptionEPSGCRSAuthorityFactory.createCompoundCRS(String str) EPSGCRSAuthorityFactory.createCoordinateReferenceSystem(String code) EPSGCRSAuthorityFactory.createDerivedCRS(String str) EPSGCRSAuthorityFactory.createEngineeringCRS(String str) EPSGCRSAuthorityFactory.createGeocentricCRS(String str) EPSGCRSAuthorityFactory.createGeographicCRS(String code) EPSGCRSAuthorityFactory.createImageCRS(String str) EPSGCRSAuthorityFactory.createObject(String code) EPSGCRSAuthorityFactory.createProjectedCRS(String code) EPSGCRSAuthorityFactory.createTemporalCRS(String str) EPSGCRSAuthorityFactory.createVerticalCRS(String str) EPSGCRSAuthorityFactory.getAuthorityCodes(Class clazz) Returns the set of authority codes of the given type.EPSGCRSAuthorityFactory.getDescriptionText(String code) Constructors in org.geotools.referencing.epsg.wkt that throw FactoryExceptionModifierConstructorDescriptionprotectedEPSGCRSAuthorityFactory(CRSFactory factory, URL definition) -
Uses of FactoryException in org.geotools.referencing.factory
Subclasses of FactoryException in org.geotools.referencing.factoryModifier and TypeClassDescriptionclassThrown when a requested factory has not been found.Methods in org.geotools.referencing.factory with parameters of type FactoryExceptionModifier and TypeMethodDescriptionprotected booleanIdentifiedObjectSet.isRecoverableFailure(FactoryException exception) Returnstrueif the specified exception should be handled as a recoverable failure.Methods in org.geotools.referencing.factory that throw FactoryExceptionModifier and TypeMethodDescriptionReferencingObjectFactory.createAffineCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1) Creates a two dimensional coordinate system from the given pair of axis.ReferencingObjectFactory.createAffineCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2) Creates a three dimensional coordinate system from the given set of axis.protected abstract AbstractAuthorityFactoryDeferredAuthorityFactory.createBackingStore()Creates the backing store authority factory.AbstractAuthorityFactory.createCartesianCS(String code) Creates a cartesian coordinate system from a code.AbstractAuthorityMediator.createCartesianCS(String code) AbstractCachedAuthorityFactory.createCartesianCS(String code) Creates a cartesian coordinate system from a code.AuthorityFactoryAdapter.createCartesianCS(String code) Creates a cartesian coordinate system from a code.BufferedAuthorityFactory.createCartesianCS(String code) Returns a cartesian coordinate system from a code.CachedAuthorityDecorator.createCartesianCS(String code) FallbackAuthorityFactory.createCartesianCS(String code) Creates a cartesian coordinate system from a code.ReferencingObjectFactory.createCartesianCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1) Creates a two dimensional cartesian coordinate system from the given pair of axis.ReferencingObjectFactory.createCartesianCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2) Creates a three dimensional cartesian coordinate system from the given set of axis.ThreadedAuthorityFactory.createCartesianCS(String code) Returns a cartesian coordinate system from a code.AbstractAuthorityFactory.createCompoundCRS(String code) Creates a 3D coordinate reference system from a code.AbstractAuthorityMediator.createCompoundCRS(String code) AbstractCachedAuthorityFactory.createCompoundCRS(String code) Creates a 3D coordinate reference system from a code.AuthorityFactoryAdapter.createCompoundCRS(String code) Creates a 3D coordinate reference system from a code.BufferedAuthorityFactory.createCompoundCRS(String code) Returns a 3D coordinate reference system from a code.CachedAuthorityDecorator.createCompoundCRS(String code) CachedCRSAuthorityDecorator.createCompoundCRS(String code) FallbackAuthorityFactory.createCompoundCRS(String code) Creates a 3D coordinate reference system from a code.ReferencingObjectFactory.createCompoundCRS(Map<String, ?> properties, CoordinateReferenceSystem... elements) Creates a compound coordinate reference system from an ordered list ofCoordinateReferenceSystemobjects.ThreadedAuthorityFactory.createCompoundCRS(String code) Returns a 3D coordinate reference system from a code.AbstractAuthorityFactory.createCoordinateOperation(String code) Creates an operation from a single operation code.AbstractAuthorityMediator.createCoordinateOperation(String code) AbstractCachedAuthorityFactory.createCoordinateOperation(String code) AuthorityFactoryAdapter.createCoordinateOperation(String code) Creates an operation from a single operation code.BufferedAuthorityFactory.createCoordinateOperation(String code) Returns an operation from a single operation code.CachedAuthorityDecorator.createCoordinateOperation(String code) FallbackAuthorityFactory.createCoordinateOperation(String code) Creates an operation from a single operation code.PropertyCoordinateOperationAuthorityFactory.createCoordinateOperation(String code) Creates an operation from a single operation code.ThreadedAuthorityFactory.createCoordinateOperation(String code) Returns an operation from a single operation code.AbstractAuthorityFactory.createCoordinateReferenceSystem(String code) Returns an arbitrary coordinate reference system from a code.AbstractAuthorityMediator.createCoordinateReferenceSystem(String code) AbstractCachedAuthorityFactory.createCoordinateReferenceSystem(String code) AuthorityFactoryAdapter.createCoordinateReferenceSystem(String code) Returns an arbitrary coordinate reference system from a code.BufferedAuthorityFactory.createCoordinateReferenceSystem(String code) Returns an arbitrary coordinate reference system from a code.CachedAuthorityDecorator.createCoordinateReferenceSystem(String code) CachedCRSAuthorityDecorator.createCoordinateReferenceSystem(String code) FallbackAuthorityFactory.createCoordinateReferenceSystem(String code) Returns an arbitrary coordinate reference system from a code.PropertyAuthorityFactory.createCoordinateReferenceSystem(String code) Returns a coordinate reference system from a code.ThreadedAuthorityFactory.createCoordinateReferenceSystem(String code) Returns an arbitrary coordinate reference system from a code.AbstractAuthorityFactory.createCoordinateSystem(String code) Returns an arbitrary coordinate system from a code.AbstractAuthorityMediator.createCoordinateSystem(String code) AbstractCachedAuthorityFactory.createCoordinateSystem(String code) AuthorityFactoryAdapter.createCoordinateSystem(String code) Returns an arbitrary coordinate system from a code.BufferedAuthorityFactory.createCoordinateSystem(String code) Returns an arbitrary coordinate system from a code.CachedAuthorityDecorator.createCoordinateSystem(String code) FallbackAuthorityFactory.createCoordinateSystem(String code) Returns an arbitrary coordinate system from a code.ThreadedAuthorityFactory.createCoordinateSystem(String code) Returns an arbitrary coordinate system from a code.AbstractAuthorityFactory.createCoordinateSystemAxis(String code) Returns a coordinate system axis from a code.AbstractAuthorityMediator.createCoordinateSystemAxis(String code) AbstractCachedAuthorityFactory.createCoordinateSystemAxis(String code) AuthorityFactoryAdapter.createCoordinateSystemAxis(String code) Returns a coordinate system axis from a code.BufferedAuthorityFactory.createCoordinateSystemAxis(String code) Returns a coordinate system axis from a code.CachedAuthorityDecorator.createCoordinateSystemAxis(String code) FallbackAuthorityFactory.createCoordinateSystemAxis(String code) Returns a coordinate system axis from a code.ReferencingObjectFactory.createCoordinateSystemAxis(Map<String, ?> properties, String abbreviation, AxisDirection direction, Unit<?> unit) Creates a coordinate system axis from an abbreviation and a unit.ThreadedAuthorityFactory.createCoordinateSystemAxis(String code) Returns a coordinate system axis from a code.AbstractAuthorityFactory.createCylindricalCS(String code) Creates a cylindrical coordinate system from a code.AbstractAuthorityMediator.createCylindricalCS(String code) AbstractCachedAuthorityFactory.createCylindricalCS(String code) The default implementation invokescreateCoordinateSystem(code).AuthorityFactoryAdapter.createCylindricalCS(String code) Creates a cylindrical coordinate system from a code.BufferedAuthorityFactory.createCylindricalCS(String code) Returns a cylindrical coordinate system from a code.CachedAuthorityDecorator.createCylindricalCS(String code) FallbackAuthorityFactory.createCylindricalCS(String code) Creates a cylindrical coordinate system from a code.ReferencingObjectFactory.createCylindricalCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2) Creates a cylindrical coordinate system from the given set of axis.ThreadedAuthorityFactory.createCylindricalCS(String code) Returns a cylindrical coordinate system from a code.AbstractAuthorityFactory.createDatum(String code) Returns an arbitrary datum from a code.AbstractAuthorityMediator.createDatum(String code) AbstractCachedAuthorityFactory.createDatum(String code) AuthorityFactoryAdapter.createDatum(String code) Returns an arbitrary datum from a code.BufferedAuthorityFactory.createDatum(String code) Returns an arbitrary datum from a code.CachedAuthorityDecorator.createDatum(String code) FallbackAuthorityFactory.createDatum(String code) Returns an arbitrary datum from a code.ThreadedAuthorityFactory.createDatum(String code) Returns an arbitrary datum from a code.AbstractAuthorityFactory.createDerivedCRS(String code) Creates a derived coordinate reference system from a code.AbstractAuthorityMediator.createDerivedCRS(String code) AbstractCachedAuthorityFactory.createDerivedCRS(String code) AuthorityFactoryAdapter.createDerivedCRS(String code) Creates a derived coordinate reference system from a code.BufferedAuthorityFactory.createDerivedCRS(String code) Returns a derived coordinate reference system from a code.CachedAuthorityDecorator.createDerivedCRS(String code) CachedCRSAuthorityDecorator.createDerivedCRS(String code) FallbackAuthorityFactory.createDerivedCRS(String code) Creates a derived coordinate reference system from a code.ReferencingObjectFactory.createDerivedCRS(Map<String, ?> properties, CoordinateReferenceSystem baseCRS, Conversion conversionFromBase, CoordinateSystem derivedCS) Creates a derived coordinate reference system from a conversion.ThreadedAuthorityFactory.createDerivedCRS(String code) Returns a derived coordinate reference system from a code.AbstractAuthorityFactory.createEllipsoid(String code) Returns an ellipsoid from a code.AbstractAuthorityMediator.createEllipsoid(String code) AbstractCachedAuthorityFactory.createEllipsoid(String code) AuthorityFactoryAdapter.createEllipsoid(String code) Returns an ellipsoid from a code.BufferedAuthorityFactory.createEllipsoid(String code) Returns an ellipsoid from a code.CachedAuthorityDecorator.createEllipsoid(String code) DatumAliases.createEllipsoid(Map<String, ?> properties, double semiMajorAxis, double semiMinorAxis, Unit<Length> unit) Creates an ellipsoid from radius values.FallbackAuthorityFactory.createEllipsoid(String code) Returns an ellipsoid from a code.ReferencingObjectFactory.createEllipsoid(Map<String, ?> properties, double semiMajorAxis, double semiMinorAxis, Unit<Length> unit) Creates an ellipsoid from radius values.ThreadedAuthorityFactory.createEllipsoid(String code) Returns an ellipsoid from a code.AbstractAuthorityFactory.createEllipsoidalCS(String code) Creates an ellipsoidal coordinate system from a code.AbstractAuthorityMediator.createEllipsoidalCS(String code) AbstractCachedAuthorityFactory.createEllipsoidalCS(String code) AuthorityFactoryAdapter.createEllipsoidalCS(String code) Creates an ellipsoidal coordinate system from a code.BufferedAuthorityFactory.createEllipsoidalCS(String code) Returns an ellipsoidal coordinate system from a code.CachedAuthorityDecorator.createEllipsoidalCS(String code) FallbackAuthorityFactory.createEllipsoidalCS(String code) Creates an ellipsoidal coordinate system from a code.ReferencingObjectFactory.createEllipsoidalCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1) Creates an ellipsoidal coordinate system without ellipsoidal height.ReferencingObjectFactory.createEllipsoidalCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2) Creates an ellipsoidal coordinate system with ellipsoidal height.ThreadedAuthorityFactory.createEllipsoidalCS(String code) Returns an ellipsoidal coordinate system from a code.AbstractAuthorityFactory.createEngineeringCRS(String code) Creates a engineering coordinate reference system from a code.AbstractCachedAuthorityFactory.createEngineeringCRS(String code) AuthorityFactoryAdapter.createEngineeringCRS(String code) Creates a engineering coordinate reference system from a code.BufferedAuthorityFactory.createEngineeringCRS(String code) Returns an engineering coordinate reference system from a code.CachedAuthorityDecorator.createEngineeringCRS(String code) CachedCRSAuthorityDecorator.createEngineeringCRS(String code) FallbackAuthorityFactory.createEngineeringCRS(String code) Creates a engineering coordinate reference system from a code.ReferencingObjectFactory.createEngineeringCRS(Map<String, ?> properties, EngineeringDatum datum, CoordinateSystem cs) Creates a engineering coordinate reference system.ThreadedAuthorityFactory.createEngineeringCRS(String code) Returns an engineering coordinate reference system from a code.AbstractAuthorityFactory.createEngineeringDatum(String code) Creates a engineering datum from a code.AbstractAuthorityMediator.createEngineeringDatum(String code) AbstractCachedAuthorityFactory.createEngineeringDatum(String code) AuthorityFactoryAdapter.createEngineeringDatum(String code) Creates a engineering datum from a code.BufferedAuthorityFactory.createEngineeringDatum(String code) Returns an engineering datum from a code.CachedAuthorityDecorator.createEngineeringDatum(String code) DatumAliases.createEngineeringDatum(Map<String, ?> properties) Creates an engineering datum.FallbackAuthorityFactory.createEngineeringDatum(String code) Creates a engineering datum from a code.ReferencingObjectFactory.createEngineeringDatum(Map<String, ?> properties) Creates an engineering datum.ThreadedAuthorityFactory.createEngineeringDatum(String code) Returns an engineering datum from a code.AbstractAuthorityFactory.createExtent(String code) Returns a extent (usually an area of validity) from a code.AuthorityFactoryAdapter.createExtent(String code) Returns a extent (usually an area of validity) from a code.BufferedAuthorityFactory.createExtent(String code) Returns an extent (usually an area of validity) from a code.FallbackAuthorityFactory.createExtent(String code) Returns a extent (usually an area of validity) from a code.ThreadedAuthorityFactory.createExtent(String code) Returns an extent (usually an area of validity) from a code.DatumAliases.createFlattenedSphere(Map<String, ?> properties, double semiMajorAxis, double inverseFlattening, Unit<Length> unit) Creates an ellipsoid from an major radius, and inverse flattening.ReferencingObjectFactory.createFlattenedSphere(Map<String, ?> properties, double semiMajorAxis, double inverseFlattening, Unit<Length> unit) Creates an ellipsoid from an major radius, and inverse flattening.AbstractAuthorityFactory.createFromCoordinateReferenceSystemCodes(String sourceCRS, String targetCRS) Creates an operation from coordinate reference system codes.AbstractAuthorityMediator.createFromCoordinateReferenceSystemCodes(String sourceCode, String targetCode) AbstractCachedAuthorityFactory.createFromCoordinateReferenceSystemCodes(String sourceCode, String targetCode) AuthorityFactoryAdapter.createFromCoordinateReferenceSystemCodes(String sourceCRS, String targetCRS) Creates an operation from coordinate reference system codes.BufferedAuthorityFactory.createFromCoordinateReferenceSystemCodes(String sourceCRS, String targetCRS) Returns an operation from coordinate reference system codes.CachedAuthorityDecorator.createFromCoordinateReferenceSystemCodes(String sourceCode, String targetCode) FallbackAuthorityFactory.createFromCoordinateReferenceSystemCodes(String sourceCRS, String targetCRS) Creates an operation from coordinate reference system codes.PropertyCoordinateOperationAuthorityFactory.createFromCoordinateReferenceSystemCodes(String sourceCRS, String targetCRS) Creates aCoordinateOperationfrom coordinate reference system codes.ThreadedAuthorityFactory.createFromCoordinateReferenceSystemCodes(String sourceCode, String targetCode) Returns an operation from coordinate reference system codes.TransformedAuthorityFactory.createFromCoordinateReferenceSystemCodes(String sourceCode, String targetCode) Creates an operation from coordinate reference system codes.ReferencingObjectFactory.createFromWKT(String wkt) Creates a coordinate reference system object from a string.ReferencingObjectFactory.createFromXML(String xml) Creates a coordinate reference system object from a XML string.AbstractAuthorityFactory.createGeocentricCRS(String code) Returns a geocentric coordinate reference system from a code.AbstractAuthorityMediator.createGeocentricCRS(String code) AbstractCachedAuthorityFactory.createGeocentricCRS(String code) AuthorityFactoryAdapter.createGeocentricCRS(String code) Returns a geocentric coordinate reference system from a code.BufferedAuthorityFactory.createGeocentricCRS(String code) Returns a geocentric coordinate reference system from a code.CachedAuthorityDecorator.createGeocentricCRS(String code) CachedCRSAuthorityDecorator.createGeocentricCRS(String code) FallbackAuthorityFactory.createGeocentricCRS(String code) Returns a geocentric coordinate reference system from a code.ReferencingObjectFactory.createGeocentricCRS(Map<String, ?> properties, GeodeticDatum datum, CartesianCS cs) Creates a geocentric coordinate reference system from a cartesian coordinate system.ReferencingObjectFactory.createGeocentricCRS(Map<String, ?> properties, GeodeticDatum datum, SphericalCS cs) Creates a geocentric coordinate reference system from a spherical coordinate system.ThreadedAuthorityFactory.createGeocentricCRS(String code) Returns a geocentric coordinate reference system from a code.AbstractAuthorityFactory.createGeodeticDatum(String code) Returns a geodetic datum from a code.AbstractAuthorityMediator.createGeodeticDatum(String code) AbstractCachedAuthorityFactory.createGeodeticDatum(String code) AuthorityFactoryAdapter.createGeodeticDatum(String code) Returns a geodetic datum from a code.BufferedAuthorityFactory.createGeodeticDatum(String code) Returns a geodetic datum from a code.CachedAuthorityDecorator.createGeodeticDatum(String code) DatumAliases.createGeodeticDatum(Map<String, ?> properties, Ellipsoid ellipsoid, PrimeMeridian primeMeridian) Creates geodetic datum from ellipsoid and (optionaly) Bursa-Wolf parameters.FallbackAuthorityFactory.createGeodeticDatum(String code) Returns a geodetic datum from a code.ReferencingObjectFactory.createGeodeticDatum(Map<String, ?> properties, Ellipsoid ellipsoid, PrimeMeridian primeMeridian) Creates geodetic datum from ellipsoid and (optionaly) Bursa-Wolf parameters.ThreadedAuthorityFactory.createGeodeticDatum(String code) Returns a geodetic datum from a code.AbstractAuthorityFactory.createGeographicCRS(String code) Returns a geographic coordinate reference system from a code.AbstractAuthorityMediator.createGeographicCRS(String code) AbstractCachedAuthorityFactory.createGeographicCRS(String code) AuthorityFactoryAdapter.createGeographicCRS(String code) Returns a geographic coordinate reference system from a code.BufferedAuthorityFactory.createGeographicCRS(String code) Returns a geographic coordinate reference system from a code.CachedAuthorityDecorator.createGeographicCRS(String code) CachedCRSAuthorityDecorator.createGeographicCRS(String code) FallbackAuthorityFactory.createGeographicCRS(String code) Returns a geographic coordinate reference system from a code.ReferencingObjectFactory.createGeographicCRS(Map<String, ?> properties, GeodeticDatum datum, EllipsoidalCS cs) Creates a geographic coordinate reference system.ThreadedAuthorityFactory.createGeographicCRS(String code) Returns a geographic coordinate reference system from a code.AbstractAuthorityFactory.createImageCRS(String code) Creates a image coordinate reference system from a code.AbstractAuthorityMediator.createImageCRS(String code) AbstractCachedAuthorityFactory.createImageCRS(String code) AuthorityFactoryAdapter.createImageCRS(String code) Creates a image coordinate reference system from a code.BufferedAuthorityFactory.createImageCRS(String code) Returns an image coordinate reference system from a code.CachedAuthorityDecorator.createImageCRS(String code) CachedCRSAuthorityDecorator.createImageCRS(String code) FallbackAuthorityFactory.createImageCRS(String code) Creates a image coordinate reference system from a code.ReferencingObjectFactory.createImageCRS(Map<String, ?> properties, ImageDatum datum, AffineCS cs) Creates an image coordinate reference system.ThreadedAuthorityFactory.createImageCRS(String code) Returns an image coordinate reference system from a code.AbstractAuthorityFactory.createImageDatum(String code) Creates a image datum from a code.AbstractAuthorityMediator.createImageDatum(String code) AbstractCachedAuthorityFactory.createImageDatum(String code) AuthorityFactoryAdapter.createImageDatum(String code) Creates a image datum from a code.BufferedAuthorityFactory.createImageDatum(String code) Returns an image datum from a code.CachedAuthorityDecorator.createImageDatum(String code) DatumAliases.createImageDatum(Map<String, ?> properties, PixelInCell pixelInCell) Creates an image datum.FallbackAuthorityFactory.createImageDatum(String code) Creates a image datum from a code.ReferencingObjectFactory.createImageDatum(Map<String, ?> properties, PixelInCell pixelInCell) Creates an image datum.ThreadedAuthorityFactory.createImageDatum(String code) Returns an image datum from a code.ReferencingObjectFactory.createLinearCS(Map<String, ?> properties, CoordinateSystemAxis axis) Creates a linear coordinate system.AbstractAuthorityFactory.createObject(String code) Returns an arbitrary object from a code.AbstractAuthorityMediator.createObject(String code) AbstractCachedAuthorityFactory.createObject(String code) AuthorityFactoryAdapter.createObject(String code) Returns an arbitrary object from a code.BufferedAuthorityFactory.createObject(String code) Returns an arbitrary object from a code.CachedAuthorityDecorator.createObject(String code) CachedCRSAuthorityDecorator.createObject(String code) FallbackAuthorityFactory.createObject(String code) Returns an arbitrary object from a code.protected IdentifiedObjectIdentifiedObjectSet.createObject(String code) Creates an object for the specified authority code.ManyAuthoritiesFactory.createObject(String code) Returns an arbitrary object from a code.PropertyAuthorityFactory.createObject(String code) Returns an arbitrary object from a code.ThreadedAuthorityFactory.createObject(String code) Returns an arbitrary object from a code.AbstractAuthorityFactory.createOperationMethod(String code) Creates an operation method from a code.AuthorityFactoryAdapter.createOperationMethod(String code) Creates an operation method from a code.BufferedAuthorityFactory.createOperationMethod(String code) Returns an operation method from a code.FallbackAuthorityFactory.createOperationMethod(String code) Creates an operation method from a code.ThreadedAuthorityFactory.createOperationMethod(String code) Returns an operation method from a code.AbstractAuthorityFactory.createParameterDescriptor(String code) Creates a parameter descriptor from a code.AuthorityFactoryAdapter.createParameterDescriptor(String code) Creates a parameter descriptor from a code.BufferedAuthorityFactory.createParameterDescriptor(String code) Returns a parameter descriptor from a code.FallbackAuthorityFactory.createParameterDescriptor(String code) Creates a parameter descriptor from a code.ThreadedAuthorityFactory.createParameterDescriptor(String code) Returns a parameter descriptor from a code.AbstractAuthorityFactory.createPolarCS(String code) Creates a polar coordinate system from a code.AbstractAuthorityMediator.createPolarCS(String code) AbstractCachedAuthorityFactory.createPolarCS(String code) AuthorityFactoryAdapter.createPolarCS(String code) Creates a polar coordinate system from a code.BufferedAuthorityFactory.createPolarCS(String code) Returns a polar coordinate system from a code.CachedAuthorityDecorator.createPolarCS(String code) FallbackAuthorityFactory.createPolarCS(String code) Creates a polar coordinate system from a code.ReferencingObjectFactory.createPolarCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1) Creates a polar coordinate system from the given pair of axis.ThreadedAuthorityFactory.createPolarCS(String code) Returns a polar coordinate system from a code.AbstractAuthorityFactory.createPrimeMeridian(String code) Returns a prime meridian from a code.AbstractAuthorityMediator.createPrimeMeridian(String code) AbstractCachedAuthorityFactory.createPrimeMeridian(String code) AuthorityFactoryAdapter.createPrimeMeridian(String code) Returns a prime meridian from a code.BufferedAuthorityFactory.createPrimeMeridian(String code) Returns a prime meridian from a code.CachedAuthorityDecorator.createPrimeMeridian(String code) DatumAliases.createPrimeMeridian(Map<String, ?> properties, double longitude, Unit<Angle> angularUnit) Creates a prime meridian, relative to Greenwich.FallbackAuthorityFactory.createPrimeMeridian(String code) Returns a prime meridian from a code.ReferencingObjectFactory.createPrimeMeridian(Map<String, ?> properties, double longitude, Unit<Angle> angularUnit) Creates a prime meridian, relative to Greenwich.ThreadedAuthorityFactory.createPrimeMeridian(String code) Returns a prime meridian from a code.AbstractAuthorityFactory.createProjectedCRS(String code) Returns a projected coordinate reference system from a code.AbstractAuthorityMediator.createProjectedCRS(String code) AbstractCachedAuthorityFactory.createProjectedCRS(String code) AuthorityFactoryAdapter.createProjectedCRS(String code) Returns a projected coordinate reference system from a code.BufferedAuthorityFactory.createProjectedCRS(String code) Returns a projected coordinate reference system from a code.CachedAuthorityDecorator.createProjectedCRS(String code) CachedCRSAuthorityDecorator.createProjectedCRS(String code) FallbackAuthorityFactory.createProjectedCRS(String code) Returns a projected coordinate reference system from a code.ReferencingObjectFactory.createProjectedCRS(Map<String, ?> properties, GeographicCRS baseCRS, Conversion conversionFromBase, CartesianCS derivedCS) Creates a projected coordinate reference system from a conversion.ReferencingObjectFactory.createProjectedCRS(Map<String, Object> properties, OperationMethod method, GeographicCRS base, MathTransform baseToDerived, CartesianCS derivedCS) Creates a projected coordinate reference system from a transform.ThreadedAuthorityFactory.createProjectedCRS(String code) Returns a projected coordinate reference system from a code.AbstractAuthorityFactory.createSphericalCS(String code) Creates a spherical coordinate system from a code.AbstractAuthorityMediator.createSphericalCS(String code) AbstractCachedAuthorityFactory.createSphericalCS(String code) AuthorityFactoryAdapter.createSphericalCS(String code) Creates a spherical coordinate system from a code.BufferedAuthorityFactory.createSphericalCS(String code) Returns a spherical coordinate system from a code.CachedAuthorityDecorator.createSphericalCS(String code) FallbackAuthorityFactory.createSphericalCS(String code) Creates a spherical coordinate system from a code.ReferencingObjectFactory.createSphericalCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2) Creates a spherical coordinate system from the given set of axis.ThreadedAuthorityFactory.createSphericalCS(String code) Returns a spherical coordinate system from a code.AbstractAuthorityFactory.createTemporalCRS(String code) Creates a temporal coordinate reference system from a code.AbstractAuthorityMediator.createTemporalCRS(String code) AbstractCachedAuthorityFactory.createTemporalCRS(String code) AuthorityFactoryAdapter.createTemporalCRS(String code) Creates a temporal coordinate reference system from a code.BufferedAuthorityFactory.createTemporalCRS(String code) Returns a temporal coordinate reference system from a code.CachedAuthorityDecorator.createTemporalCRS(String code) CachedCRSAuthorityDecorator.createTemporalCRS(String code) FallbackAuthorityFactory.createTemporalCRS(String code) Creates a temporal coordinate reference system from a code.ReferencingObjectFactory.createTemporalCRS(Map<String, ?> properties, TemporalDatum datum, TimeCS cs) Creates a temporal coordinate reference system.ThreadedAuthorityFactory.createTemporalCRS(String code) Returns a temporal coordinate reference system from a code.AbstractAuthorityFactory.createTemporalDatum(String code) Creates a temporal datum from a code.AbstractAuthorityMediator.createTemporalDatum(String code) AbstractCachedAuthorityFactory.createTemporalDatum(String code) AuthorityFactoryAdapter.createTemporalDatum(String code) Creates a temporal datum from a code.BufferedAuthorityFactory.createTemporalDatum(String code) Returns a temporal datum from a code.CachedAuthorityDecorator.createTemporalDatum(String code) DatumAliases.createTemporalDatum(Map<String, ?> properties, Date origin) Creates a temporal datum from an enumerated type value.FallbackAuthorityFactory.createTemporalDatum(String code) Creates a temporal datum from a code.ReferencingObjectFactory.createTemporalDatum(Map<String, ?> properties, Date origin) Creates a temporal datum from an enumerated type value.ThreadedAuthorityFactory.createTemporalDatum(String code) Returns a temporal datum from a code.AbstractAuthorityFactory.createTimeCS(String code) Creates a temporal coordinate system from a code.AbstractAuthorityMediator.createTimeCS(String code) AbstractCachedAuthorityFactory.createTimeCS(String code) AuthorityFactoryAdapter.createTimeCS(String code) Creates a temporal coordinate system from a code.BufferedAuthorityFactory.createTimeCS(String code) Returns a temporal coordinate system from a code.CachedAuthorityDecorator.createTimeCS(String code) FallbackAuthorityFactory.createTimeCS(String code) Creates a temporal coordinate system from a code.ReferencingObjectFactory.createTimeCS(Map<String, ?> properties, CoordinateSystemAxis axis) Creates a temporal coordinate system.ThreadedAuthorityFactory.createTimeCS(String code) Returns a temporal coordinate system from a code.Unit<?>AbstractAuthorityFactory.createUnit(String code) Returns an unit from a code.Unit<?>AbstractAuthorityMediator.createUnit(String code) Unit<?>AbstractCachedAuthorityFactory.createUnit(String code) Unit<?>AuthorityFactoryAdapter.createUnit(String code) Returns an unit from a code.Unit<?>BufferedAuthorityFactory.createUnit(String code) Returns an unit from a code.Unit<?>CachedAuthorityDecorator.createUnit(String code) Unit<?>FallbackAuthorityFactory.createUnit(String code) Returns an unit from a code.Unit<?>ThreadedAuthorityFactory.createUnit(String code) Returns an unit from a code.ReferencingObjectFactory.createUserDefinedCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1) Creates a two dimensional user defined coordinate system from the given pair of axis.ReferencingObjectFactory.createUserDefinedCS(Map<String, ?> properties, CoordinateSystemAxis axis0, CoordinateSystemAxis axis1, CoordinateSystemAxis axis2) Creates a three dimensional user defined coordinate system from the given set of axis.protected AuthorityFactoryAbstract_URI_AuthorityFactory.createVersionedFactory(Version version) Invoked when a factory is requested for a specific version.AbstractAuthorityFactory.createVerticalCRS(String code) Creates a vertical coordinate reference system from a code.AbstractAuthorityMediator.createVerticalCRS(String code) AbstractCachedAuthorityFactory.createVerticalCRS(String code) AuthorityFactoryAdapter.createVerticalCRS(String code) Creates a vertical coordinate reference system from a code.BufferedAuthorityFactory.createVerticalCRS(String code) Returns a vertical coordinate reference system from a code.CachedAuthorityDecorator.createVerticalCRS(String code) CachedCRSAuthorityDecorator.createVerticalCRS(String code) FallbackAuthorityFactory.createVerticalCRS(String code) Creates a vertical coordinate reference system from a code.ReferencingObjectFactory.createVerticalCRS(Map<String, ?> properties, VerticalDatum datum, VerticalCS cs) Creates a vertical coordinate reference system.ThreadedAuthorityFactory.createVerticalCRS(String code) Returns a vertical coordinate reference system from a code.AbstractAuthorityFactory.createVerticalCS(String code) Creates a vertical coordinate system from a code.AbstractAuthorityMediator.createVerticalCS(String code) AbstractCachedAuthorityFactory.createVerticalCS(String code) AuthorityFactoryAdapter.createVerticalCS(String code) Creates a vertical coordinate system from a code.BufferedAuthorityFactory.createVerticalCS(String code) Returns a vertical coordinate system from a code.CachedAuthorityDecorator.createVerticalCS(String code) FallbackAuthorityFactory.createVerticalCS(String code) Creates a vertical coordinate system from a code.ReferencingObjectFactory.createVerticalCS(Map<String, ?> properties, CoordinateSystemAxis axis) Creates a vertical coordinate system.ThreadedAuthorityFactory.createVerticalCS(String code) Returns a vertical coordinate system from a code.AbstractAuthorityFactory.createVerticalDatum(String code) Creates a vertical datum from a code.AbstractAuthorityMediator.createVerticalDatum(String code) AbstractCachedAuthorityFactory.createVerticalDatum(String code) AuthorityFactoryAdapter.createVerticalDatum(String code) Creates a vertical datum from a code.BufferedAuthorityFactory.createVerticalDatum(String code) Returns a vertical datum from a code.CachedAuthorityDecorator.createVerticalDatum(String code) DatumAliases.createVerticalDatum(Map<String, ?> properties, VerticalDatumType type) Creates a vertical datum from an enumerated type value.FallbackAuthorityFactory.createVerticalDatum(String code) Creates a vertical datum from a code.ReferencingObjectFactory.createVerticalDatum(Map<String, ?> properties, VerticalDatumType type) Creates a vertical datum from an enumerated type value.ThreadedAuthorityFactory.createVerticalDatum(String code) Returns a vertical datum from a code.protected <T> TAbstractAuthorityMediator.createWith(Object key, AbstractAuthorityMediator.WorkerSafeRunnable runner) This method is used to cut down the amount of try/catch/finally code needed when working with the cache and workers.protected IdentifiedObjectIdentifiedObjectFinder.deriveEquivalent(IdentifiedObject candidate, IdentifiedObject model) Returnscandidate, or an object derived fromcandidate, if it is equals ignoring metadata to the specified model.voidAbstractAuthorityFactory.dispose()Releases resources immediately instead of waiting for the garbage collector.voidAbstractAuthorityMediator.dispose()Clean up the object pool of workers (since we are shutting down).voidAbstractCachedAuthorityFactory.dispose()We will clear out our cache and factories referencevoidAbstractEpsgMediator.dispose()voidAuthorityFactoryAdapter.dispose()voidBufferedAuthorityFactory.dispose()Releases resources immediately instead of waiting for the garbage collector.voidCachedAuthorityDecorator.dispose()voidCachedCRSAuthorityDecorator.dispose()voidDeferredAuthorityFactory.dispose()Releases resources immediately instead of waiting for the garbage collector.voidThreadedAuthorityFactory.dispose()Releases resources immediately instead of waiting for the garbage collector.voidTransformedAuthorityFactory.dispose()Releases resources immediately instead of waiting for the garbage collector.IdentifiedObjectFinder.find(IdentifiedObject object) Lookups an object which is equals, ignoring metadata, to the specified object.IdentifiedObjectFinder.findIdentifier(IdentifiedObject object) Returns the identifier of the specified object, ornullif none.AbstractCachedAuthorityFactory.generateAuthorityCodes(Class type) protected abstract CoordinateOperationAbstractCachedAuthorityFactory.generateCoordinateOperation(String code) protected abstract CoordinateReferenceSystemAbstractCachedAuthorityFactory.generateCoordinateReferenceSystem(String code) protected abstract CoordinateSystemAbstractCachedAuthorityFactory.generateCoordinateSystem(String code) protected abstract CoordinateSystemAxisAbstractCachedAuthorityFactory.generateCoordinateSystemAxis(String code) protected abstract DatumAbstractCachedAuthorityFactory.generateDatum(String code) protected abstract EllipsoidAbstractCachedAuthorityFactory.generateEllipsoid(String code) protected abstract SetAbstractCachedAuthorityFactory.generateFromCoordinateReferenceSystemCodes(String sourceCode, String targetCode) protected abstract IdentifiedObjectAbstractCachedAuthorityFactory.generateObject(String code) protected abstract PrimeMeridianAbstractCachedAuthorityFactory.generatePrimeMeridian(String code) protected abstract Unit<?>AbstractCachedAuthorityFactory.generateUnit(String code) AbstractAuthorityMediator.getAuthorityCodes(Class type) AbstractCachedAuthorityFactory.getAuthorityCodes(Class type) AuthorityFactoryAdapter.getAuthorityCodes(Class<? extends IdentifiedObject> type) Returns the set of authority code for the specified type.BufferedAuthorityFactory.getAuthorityCodes(Class<? extends IdentifiedObject> type) Returns the set of authority codes of the given type.CachedAuthorityDecorator.getAuthorityCodes(Class<? extends IdentifiedObject> type) CachedCRSAuthorityDecorator.getAuthorityCodes(Class<? extends IdentifiedObject> type) FallbackAuthorityFactory.getAuthorityCodes(Class<? extends IdentifiedObject> type) Returns the set of authority codes for the specified type.ManyAuthoritiesFactory.getAuthorityCodes(Class<? extends IdentifiedObject> type) Returns the set of authority codes of the given type.PropertyAuthorityFactory.getAuthorityCodes(Class<? extends IdentifiedObject> type) Returns the set of authority codes of the given type.ThreadedAuthorityFactory.getAuthorityCodes(Class<? extends IdentifiedObject> type) Returns the set of authority codes of the given type.protected AuthorityFactoryAbstract_URI_AuthorityFactory.getAuthorityFactory(String code) Returns an object factory for the specified code.protected AuthorityFactoryAuthorityFactoryAdapter.getAuthorityFactory(String code) Returns a generic object factory to use for the specified code.protected final AbstractAuthorityFactoryDeferredAuthorityFactory.getBackingStore()Returns the backing store authority factory.AbstractAuthorityFactory.getBackingStoreDescription()Returns a description of the underlying backing store, ornullif unknown.AbstractAuthorityMediator.getBackingStoreDescription()AuthorityFactoryAdapter.getBackingStoreDescription()Returns a description of the underlying backing store, ornullif unknow.BufferedAuthorityFactory.getBackingStoreDescription()Returns a description of the underlying backing store, ornullif unknow.CachedAuthorityDecorator.getBackingStoreDescription()CachedCRSAuthorityDecorator.getBackingStoreDescription()ManyAuthoritiesFactory.getBackingStoreDescription()Returns a description of the underlying backing store, ornullif unknow.ThreadedAuthorityFactory.getBackingStoreDescription()Returns a description of the underlying backing store, ornullif unknow.IdentifiedObjectFinder.getCodeCandidates(IdentifiedObject object) Returns a set of authority codes that may identify the same object than the specified one.protected CoordinateOperationAuthorityFactoryAbstract_URI_AuthorityFactory.getCoordinateOperationAuthorityFactory(String code) Returns the coordinate operation factory to use for the specified URI.protected CoordinateOperationAuthorityFactoryAuthorityFactoryAdapter.getCoordinateOperationAuthorityFactory(String code) Returns the coordinate operation factory to use for the specified code.protected CRSAuthorityFactoryAbstract_URI_AuthorityFactory.getCRSAuthorityFactory(String code) Returns the coordinate reference system factory to use for the specified URI.protected CRSAuthorityFactoryAuthorityFactoryAdapter.getCRSAuthorityFactory(String code) Returns the coordinate reference system factory to use for the specified code.protected CSAuthorityFactoryAbstract_URI_AuthorityFactory.getCSAuthorityFactory(String code) Returns the coordinate system factory to use for the specified URI.protected CSAuthorityFactoryAuthorityFactoryAdapter.getCSAuthorityFactory(String code) Returns the coordinate system factory to use for the specified code.protected DatumAuthorityFactoryAbstract_URI_AuthorityFactory.getDatumAuthorityFactory(String code) Returns the datum factory to use for the specified URI.protected DatumAuthorityFactoryAuthorityFactoryAdapter.getDatumAuthorityFactory(String code) Returns the datum factory to use for the specified code.abstract InternationalStringAbstractAuthorityMediator.getDescriptionText(String code) abstract InternationalStringAbstractCachedAuthorityFactory.getDescriptionText(String code) AbstractEpsgMediator.getDescriptionText(String code) Gets a description of the object corresponding to a code.AuthorityFactoryAdapter.getDescriptionText(String code) Returns a description for the object identified by the specified code.BufferedAuthorityFactory.getDescriptionText(String code) Gets a description of the object corresponding to a code.CachedAuthorityDecorator.getDescriptionText(String code) CachedCRSAuthorityDecorator.getDescriptionText(String code) FallbackAuthorityFactory.getDescriptionText(String code) Returns a description for the object identified by the specified code.ManyAuthoritiesFactory.getDescriptionText(String code) Gets a description of the object corresponding to a code.PropertyAuthorityFactory.getDescriptionText(String code) Gets a description of the object corresponding to a code.PropertyCoordinateOperationAuthorityFactory.getDescriptionText(String code) Gets a description of the object corresponding to a code.ThreadedAuthorityFactory.getDescriptionText(String code) Gets a description of the object corresponding to a code.AbstractAuthorityFactory.getIdentifiedObjectFinder(Class<? extends IdentifiedObject> type) Returns a finder which can be used for looking up unidentified objects.AbstractAuthorityMediator.getIdentifiedObjectFinder(Class<? extends IdentifiedObject> type) Returns a finder which can be used for looking up unidentified objects.AbstractCachedAuthorityFactory.getIdentifiedObjectFinder(Class<? extends IdentifiedObject> type) Returns a finder which can be used for looking up unidentified objects.AllAuthoritiesFactory.getIdentifiedObjectFinder(Class<? extends IdentifiedObject> type) Returns a finder which can be used for looking up unidentified objects.AuthorityFactoryAdapter.getIdentifiedObjectFinder(Class<? extends IdentifiedObject> type) Returns a finder which can be used for looking up unidentified objects.BufferedAuthorityFactory.getIdentifiedObjectFinder(Class<? extends IdentifiedObject> type) Returns a finder which can be used for looking up unidentified objects.CachedAuthorityDecorator.getIdentifiedObjectFinder(Class<? extends IdentifiedObject> type) CachedCRSAuthorityDecorator.getIdentifiedObjectFinder(Class<? extends IdentifiedObject> type) Returns a finder which can be used for looking up unidentified objects.FallbackAuthorityFactory.getIdentifiedObjectFinder(Class<? extends IdentifiedObject> type) Returns a finder which can be used for looking up unidentified objects.ManyAuthoritiesFactory.getIdentifiedObjectFinder(Class<? extends IdentifiedObject> type) Returns a finder which can be used for looking up unidentified objects.ThreadedAuthorityFactory.getIdentifiedObjectFinder(Class<? extends IdentifiedObject> type) Returns a finder which can be used for looking up unidentified objects.protected SetIdentifiedObjectFinder.getSpecificCodeCandidates(IdentifiedObject object) protected Unit<?>TransformedAuthorityFactory.replace(Unit<?> units) Replaces the specified unit, if applicable.protected CoordinateReferenceSystemTransformedAuthorityFactory.replace(CoordinateReferenceSystem crs) Replaces (if needed) the specified coordinate reference system.protected AxisDirectionTransformedAuthorityFactory.replace(AxisDirection direction) Replaces the specified direction, if applicable.protected CoordinateSystemTransformedAuthorityFactory.replace(CoordinateSystem cs) Replaces (if needed) the specified coordinate system by a new one.protected CoordinateSystemAxisTransformedAuthorityFactory.replace(CoordinateSystemAxis axis) Replaces (if needed) the specified axis by a new one.protected DatumReplaces (if needed) the specified datum by a new one.protected CoordinateOperationTransformedAuthorityFactory.replace(CoordinateOperation operation) Replaces (if needed) the specified coordinate operation.voidIdentifiedObjectSet.resolve(int n) Ensures that the n first objects in this set are created.abstract ObjectAbstractAuthorityMediator.WorkerSafeRunnable.run(AbstractCachedAuthorityFactory worker) ReferencingFactoryContainer.separate(CoordinateReferenceSystem crs, int[] dimensions) Returns a new coordinate reference system with only the specified dimension.protected StringAbstract_URI_AuthorityFactory.toBackingFactoryCode(String code) Returns a simple authority code (like "EPSG:4236") that can be passed to the wrapped factories.protected StringAuthorityFactoryAdapter.toBackingFactoryCode(String code) Returns the code to be given to the wrapped factories.protected StringHTTP_AuthorityFactory.toBackingFactoryCode(String code) Removes the URL base ("http://www.opengis.net/gml/srs/") from the specified code before to pass it to the wrapped factories.ReferencingFactoryContainer.toGeodetic3D(CompoundCRS crs) Converts a 2D + 1D compound CRS into a 3D CRS, if possible.Constructors in org.geotools.referencing.factory that throw FactoryException -
Uses of FactoryException in org.geotools.referencing.factory.epsg
Methods in org.geotools.referencing.factory.epsg that throw FactoryExceptionModifier and TypeMethodDescriptionvoidAbstractEpsgFactory.connect()Connect to the database in anticipation of of use.protected AbstractAuthorityFactoryCoordinateOperationFactoryUsingWKT.createBackingStore()Creates the backing store authority factory.protected AbstractAuthorityFactoryFactoryUsingWKT.createBackingStore()Creates the backing store authority factory.protected AbstractAuthorityFactoryLongitudeFirstEpsgDecorator.createBackingStore()Returns the factory instance (usuallyThreadedEpsgFactory) to be used as the backing store.protected AbstractAuthorityFactoryLongitudeFirstFactory.createBackingStore()Returns the factory instance (usuallyThreadedEpsgFactory) to be used as the backing store.protected AbstractAuthorityFactoryThreadedEpsgFactory.createBackingStore()Creates the backing store authority factory.CoordinateOperationFactoryUsingWKT.createCoordinateOperation(String code) Creates an operation from a single operation code.DirectEpsgFactory.createCoordinateOperation(String code) Returns a coordinate operation from a code.CartesianAuthorityFactory.createCoordinateReferenceSystem(String code) Creates a coordinate reference system from the specified code.DirectEpsgFactory.createCoordinateReferenceSystem(String code) Returns a coordinate reference system from a code.DirectEpsgFactory.createCoordinateSystem(String code) Returns a coordinate system from a code.DirectEpsgFactory.createCoordinateSystemAxis(String code) Returns a coordinate system axis from a code.DirectEpsgFactory.createDatum(String code) Returns a datum from a code.DirectEpsgFactory.createEllipsoid(String code) Returns an ellipsoid from a code.CartesianAuthorityFactory.createEngineeringCRS(String code) DirectEpsgFactory.createExtent(String code) Returns an area of use.CoordinateOperationFactoryUsingWKT.createFromCoordinateReferenceSystemCodes(String sourceCRS, String targetCRS) Creates operations from coordinate reference system codes.DirectEpsgFactory.createFromCoordinateReferenceSystemCodes(String sourceCode, String targetCode) Creates operations from coordinate reference system codes.CartesianAuthorityFactory.createObject(String code) Creates an object from the specified code.DirectEpsgFactory.createObject(String code) Returns an arbitrary object from a code.DirectEpsgFactory.createOperationMethod(String code) Returns an operation method from a code.DirectEpsgFactory.createParameterDescriptor(String code) Returns a parameter descriptor from a code.DirectEpsgFactory.createPrimeMeridian(String code) Returns a prime meridian, relative to Greenwich.Unit<?>DirectEpsgFactory.createUnit(String code) Returns an unit from a code.voidAbstractEpsgFactory.disconnect()Disconnect from the database, and remain idle.voidAbstractEpsgFactory.dispose()Disposes any resources hold by this object.voidDirectEpsgFactory.dispose()Disposes any resources hold by this object.voidThreadedEpsgFactory.dispose()AbstractEpsgFactory.generateAuthorityCodes(Class type) Returns the set of authority codes of the given type.AbstractEpsgFactory.generateCoordinateOperation(String code) Returns a coordinate operation from a code.AbstractEpsgFactory.generateCoordinateReferenceSystem(String code) Returns a coordinate reference system from a code.AbstractEpsgFactory.generateCoordinateSystem(String code) Returns a coordinate system from a code.AbstractEpsgFactory.generateCoordinateSystemAxis(String code) Returns a coordinate system axis from a code.AbstractEpsgFactory.generateDatum(String code) Returns a datum from a code.AbstractEpsgFactory.generateEllipsoid(String code) Returns an ellipsoid from a code.AbstractEpsgFactory.generateExtent(String code) Returns an area of use.AbstractEpsgFactory.generateFromCoordinateReferenceSystemCodes(String sourceCode, String targetCode) Creates operations from coordinate reference system codes.AbstractEpsgFactory.generateObject(String code) Returns an arbitrary object from a code.AbstractEpsgFactory.generateOperationMethod(String code) Returns an operation method from a code.AbstractEpsgFactory.generateParameterDescriptor(String code) Returns a parameter descriptor from a code.AbstractEpsgFactory.generatePrimeMeridian(String code) Returns a prime meridian, relative to Greenwich.Unit<?>AbstractEpsgFactory.generateUnit(String code) Returns an unit from a code.CartesianAuthorityFactory.getAuthorityCodes(Class<? extends IdentifiedObject> type) DirectEpsgFactory.getAuthorityCodes(Class<? extends IdentifiedObject> type) Returns the set of authority codes of the given type.AbstractEpsgFactory.getBackingStoreDescription()Returns a description of the database engine.DirectEpsgFactory.getBackingStoreDescription()Returns a description of the database engine.AbstractEpsgFactory.getDescriptionText(String code) Gets a description of the object corresponding to a code.CartesianAuthorityFactory.getDescriptionText(String code) DirectEpsgFactory.getDescriptionText(String code) Gets a description of the object corresponding to a code.protected CoordinateOperationAuthorityFactoryCoordinateOperationFactoryUsingWKT.getFallbackAuthorityFactory()Gets the next availableCoordinateOperationAuthorityFactoryin the priority list.DirectEpsgFactory.getIdentifiedObjectFinder(Class<? extends IdentifiedObject> type) Returns a finder which can be used for looking up unidentified objects.protected booleanAbstractEpsgFactory.isPrimaryKey(String code) Returnstrueif the specified code may be a primary key in some table.protected booleanDirectEpsgFactory.isPrimaryKey(String code) Returnstrueif the specified code may be a primary key in some table.static voidPrints a list of codes that duplicate the ones provided in theThreadedEpsgFactory.protected static voidFactoryUsingWKT.main(String[] args, Class<? extends FactoryUsingWKT> type) Implementation of theFactoryUsingWKT.main(java.lang.String...)method, shared by subclasses.FactoryUsingWKT.reportDuplicatedCodes(PrintWriter out) Prints a list of codes that duplicate the ones provided byThreadedEpsgFactory.FactoryUsingWKT.reportInstantiationFailures(PrintWriter out) Prints a list of CRS that can't be instantiated.Constructors in org.geotools.referencing.factory.epsg that throw FactoryExceptionModifierConstructorDescriptionAbstractEpsgFactory(Hints userHints) AnsiDialectEpsgFactory(Hints userHints) Constructs an authority factory, the hints should describe the data source it use. -
Uses of FactoryException in org.geotools.referencing.factory.epsg.hsql
Methods in org.geotools.referencing.factory.epsg.hsql that throw FactoryExceptionModifier and TypeMethodDescriptionstatic DataSourceHsqlEpsgDatabase.createDataSource(Hints hints) Constructors in org.geotools.referencing.factory.epsg.hsql that throw FactoryExceptionModifierConstructorDescriptionCreates a new instance of this factory.HsqlDialectEpsgMediator(Hints hints) Creates a new instance of this data source using the specified hints. -
Uses of FactoryException in org.geotools.referencing.factory.gridshift
Methods in org.geotools.referencing.factory.gridshift that throw FactoryExceptionModifier and TypeMethodDescriptionGridShiftFileNTv2GridShiftFactory.createNTv2Grid(URL gridLocation) Creates a NTv2 Grid.NADCONGridShiftFactory.loadGridShift(URL latGridURL, URL longGridURL) -
Uses of FactoryException in org.geotools.referencing.factory.wms
Methods in org.geotools.referencing.factory.wms that throw FactoryExceptionModifier and TypeMethodDescriptionAutoCRSFactory.createCoordinateReferenceSystem(String code) Creates a coordinate reference system from the specified code.WebCRSFactory.createCoordinateReferenceSystem(String code) Creates a coordinate reference system from the specified code.AutoCRSFactory.createObject(String code) Creates an object from the specified code.WebCRSFactory.createObject(String code) Creates an object from the specified code.AutoCRSFactory.createProjectedCRS(String code) Creates a projected coordinate reference system from the specified code.AutoCRSFactory.getAuthorityCodes(Class<? extends IdentifiedObject> type) Provides a complete set of the known codes provided by this authority.WebCRSFactory.getAuthorityCodes(Class<? extends IdentifiedObject> type) Provides a complete set of the known codes provided by this authority.AutoCRSFactory.getDescriptionText(String code) Returns the CRS name for the given code.WebCRSFactory.getDescriptionText(String code) Returns the CRS name for the given code. -
Uses of FactoryException in org.geotools.referencing.iau
Methods in org.geotools.referencing.iau that throw FactoryExceptionModifier and TypeMethodDescriptionprotected AbstractAuthorityFactoryIAULongitudeFirstFactory.createBackingStore()Returns the factory instance (usuallyThreadedEpsgFactory) to be used as the backing store. -
Uses of FactoryException in org.geotools.referencing.operation
Methods in org.geotools.referencing.operation that throw FactoryExceptionModifier and TypeMethodDescriptionprotected Set<CoordinateOperation>AbstractCoordinateOperationFactory.concatenate(Set<CoordinateOperation> candidatesStep1, Set<CoordinateOperation> candidatesStep2) Concatenate two operation steps.protected Set<CoordinateOperation>AbstractCoordinateOperationFactory.concatenate(Set<CoordinateOperation> candidatesStep1, Set<CoordinateOperation> candidatesStep2, Set<CoordinateOperation> candidatesStep3) Concatenate two sets of operation steps.protected CoordinateOperationAbstractCoordinateOperationFactory.concatenate(CoordinateOperation step1, CoordinateOperation step2) Concatenate two operation steps.protected CoordinateOperationAbstractCoordinateOperationFactory.concatenate(CoordinateOperation step1, CoordinateOperation step2, CoordinateOperation step3) Concatenate three transformation steps.DefaultMathTransformFactory.createAffineTransform(Matrix matrix) Creates an affine transform from a matrix.DefaultMathTransformFactory.createBaseToDerived(CoordinateReferenceSystem baseCRS, ParameterValueGroup parameters, CoordinateSystem derivedCS) Creates a parameterized transform from a base CRS to a derived CS.DefaultMathTransformFactory.createBaseToDerived(CoordinateReferenceSystem baseCRS, MathTransform projection, CoordinateSystem derivedCS) Creates a transform from a base CRS to a derived CS.AbstractCoordinateOperationFactory.createConcatenatedOperation(Map<String, ?> properties, CoordinateOperation... operations) Creates a concatenated operation from a sequence of operations.DefaultMathTransformFactory.createConcatenatedTransform(MathTransform transform1, MathTransform transform2) Creates a transform by concatenating two existing transforms.AbstractCoordinateOperationFactory.createDefiningConversion(Map<String, ?> properties, OperationMethod method, ParameterValueGroup parameters) Constructs a defining conversion from a set of properties.protected CoordinateOperationAbstractCoordinateOperationFactory.createFromAffineTransform(ReferenceIdentifier name, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, Matrix matrix) Creates a coordinate operation from a matrix, which usually describes an affine tranform.protected CoordinateOperationAbstractCoordinateOperationFactory.createFromMathTransform(Map<String, ?> properties, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform, OperationMethod method, Class<? extends CoordinateOperation> type) Creates a coordinate operation from a math transform.protected CoordinateOperationAbstractCoordinateOperationFactory.createFromMathTransform(ReferenceIdentifier name, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform) Creates a coordinate operation from a math transform.protected CoordinateOperationAbstractCoordinateOperationFactory.createFromParameters(ReferenceIdentifier name, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, ParameterValueGroup parameters) Creates a coordinate operation from a set of parameters.DefaultMathTransformFactory.createFromWKT(String text) Creates a math transform object from a Well Known Text (WKT).DefaultMathTransformFactory.createFromXML(String xml) Creates a math transform object from a XML string.protected abstract MathTransformMathTransformProvider.createMathTransform(ParameterValueGroup values) Creates a math transform from the specified group of parameter values.BufferedCoordinateOperationFactory.createOperation(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS) Returns an operation for conversion or transformation between two coordinate reference systems.BufferedCoordinateOperationFactory.createOperation(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, OperationMethod method) Returns an operation for conversion or transformation between two coordinate reference systems using the specified method.DefaultCoordinateOperationFactory.createOperation(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS) Returns an operation for conversion or transformation between two coordinate reference systems.DefaultCoordinateOperationFactory.createOperation(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, OperationMethod method) Returns an operation using a particular method for conversion or transformation between two coordinate reference systems.protected CoordinateOperationDefaultCoordinateOperationFactory.createOperationStep(CompoundCRS sourceCRS, CompoundCRS targetCRS) Creates an operation between two compound coordinate reference systems.protected CoordinateOperationDefaultCoordinateOperationFactory.createOperationStep(CompoundCRS sourceCRS, SingleCRS targetCRS) Creates an operation from a compound to a single coordinate reference systems.protected CoordinateOperationDefaultCoordinateOperationFactory.createOperationStep(GeocentricCRS sourceCRS, GeocentricCRS targetCRS) Creates an operation between two geocentric coordinate reference systems.protected CoordinateOperationDefaultCoordinateOperationFactory.createOperationStep(GeocentricCRS sourceCRS, GeographicCRS targetCRS) Creates an operation from a geocentric to a geographic coordinate reference systems.protected CoordinateOperationDefaultCoordinateOperationFactory.createOperationStep(GeographicCRS sourceCRS, GeocentricCRS targetCRS) Creates an operation from a geographic to a geocentric coordinate reference systems.protected CoordinateOperationDefaultCoordinateOperationFactory.createOperationStep(GeographicCRS sourceCRS, GeographicCRS targetCRS) Creates an operation between two geographic coordinate reference systems.protected CoordinateOperationDefaultCoordinateOperationFactory.createOperationStep(GeographicCRS sourceCRS, ProjectedCRS targetCRS) Creates an operation from a geographic to a projected coordinate reference system.protected CoordinateOperationDefaultCoordinateOperationFactory.createOperationStep(GeographicCRS sourceCRS, VerticalCRS targetCRS) Creates an operation between a geographic and a vertical coordinate reference systems.protected CoordinateOperationDefaultCoordinateOperationFactory.createOperationStep(ProjectedCRS sourceCRS, GeographicCRS targetCRS) Creates an operation from a projected to a geographic coordinate reference system.protected CoordinateOperationDefaultCoordinateOperationFactory.createOperationStep(ProjectedCRS sourceCRS, ProjectedCRS targetCRS) Creates an operation between two projected coordinate reference systems.protected CoordinateOperationDefaultCoordinateOperationFactory.createOperationStep(SingleCRS sourceCRS, CompoundCRS targetCRS) Creates an operation from a single to a compound coordinate reference system.protected CoordinateOperationDefaultCoordinateOperationFactory.createOperationStep(TemporalCRS sourceCRS, TemporalCRS targetCRS) Creates an operation between two temporal coordinate reference systems.protected CoordinateOperationDefaultCoordinateOperationFactory.createOperationStep(VerticalCRS sourceCRS, VerticalCRS targetCRS) Creates an operation between two vertical coordinate reference systems.DefaultMathTransformFactory.createParameterizedTransform(ParameterValueGroup parameters) Creates a transform from a group of parameters.DefaultMathTransformFactory.createPassThroughTransform(int firstAffectedOrdinate, MathTransform subTransform, int numTrailingOrdinates) Creates a transform which passes through a subset of ordinates to another transform.BufferedCoordinateOperationFactory.findOperations(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS) Returns all available operations for conversion or transformation between two coordinate reference systems.DefaultCoordinateOperationFactory.findOperations(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS) Returns all the available operations for conversion or transformation between two coordinate reference systems.protected Set<CoordinateOperation>DefaultCoordinateOperationFactory.findOperations(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, int limit) Returns all the available operations for conversion or transformation between two coordinate reference systems.protected Set<CoordinateOperation>DefaultCoordinateOperationFactory.findOperationSteps(CompoundCRS sourceCRS, CompoundCRS targetCRS, int limit) Returns all available operations between two compound coordinate reference systems.protected Set<CoordinateOperation>DefaultCoordinateOperationFactory.findOperationSteps(CompoundCRS sourceCRS, SingleCRS targetCRS, int limit) Returns all available operations from a compound to a single coordinate reference system.protected Set<CoordinateOperation>DefaultCoordinateOperationFactory.findOperationSteps(GeographicCRS sourceCRS, ProjectedCRS targetCRS, int limit) Returns all available operations from a geographic to a projected coordinate reference system.protected Set<CoordinateOperation>DefaultCoordinateOperationFactory.findOperationSteps(ProjectedCRS sourceCRS, GeographicCRS targetCRS, int limit) Returns all available operations from a projected to a geographic coordinate reference system.protected Set<CoordinateOperation>DefaultCoordinateOperationFactory.findOperationSteps(ProjectedCRS sourceCRS, ProjectedCRS targetCRS, int limit) Returns all available operations between two projected coordinate reference systems.protected Set<CoordinateOperation>DefaultCoordinateOperationFactory.findOperationSteps(SingleCRS sourceCRS, CompoundCRS targetCRS, int limit) Returns all available operations from a single to a compound coordinate reference system.protected CoordinateOperationAbstractCoordinateOperationFactory.inverse(CoordinateOperation operation) Returns the inverse of the specified operation.protected CoordinateOperationAuthorityBackedFactory.tryWellKnownPivots(GeographicCRS sourceCRS, GeographicCRS targetCRS) protected CoordinateOperationDefaultCoordinateOperationFactory.tryWellKnownPivots(GeographicCRS sourceCRS, GeographicCRS targetCRS) Allows subclasses to test for well known pivots that might provide better accuracy, before using a Molodenski.Constructors in org.geotools.referencing.operation with parameters of type FactoryExceptionModifierConstructorDescriptionTransformPathNotFoundException(String message, FactoryException cause) Constructs an exception with the specified detail message and cause.Constructs an exception with the specified detail message.Constructors in org.geotools.referencing.operation that throw FactoryExceptionModifierConstructorDescriptionDefaultConcatenatedOperation(Map<String, ?> properties, CoordinateOperation[] operations, MathTransformFactory factory) Constructs a concatenated operation from a set of properties and a math transform factory. -
Uses of FactoryException in org.geotools.referencing.operation.builder
Subclasses of FactoryException in org.geotools.referencing.operation.builderModifier and TypeClassDescriptionclassThrown when a required operation can't be performed because some information is missing or isn't set up properly.Methods in org.geotools.referencing.operation.builder that throw FactoryExceptionModifier and TypeMethodDescriptionprotected MathTransformAdvancedAffineBuilder.computeMathTransform()protected MathTransformBursaWolfTransformBuilder.computeMathTransform()Returns MathtTransform setup as BursaWolf transformation.protected abstract MathTransformMathTransformBuilder.computeMathTransform()Calculates the math transform immediately.protected MathTransformRubberSheetBuilder.computeMathTransform()Returns MathTransform transformation setup as RubberSheet.MathTransformBuilder.getErrorStatistics()Returns statistics about the errors.final MathTransformMathTransformBuilder.getMathTransform()Returns the calculated math transform.protected GeneralMatrixAdvancedAffineBuilder.getProjectiveMatrix()Calculates coefficients of Projective transformation matrix from geometric parameters.MathTransformBuilder.getSourceCRS()Returns the coordinate reference system for thesource points.MathTransformBuilder.getTargetCRS()Returns the coordinate reference system for thetarget points.MathTransformBuilder.getTransformation()Returns the coordinate operation wrapping the calculated math transform.Constructors in org.geotools.referencing.operation.builder that throw FactoryExceptionModifierConstructorDescriptionAdvancedAffineBuilder(List<MappedPosition> vectors) Constructs builder from set of GCPsAdvancedAffineBuilder(List<MappedPosition> vectors, AffineTransform2D affineTrans) Constructs affine transform from GCPs and approximate values for calculation. -
Uses of FactoryException in org.geotools.referencing.operation.projection
Methods in org.geotools.referencing.operation.projection that throw FactoryExceptionModifier and TypeMethodDescriptionstatic BoundsGeostationarySatellite.circumscribeFullDisk(CoordinateReferenceSystem geosCRS) Circumscribed rectangle (smallest) for full disk earth imageprotected MathTransformAzimuthalEquidistant.Provider.createMathTransform(ParameterValueGroup parameters) Create an Azimuthal Equidistant projection.protected MathTransformCylindricalEqualArea.BehrmannProvider.createMathTransform(ParameterValueGroup parameters) protected MathTransformCylindricalEqualArea.LambertCylindricalEqualAreaProvider.createMathTransform(ParameterValueGroup parameters) protected MathTransformCylindricalEqualArea.Provider.createMathTransform(ParameterValueGroup parameters) protected MathTransformEqualArea.Provider.createMathTransform(ParameterValueGroup parameters) Creates a transform from the specified group of parameter values.protected MathTransformEquidistantConic.Provider.createMathTransform(ParameterValueGroup parameters) Creates a transform from the specified group of parameter values.protected MathTransformEquidistantCylindrical.Provider.createMathTransform(ParameterValueGroup parameters) Creates a transform from the specified group of parameter values.protected MathTransformEquidistantCylindrical.SphericalProvider.createMathTransform(ParameterValueGroup parameters) Creates a transform from the specified group of parameter values.protected MathTransformGeneralOblique.Provider.createMathTransform(ParameterValueGroup parameters) Creates a transform from the specified group of parameter values.protected MathTransformMeteosatSG.Provider.createMathTransform(ParameterValueGroup parameters) Creates a transform from the specified group of parameter values.protected MathTransformOrthographic.Provider.createMathTransform(ParameterValueGroup parameters) Creates a transform from the specified group of parameter values.protected MathTransformPlateCarree.Provider.createMathTransform(ParameterValueGroup parameters) Creates a transform from the specified group of parameter values.protected MathTransformRotatedPole.Provider.createMathTransform(ParameterValueGroup parameters) Creates a transform from the specified group of parameter values.static BoundsGeostationarySatellite.inscribeFullDiskEstimate(CoordinateReferenceSystem geosCRS) Inscribed rectangle for for full disk earth image (not largest inscribing rectangle but close, hence "Estimate") -
Uses of FactoryException in org.geotools.referencing.operation.transform
Methods in org.geotools.referencing.operation.transform that throw FactoryExceptionModifier and TypeMethodDescriptionprotected MathTransformEarthGravitationalModel.Provider.createMathTransform(ParameterValueGroup values) Creates a math transform from the specified group of parameter values.protected MathTransformNADCONTransform.Provider.createMathTransform(ParameterValueGroup values) Creates a math transform from the specified group of parameter values.protected MathTransformNTv2Transform.Provider.createMathTransform(ParameterValueGroup values) Creates a math transform from the specified group of parameter values.protected URLNADCONTransform.locateGrid(URI uri) DimensionFilter.separate(MathTransform transform) Separates the specified math transform.Constructors in org.geotools.referencing.operation.transform that throw FactoryExceptionModifierConstructorDescriptionNADCONTransform(URI latGridName, URI longGridName) Constructs aNADCONTransformfrom the specified grid shift files. -
Uses of FactoryException in org.geotools.referencing.wkt
Methods in org.geotools.referencing.wkt that throw FactoryExceptionModifier and TypeMethodDescriptionAbstractConsole.parseObject(String text, Class type) Parses the specified text.Preprocessor.parseObject(String text, Class<?> type) Parses the specified text and ensure that the resulting object is of the specified type. -
Uses of FactoryException in org.geotools.renderer.crs
Methods in org.geotools.renderer.crs that throw FactoryExceptionModifier and TypeMethodDescriptionAzimulthalEquidistantProjectionHandlerFactory.getHandler(ReferencedEnvelope renderingEnvelope, CoordinateReferenceSystem sourceCRS, boolean wrap, int wrapLimit) ConicHandlerFactory.getHandler(ReferencedEnvelope renderingEnvelope, CoordinateReferenceSystem sourceCrs, boolean wrap, int maxWraps) GeographicHandlerFactory.getHandler(ReferencedEnvelope renderingEnvelope, CoordinateReferenceSystem sourceCrs, boolean wrap, int maxWraps) GeosProjectionHandlerFactory.getHandler(ReferencedEnvelope renderingEnvelope, CoordinateReferenceSystem sourceCRS, boolean wrap, int wrapLimit) HomolosineHandlerFactory.getHandler(ReferencedEnvelope renderingEnvelope, CoordinateReferenceSystem sourceCrs, boolean wrap, int maxWraps) LambertAzimuthalEqualAreaHandlerFactory.getHandler(ReferencedEnvelope renderingEnvelope, CoordinateReferenceSystem sourceCrs, boolean wrap, int maxWraps) MercatorHandlerFactory.getHandler(ReferencedEnvelope renderingEnvelope, CoordinateReferenceSystem sourceCrs, boolean wrap, int maxWraps) OrthographicProjectionHandlerFactory.getHandler(ReferencedEnvelope renderingEnvelope, CoordinateReferenceSystem sourceCRS, boolean wrap, int wrapLimit) PlateCarreeHandlerFactory.getHandler(ReferencedEnvelope renderingEnvelope, CoordinateReferenceSystem sourceCrs, boolean wrap, int maxWraps) PolarStereographicHandlerFactory.getHandler(ReferencedEnvelope renderingEnvelope, CoordinateReferenceSystem sourceCrs, boolean wrap, int maxWraps) ProjectionHandlerFactory.getHandler(ReferencedEnvelope renderingEnvelope, CoordinateReferenceSystem sourceCRS, boolean wrap, int wrapLimit) Returns an handler capable of dealing with the specified envelope, or null if this factory cannot create onestatic ProjectionHandlerProjectionHandlerFinder.getHandler(ReferencedEnvelope renderingArea, CoordinateReferenceSystem sourceCrs, boolean wrap) Returns a projection handler for the specified rendering area, or null if not foundstatic ProjectionHandlerProjectionHandlerFinder.getHandler(ReferencedEnvelope renderingArea, CoordinateReferenceSystem sourceCrs, boolean wrap, Map<String, Object> projectionParameters) Returns a projection handler for the specified rendering area, or null if not foundTransverseMercatorHandlerFactory.getHandler(ReferencedEnvelope renderingEnvelope, CoordinateReferenceSystem sourceCrs, boolean wrap, int maxWraps) WorldVanDerGrintenIHandlerFactory.getHandler(ReferencedEnvelope renderingEnvelope, CoordinateReferenceSystem sourceCrs, boolean wrap, int maxWraps) ProjectionHandler.getProjectedEnvelope(ReferencedEnvelope envelope, CoordinateReferenceSystem targetCRS) Reprojects the given envelope to the target CRS, taking into account the ProjectionHandler constraints (valid area bounds, etc.).ProjectionHandler.getQueryEnvelopes()Returns a set of envelopes that will be used to query the data given the specified rendering envelope and the current query envelopeProjectionHandler.getRenderingTransform(MathTransform mt) Can modify/wrap the transform to handle specific projection issuesprotected List<ReferencedEnvelope>ProjectionHandler.getSourceEnvelopes(ReferencedEnvelope renderingEnvelope) ProjectionHandler.preProcess(Geometry geometry) Pre processes the geometry, e.g. cuts it, splits it, etc. in its native srs.WrappingProjectionHandler.preProcess(Geometry geometry) protected voidProjectionHandler.reprojectEnvelopes(CoordinateReferenceSystem queryCRS, List<ReferencedEnvelope> envelopes) protected ReferencedEnvelopeProjectionHandler.transformEnvelope(ReferencedEnvelope envelope, CoordinateReferenceSystem targetCRS) Constructors in org.geotools.renderer.crs that throw FactoryExceptionModifierConstructorDescriptionProjectionHandler(CoordinateReferenceSystem sourceCRS, Envelope validAreaBounds, ReferencedEnvelope renderingEnvelope) Initializes a projection handlerProjectionHandler(CoordinateReferenceSystem sourceCRS, Geometry validArea, ReferencedEnvelope renderingEnvelope) Initializes a projection handlerProjectionHandler(CoordinateReferenceSystem sourceCRS, Geometry validArea, ReferencedEnvelope renderingEnvelope, boolean keepGeometry) Initializes a projection handlerWrappingProjectionHandler(ReferencedEnvelope renderingEnvelope, ReferencedEnvelope validArea, CoordinateReferenceSystem sourceCrs, double centralMeridian, int maxWraps) Provides the strategy with the area we want to render and its CRS (the SPI lookup will do this step) -
Uses of FactoryException in org.geotools.renderer.lite
Methods in org.geotools.renderer.lite that throw FactoryExceptionModifier and TypeMethodDescriptionRenderingTransformationHelper.applyRenderingTransformation(Expression transformation, FeatureSource featureSource, Query layerQuery, Query renderingQuery, GridGeometry2D gridGeometry, CoordinateReferenceSystem sourceCrs, RenderingHints hints) static doubleRendererUtilities.calculateScale(ReferencedEnvelope envelope, int imageWidth, int imageHeight, double DPI) Find the scale denominator of the map.static doubleRendererUtilities.calculateScale(ReferencedEnvelope envelope, int imageWidth, int imageHeight, Map<?, ?> hints) First searches the hints for the scale denominator hint otherwise callsRendererUtilities.calculateScale(org.geotools.util.SoftValueHashMap.Reference, int, int, double).protected ReferencedEnvelopeStreamingRenderer.transformEnvelope(ReferencedEnvelope envelope, CoordinateReferenceSystem crs) -
Uses of FactoryException in org.geotools.renderer.lite.gridcoverage2d
Methods in org.geotools.renderer.lite.gridcoverage2d that throw FactoryExceptionModifier and TypeMethodDescriptionstatic List<GridCoverage2D>GridCoverageRendererUtilities.displace(List<GridCoverage2D> coverages, ProjectionHandler handler, GeneralBounds destinationEnvelope, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, GridCoverageFactory gridCoverageFactory) Displaces a list of coverages, using a ProjectionHandler to eventually split into proper envelopes.GridCoverageReaderHelper.readCoverages(GeneralParameterValue[] readParams, ProjectionHandler handler) Reads the data taking into account advanced projection handling in order to deal with date line crossing, poles and other projection trouble areas.GridCoverageReaderHelper.readCoverages(GeneralParameterValue[] readParams, ProjectionHandler handler, GridCoverageFactory gridCoverageFactory) Reads the data taking into account advanced projection handling in order to deal with date line crossing, poles and other projection trouble areas.GridCoverageRenderer.renderImage(GridCoverage2D gridCoverage, RasterSymbolizer symbolizer, Interpolation interpolation, Color background, int tileSizeX, int tileSizeY) Turns the coverage into a rendered image applying the necessary transformations and the symbolizerGridCoverageRenderer.renderImage(GridCoverage2DReader reader, GeneralParameterValue[] readParams, RasterSymbolizer symbolizer, Interpolation interpolation, Color background, int tileSizeX, int tileSizeY) static List<GridCoverage2D>GridCoverageRendererUtilities.reproject(List<GridCoverage2D> coverages, CoordinateReferenceSystem destinationCRS, Interpolation interpolation, GeneralBounds destinationEnvelope, double[] bkgValues, GridCoverageFactory gridCoverageFactory, Hints hints) Reproject the specified list of coveragesstatic GridCoverage2DGridCoverageRendererUtilities.reproject(GridCoverage2D coverage, CoordinateReferenceSystem destinationCRS, Interpolation interpolation, GeneralBounds destinationEnvelope, double[] bkgValues, GridCoverageFactory gridCoverageFactory, Hints hints) Reproject a coverage to the specified destination, eventually adding a ROI if missingConstructors in org.geotools.renderer.lite.gridcoverage2d that throw FactoryExceptionModifierConstructorDescriptionGridCoverageReaderHelper(GridCoverage2DReader reader, Rectangle mapRasterArea, ReferencedEnvelope mapExtent, Interpolation interpolation) GridCoverageReaderHelper(GridCoverage2DReader reader, Rectangle mapRasterArea, ReferencedEnvelope mapExtent, Interpolation interpolation, Hints hints) -
Uses of FactoryException in org.geotools.tile.impl
Methods in org.geotools.tile.impl that throw FactoryExceptionModifier and TypeMethodDescriptionstatic ScaleZoomLevelMatcherScaleZoomLevelMatcher.createMatcher(ReferencedEnvelope requestExtent, CoordinateReferenceSystem crsTiles, double scale) static ReferencedEnvelopeScaleZoomLevelMatcher.getProjectedEnvelope(ReferencedEnvelope envelope, CoordinateReferenceSystem destinationCRS, MathTransform transformation) Re-Projects the given envelope to destinationCRS using transformation.