org.geotools.referencing.operation.transform
Class ExponentialTransform1D

java.lang.Object
  extended byorg.geotools.referencing.wkt.Formattable
      extended byorg.geotools.referencing.operation.transform.AbstractMathTransform
          extended byorg.geotools.referencing.operation.transform.ExponentialTransform1D
All Implemented Interfaces:
org.opengis.referencing.operation.MathTransform, org.opengis.referencing.operation.MathTransform1D, java.io.Serializable

public class ExponentialTransform1D
extends AbstractMathTransform
implements org.opengis.referencing.operation.MathTransform1D, java.io.Serializable

A one dimensional exponentional transform. Input values x are converted into output values y using the following equation:

y  =  scale×basex

This equation may be written in other form:

basea + b×x  =  basea×(baseb)x

Since:
2.0
Version:
$Id: ExponentialTransform1D.java 17672 2006-01-19 00:25:55Z desruisseaux $
Author:
Martin Desruisseaux
See Also:
LogarithmicTransform1D, LinearTransform1D, Serialized Form

Nested Class Summary
static class ExponentialTransform1D.Provider
          The provider for the ExponentialTransform1D.
 
Nested classes inherited from class org.geotools.referencing.operation.transform.AbstractMathTransform
AbstractMathTransform.Inverse
 
Field Summary
 double base
          The base to be raised to a power.
 double scale
          The scale value to be multiplied.
 
Constructor Summary
protected ExponentialTransform1D(double base, double scale)
          Constructs a new exponentional transform.
 
Method Summary
static org.opengis.referencing.operation.MathTransform1D create(double base, double scale)
          Constructs a new exponentional transform.
 double derivative(double value)
          Gets the derivative of this function at a value.
 boolean equals(java.lang.Object object)
          Compares the specified object with this math transform for equality.
 org.opengis.parameter.ParameterDescriptorGroup getParameterDescriptors()
          Returns the parameter descriptors for this math transform.
 org.opengis.parameter.ParameterValueGroup getParameterValues()
          Returns the parameter values for this math transform.
 int getSourceDimensions()
          Gets the dimension of input points, which is 1.
 int getTargetDimensions()
          Gets the dimension of output points, which is 1.
 int hashCode()
          Returns a hash value for this transform.
 org.opengis.referencing.operation.MathTransform inverse()
          Creates the inverse transform of this object.
 double transform(double value)
          Transforms the specified value.
 void transform(double[] srcPts, int srcOff, double[] dstPts, int dstOff, int numPts)
          Transforms a list of coordinate point ordinal values.
 void transform(float[] srcPts, int srcOff, float[] dstPts, int dstOff, int numPts)
          Transforms a list of coordinate point ordinal values.
 
Methods inherited from class org.geotools.referencing.operation.transform.AbstractMathTransform
createTransformedShape, derivative, derivative, ensureNonNull, formatWKT, getDimSource, getDimTarget, isIdentity, needCopy, rollLongitude, transform, transform
 
Methods inherited from class org.geotools.referencing.wkt.Formattable
toString, toWKT, toWKT, toWKT
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.opengis.referencing.operation.MathTransform
derivative, isIdentity, toWKT, transform
 

Field Detail

base

public final double base
The base to be raised to a power.


scale

public final double scale
The scale value to be multiplied.

Constructor Detail

ExponentialTransform1D

protected ExponentialTransform1D(double base,
                                 double scale)
Constructs a new exponentional transform. This constructor is provided for subclasses only. Instances should be created using the factory method, which may returns optimized implementations for some particular argument values.

Parameters:
base - The base to be raised to a power.
scale - The scale value to be multiplied.
Method Detail

create

public static org.opengis.referencing.operation.MathTransform1D create(double base,
                                                                       double scale)
Constructs a new exponentional transform.

Parameters:
base - The base to be raised to a power.
scale - The scale value to be multiplied.

getParameterDescriptors

public org.opengis.parameter.ParameterDescriptorGroup getParameterDescriptors()
Returns the parameter descriptors for this math transform.

Overrides:
getParameterDescriptors in class AbstractMathTransform
Returns:
The parameter descriptors for this math transform, or .
See Also:
OperationMethod.getParameters()

getParameterValues

public org.opengis.parameter.ParameterValueGroup getParameterValues()
Returns the parameter values for this math transform.

Overrides:
getParameterValues in class AbstractMathTransform
Returns:
A copy of the parameter values for this math transform.
See Also:
Operation.getParameterValues()

getSourceDimensions

public int getSourceDimensions()
Gets the dimension of input points, which is 1.

Specified by:
getSourceDimensions in interface org.opengis.referencing.operation.MathTransform
Specified by:
getSourceDimensions in class AbstractMathTransform

getTargetDimensions

public int getTargetDimensions()
Gets the dimension of output points, which is 1.

Specified by:
getTargetDimensions in interface org.opengis.referencing.operation.MathTransform
Specified by:
getTargetDimensions in class AbstractMathTransform

inverse

public org.opengis.referencing.operation.MathTransform inverse()
Creates the inverse transform of this object.

Specified by:
inverse in interface org.opengis.referencing.operation.MathTransform
Overrides:
inverse in class AbstractMathTransform

derivative

public double derivative(double value)
Gets the derivative of this function at a value.

Specified by:
derivative in interface org.opengis.referencing.operation.MathTransform1D

transform

public double transform(double value)
Transforms the specified value.

Specified by:
transform in interface org.opengis.referencing.operation.MathTransform1D

transform

public void transform(float[] srcPts,
                      int srcOff,
                      float[] dstPts,
                      int dstOff,
                      int numPts)
Transforms a list of coordinate point ordinal values.

Specified by:
transform in interface org.opengis.referencing.operation.MathTransform
Overrides:
transform in class AbstractMathTransform

transform

public void transform(double[] srcPts,
                      int srcOff,
                      double[] dstPts,
                      int dstOff,
                      int numPts)
Transforms a list of coordinate point ordinal values.

Specified by:
transform in interface org.opengis.referencing.operation.MathTransform

hashCode

public int hashCode()
Returns a hash value for this transform. This value need not remain consistent between different implementations of the same class.

Overrides:
hashCode in class AbstractMathTransform

equals

public boolean equals(java.lang.Object object)
Compares the specified object with this math transform for equality.

Overrides:
equals in class AbstractMathTransform


Copyright © GeoTools. All Rights Reserved.