Uses of Interface
org.opengis.referencing.operation.OperationMethod

Packages that use OperationMethod
org.geotools.parameter Parameter implementation. 
org.geotools.referencing.crs Coordinate reference systems implementation. 
org.geotools.referencing.factory Base classes for factories and authority factories
org.geotools.referencing.factory.epsg Authority factories for the EPSG database. 
org.geotools.referencing.operation Coordinate operation implementation. 
org.geotools.referencing.operation.projection Basic implementations of map projections
org.geotools.referencing.operation.transform Basic implementations of math transforms
org.opengis.referencing.operation Coordinate operations (relationship between any two coordinate reference systems). 
 

Uses of OperationMethod in org.geotools.parameter
 

Methods in org.geotools.parameter with parameters of type OperationMethod
 void ParameterWriter.format(OperationMethod operation)
          Prints the elements of an operation to the output stream.
static void ParameterWriter.print(OperationMethod operation)
          Prints the elements of an operation to the default output stream.
 

Uses of OperationMethod in org.geotools.referencing.crs
 

Constructors in org.geotools.referencing.crs with parameters of type OperationMethod
DefaultDerivedCRS(Map<String,?> properties, OperationMethod method, CoordinateReferenceSystem base, MathTransform baseToDerived, CoordinateSystem derivedCS)
          Deprecated. Create explicitly a DefiningConversion instead.
DefaultProjectedCRS(Map<String,?> properties, OperationMethod method, GeographicCRS base, MathTransform baseToDerived, CartesianCS derivedCS)
          Deprecated. Create explicitly a DefiningConversion instead.
 

Uses of OperationMethod in org.geotools.referencing.factory
 

Methods in org.geotools.referencing.factory that return OperationMethod
 OperationMethod BufferedAuthorityFactory.createOperationMethod(String code)
          Returns an operation method from a code.
 OperationMethod AuthorityFactoryAdapter.createOperationMethod(String code)
          Creates an operation method from a code.
 OperationMethod ThreadedAuthorityFactory.createOperationMethod(String code)
          Returns an operation method from a code.
 OperationMethod FallbackAuthorityFactory.createOperationMethod(String code)
          Creates an operation method from a code.
 OperationMethod AbstractAuthorityFactory.createOperationMethod(String code)
          Creates an operation method from a code.
 OperationMethod ReferencingFactoryContainer.getLastUsedMethod()
          Deprecated. Moved to the MathTransformFactory interface.
 OperationMethod ReferencingFactoryContainer.getOperationMethod(String name)
          Deprecated. Use DefaultMathTransformFactory.getOperationMethod(java.lang.String). This method was inefficient for other implementations.
 

Methods in org.geotools.referencing.factory with parameters of type OperationMethod
 DerivedCRS ReferencingObjectFactory.createDerivedCRS(Map<String,?> properties, OperationMethod method, CoordinateReferenceSystem base, MathTransform baseToDerived, CoordinateSystem derivedCS)
          Deprecated. Use CoordinateOperationFactory.createDefiningConversion(java.util.Map, org.opengis.referencing.operation.OperationMethod, org.opengis.parameter.ParameterValueGroup) followed by ReferencingObjectFactory.createDerivedCRS(java.util.Map, org.opengis.referencing.operation.OperationMethod, org.opengis.referencing.crs.CoordinateReferenceSystem, org.opengis.referencing.operation.MathTransform, org.opengis.referencing.cs.CoordinateSystem) instead.
 ProjectedCRS ReferencingFactoryContainer.createProjectedCRS(Map<String,?> properties, GeographicCRS baseCRS, OperationMethod method, ParameterValueGroup parameters, CartesianCS derivedCS)
          Deprecated. Use CRSFactory#createDefiningConversion followed by CRSFactory.createProjectedCRS(java.util.Map, org.opengis.referencing.crs.GeographicCRS, org.opengis.referencing.operation.Conversion, org.opengis.referencing.cs.CartesianCS) instead.
 ProjectedCRS ReferencingObjectFactory.createProjectedCRS(Map<String,?> properties, OperationMethod method, GeographicCRS base, MathTransform baseToDerived, CartesianCS derivedCS)
          Deprecated. Use CoordinateOperationFactory.createDefiningConversion(java.util.Map, org.opengis.referencing.operation.OperationMethod, org.opengis.parameter.ParameterValueGroup) followed by ReferencingObjectFactory.createProjectedCRS(java.util.Map, org.opengis.referencing.operation.OperationMethod, org.opengis.referencing.crs.GeographicCRS, org.opengis.referencing.operation.MathTransform, org.opengis.referencing.cs.CartesianCS) instead.
 

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

Methods in org.geotools.referencing.factory.epsg that return OperationMethod
 OperationMethod DirectEpsgFactory.createOperationMethod(String code)
          Returns an operation method from a code.
 OperationMethod AbstractEpsgFactory.generateOperationMethod(String code)
          Returns an operation method from a code.
 

Uses of OperationMethod in org.geotools.referencing.operation
 

Classes in org.geotools.referencing.operation that implement OperationMethod
 class DefaultOperationMethod
          Definition of an algorithm used to perform a coordinate operation.
 class MathTransformProvider
          An operation method capable to creates a math transform from set of parameter values.
 

Fields in org.geotools.referencing.operation declared as OperationMethod
 OperationMethod MathTransformProvider.Delegate.method
          The provider for the transform.
protected  OperationMethod DefaultOperation.method
          The operation method.
 

Methods in org.geotools.referencing.operation that return OperationMethod
 OperationMethod DefaultMathTransformFactory.getLastMethodUsed()
          Returns the operation method used for the latest call to createParameterizedTransform in the currently running thread.
 OperationMethod DefaultOperation.getMethod()
          Returns the operation method.
 OperationMethod DefaultMathTransformFactory.getOperationMethod(String name)
          Returns the operation method for the specified name.
 

Methods in org.geotools.referencing.operation that return types with arguments of type OperationMethod
 Set<OperationMethod> DefaultMathTransformFactory.getAvailableMethods(Class<? extends Operation> type)
          Returns a set of available methods for math transforms.
 

Methods in org.geotools.referencing.operation with parameters of type OperationMethod
static void DefaultOperationMethod.checkDimensions(OperationMethod method, MathTransform transform)
          Checks if an operation method and a math transform have a compatible number of source and target dimensions.
static CoordinateOperation DefaultOperation.create(Map<String,?> properties, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform, OperationMethod method, Class<? extends CoordinateOperation> type)
          Returns a coordinate operation of the specified class.
 Conversion AbstractCoordinateOperationFactory.createDefiningConversion(Map<String,?> properties, OperationMethod method, ParameterValueGroup parameters)
          Constructs a defining conversion from a set of properties.
protected  CoordinateOperation AbstractCoordinateOperationFactory.createFromMathTransform(Map<String,?> properties, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform, OperationMethod method, Class<? extends CoordinateOperation> type)
          Creates a coordinate operation from a math transform.
 CoordinateOperation DefaultCoordinateOperationFactory.createOperation(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, OperationMethod method)
          Deprecated. Current implementation ignore the method argument.
 CoordinateOperation BufferedCoordinateOperationFactory.createOperation(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, OperationMethod method)
          Deprecated. Will be removed.
 

Constructors in org.geotools.referencing.operation with parameters of type OperationMethod
DefaultConicProjection(Map<String,?> properties, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform, OperationMethod method)
          Constructs a projection from a set of properties.
DefaultConversion(Map<String,?> properties, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform, OperationMethod method)
          Constructs a conversion from a set of properties.
DefaultCylindricalProjection(Map<String,?> properties, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform, OperationMethod method)
          Constructs a projection from a set of properties.
DefaultOperation(Map<String,?> properties, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform, OperationMethod method)
          Constructs an operation from a set of properties.
DefaultOperationMethod(OperationMethod method)
          Constructs a new operation method with the same values than the specified one.
DefaultOperationMethod(OperationMethod method, int sourceDimensions, int targetDimensions)
          Constructs a new operation method with the same values than the specified one except the dimensions.
DefaultPlanarProjection(Map<String,?> properties, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform, OperationMethod method)
          Constructs a projection from a set of properties.
DefaultProjection(Map<String,?> properties, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform, OperationMethod method)
          Constructs a projection from a set of properties.
DefaultTransformation(Map<String,?> properties, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform, OperationMethod method)
          Constructs a transformation from a set of properties.
DefiningConversion(Map<String,?> properties, OperationMethod method, MathTransform transform)
          Constructs a conversion from a math transform.
DefiningConversion(Map<String,?> properties, OperationMethod method, ParameterValueGroup parameters)
          Constructs a conversion from a set of parameters.
MathTransformProvider.Delegate(MathTransform transform, OperationMethod method)
          Encapsulates the math transform created by the specified provider.
 

Uses of OperationMethod in org.geotools.referencing.operation.projection
 

Classes in org.geotools.referencing.operation.projection that implement OperationMethod
static class AlbersEqualArea.Provider
          The math transform provider for an Albers Equal Area projection (EPSG code 9822).
static class CassiniSoldner.Provider
          The MathTransformProvider for a CassiniSoldner projection.
static class EckertIV.Provider
          The math transform provider for the Eckert IV projection (not part of the EPSG database).
static class EquidistantConic.Provider
          The math transform provider for a EquidistantConic projection.
static class EquidistantCylindrical.Provider
          The math transform provider for an Equidistant Cylindrical projection (EPSG code 9823).
static class EquidistantCylindrical.SphericalProvider
          The math transform provider for an Equidistant Cylindrical projection, spherical case
static class HotineObliqueMercator.Provider
          The math transform provider for a Hotine Oblique Mercator projection (EPSG code 9812).
static class HotineObliqueMercator.Provider_TwoPoint
          The math transform provider for a Hotine Oblique Mercator projection, specified with two points on the central line (instead of a central point and azimuth).
static class Krovak.Provider
          The math transform provider for an Krovak projection (EPSG code 9819).
static class LambertAzimuthalEqualArea.Provider
          The math transform provider for an Lambert Equal Area projection (EPSG code 9820).
static class LambertConformal1SP.Provider
          The math transform provider for a Lambert Conformal 1SP projection (EPSG code 9801).
static class LambertConformal2SP.Provider
          The math transform provider for a Lambert Conformal 2SP projection (EPSG code 9802).
static class LambertConformalBelgium.Provider
          The math transform provider for a Lambert Conformal 2SP Belgium projection (EPSG code 9803).
static class MapProjection.AbstractProvider
          The base provider for MapProjections.
static class Mercator1SP.Provider
          The math transform provider for a Mercator 1SP projection (EPSG code 9804).
static class Mercator2SP.Provider
          The math transform provider for a Mercator 2SP projection (EPSG code 9805).
 class MercatorPseudoProvider
          Supports the popular visualisation projection used by Google, Microsoft, Yahoo, OSM and others
static class Mollweide.MollweideProvider
          The math transform provider for the Mollweide projection (not part of the EPSG database).
static class Mollweide.WagnerIVProvider
          The math transform provider for the Wagner IV projection (not part of the EPSG database).
static class Mollweide.WagnerVProvider
          The math transform provider for the Wagner V projection (not part of the EPSG database).
static class NewZealandMapGrid.Provider
          The math transform provider for New Zealand Map Grid (EPSG code 27200).
static class ObliqueMercator.Provider
          The math transform provider for an Oblique Mercator projection (EPSG code 9815).
static class ObliqueMercator.Provider_TwoPoint
          The math transform provider for a Oblique Mercator projection, specified with two points on the central line (instead of a central point and azimuth).
static class ObliqueStereographic.Provider
          The math transform provider for a stereographic projection of any kind.
static class Orthographic.Provider
          The math transform provider for a Orthographic projection.
static class PlateCarree.Provider
          The math transform provider for an Plate Carree projection.
static class PolarStereographic.ProviderA
          The math transform provider for a Polar Stereographic projection.
static class PolarStereographic.ProviderB
          The math transform provider for a Polar Stereographic (Variant B) projection.
static class PolarStereographic.ProviderNorth
          The math transform provider for a North Polar Stereographic projection.
static class PolarStereographic.ProviderSouth
          The math transform provider for a South Polar Stereographic projection.
static class Polyconic.Provider
          The math transform provider for a Mercator 1SP projection (EPSG code 9804).
static class Robinson.Provider
          The math transform provider for the Robinson projection (not part of the EPSG database).
static class Stereographic.Provider
          The math transform provider for a Stereographic projections using USGS equations.
static class TransverseMercator.Provider
          The math transform provider for a Transverse Mercator projection (EPSG code 9807).
static class TransverseMercator.Provider_SouthOrientated
          The math transform provider for a South Orientated Transverse Mercator projection (EPSG code 9808).
static class WinkelTripel.AitoffProvider
          The math transform provider for the Aitoff projection (not part of the EPSG database).
static class WinkelTripel.WinkelProvider
          The math transform provider for the Winkle Tripel projection projection (not part of the EPSG database).
static class WorldVanDerGrintenI.Provider
           
 

Uses of OperationMethod in org.geotools.referencing.operation.transform
 

Classes in org.geotools.referencing.operation.transform that implement OperationMethod
static class EarthGravitationalModel.Provider
          The provider for EarthGravitationalModel.
static class ExponentialTransform1D.Provider
          The provider for the ExponentialTransform1D.
static class GeocentricTransform.Provider
          The provider for GeocentricTransform.
static class GeocentricTransform.ProviderInverse
          The provider for inverse of GeocentricTransform.
static class GeocentricTranslation.Provider
          Base class for geocentric affine transform providers.
static class GeocentricTranslation.ProviderFrameRotation
          Geocentric affine transform provider for "Coordinate Frame rotation".
static class GeocentricTranslation.ProviderSevenParam
          Base class for geocentric affine transform providers with rotation terms.
static class LogarithmicTransform1D.Provider
          The provider for the LogarithmicTransform1D.
static class MolodenskiTransform.Provider
          The provider for MolodenskiTransform.
static class MolodenskiTransform.ProviderAbridged
          The provider for abridged MolodenskiTransform.
static class NADCONTransform.Provider
          The provider for NADCONTransform.
static class NTv2Transform.Provider
          The NTv2Transform provider.
static class ProjectiveTransform.ProviderAffine
          The provider for the "Affine general parametric transformation" (EPSG 9624).
static class ProjectiveTransform.ProviderLongitudeRotation
          The provider for the "Longitude rotation" (EPSG 9601).
 class SimilarityTransformProvider
          The provider for the "Similarity transformation" (EPSG 9621).
static class WarpTransform2D.Provider
          The provider for the WarpTransform2D.
 

Uses of OperationMethod in org.opengis.referencing.operation
 

Methods in org.opengis.referencing.operation that return OperationMethod
 OperationMethod MathTransformFactory.getLastMethodUsed()
          Returns the operation method used for the latest call to createParameterizedTransform, or null if not applicable.
 OperationMethod Operation.getMethod()
          Returns the operation method.
 

Methods in org.opengis.referencing.operation that return types with arguments of type OperationMethod
 Set<OperationMethod> MathTransformFactory.getAvailableMethods(Class<? extends Operation> type)
          Returns a set of available methods for math transforms.
 

Methods in org.opengis.referencing.operation with parameters of type OperationMethod
 Conversion CoordinateOperationFactory.createDefiningConversion(Map<String,?> properties, OperationMethod method, ParameterValueGroup parameters)
          Constructs a defining conversion from a set of properties.
 CoordinateOperation CoordinateOperationFactory.createOperation(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, OperationMethod method)
          Returns an operation using a particular method for conversion or transformation between two coordinate reference systems.
 



Copyright © 1996-2014 Geotools. All Rights Reserved.