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

Packages that use MathTransform1D
org.geotools.coverage Coverage implementation. 
org.geotools.coverage.grid GridCoverage2D implementation. 
org.geotools.coverage.processing Coverage processing implementations. 
org.geotools.referencing.operation.transform Basic implementations of math transforms
org.geotools.referencing.piecewise   
org.geotools.renderer.lite.gridcoverage2d SLD 1.0 and SE RasterSymbolizer support classes 
org.opengis.coverage Coverages (generate a value for any point). 
org.opengis.referencing.operation Coordinate operations (relationship between any two coordinate reference systems). 
 

Uses of MathTransform1D in org.geotools.coverage
 

Methods in org.geotools.coverage that return MathTransform1D
 MathTransform1D Category.getSampleToGeophysics()
          Returns a transform from sample values to geophysics values.
 MathTransform1D GridSampleDimension.getSampleToGeophysics()
          Returns a transform from sample values to geophysics values.
 

Methods in org.geotools.coverage with parameters of type MathTransform1D
 Category Category.rescale(MathTransform1D sampleToGeophysics)
          Changes the mapping from sample to geophysics values.
 

Constructors in org.geotools.coverage with parameters of type MathTransform1D
Category(CharSequence name, Color[] colors, NumberRange sampleValueRange, MathTransform1D sampleToGeophysics)
          Constructs a qualitative or quantitative category for samples in the specified range.
 

Uses of MathTransform1D in org.geotools.coverage.grid
 

Methods in org.geotools.coverage.grid that return MathTransform1D
 MathTransform1D GridCoverageBuilder.Variable.getTransform()
          Returns the "sample to geophysics" transform, or null if none.
 

Methods in org.geotools.coverage.grid with parameters of type MathTransform1D
 void GridCoverageBuilder.Variable.setTransform(MathTransform1D transform)
          Sets the "sample to geophysics" transform.
 

Uses of MathTransform1D in org.geotools.coverage.processing
 

Methods in org.geotools.coverage.processing that return MathTransform1D
 MathTransform1D RangeSpecifier.getSampleToGeophysics()
          Returns the target "sample to geophysics" transform, or null if none.
 

Methods in org.geotools.coverage.processing with parameters of type MathTransform1D
 void RangeSpecifier.setSampleToGeophysics(MathTransform1D transform)
          Set the target "sample to geophysics" transform to the specified value.
 

Constructors in org.geotools.coverage.processing with parameters of type MathTransform1D
RangeSpecifier(MathTransform1D transform)
          Constructs a RangeSpecifier initialised to the specified "sample to geophysics" transform.
 

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

Classes in org.geotools.referencing.operation.transform that implement MathTransform1D
 class ExponentialTransform1D
          A one dimensional exponentional transform.
 class LinearTransform1D
          A one dimensional, linear transform.
 class LogarithmicTransform1D
          A one dimensional, logarithmic transform.
 

Methods in org.geotools.referencing.operation.transform that return MathTransform1D
static MathTransform1D ExponentialTransform1D.create(double base, double scale)
          Constructs a new exponentional transform.
static MathTransform1D LogarithmicTransform1D.create(double base, double offset)
          Constructs a new logarithmic transform.
protected  MathTransform1D ExponentialTransform1D.Provider.createMathTransform(ParameterValueGroup values)
          Creates a logarithmic transform from the specified group of parameter values.
protected  MathTransform1D LogarithmicTransform1D.Provider.createMathTransform(ParameterValueGroup values)
          Creates a logarithmic transform from the specified group of parameter values.
 MathTransform1D LinearTransform1D.inverse()
          Creates the inverse transform of this object.
 MathTransform1D ExponentialTransform1D.inverse()
          Creates the inverse transform of this object.
 MathTransform1D LogarithmicTransform1D.inverse()
          Creates the inverse transform of this object.
 

Uses of MathTransform1D in org.geotools.referencing.piecewise
 

Subinterfaces of MathTransform1D in org.geotools.referencing.piecewise
 interface PiecewiseTransform1D<T extends PiecewiseTransform1DElement>
          The PiecewiseTransform1D interface extends the Domain1D adding transformation capabilities to it.
 interface PiecewiseTransform1DElement
          This interface extends the DomainElement1D interface in order to add the capabilities to perform 1D transformations on its values.
 

Classes in org.geotools.referencing.piecewise that implement MathTransform1D
 class DefaultLinearPiecewiseTransform1DElement
          Convenience class for linear transformations that maps an interval to another interval.
 class DefaultPiecewiseTransform1D<T extends DefaultPiecewiseTransform1DElement>
          Convenience implementation of the PiecewiseTransform1D interface which subclass the DefaultDomain1D class in order to provide a suitable framework to handle a list of PiecewiseTransform1DElement s.
 class DefaultPiecewiseTransform1DElement
          Convenience implementation of the DefaultPiecewiseTransform1DElement .
 class MathTransform1DAdapter
          Adapter class for MathTransform1D.
 

Methods in org.geotools.referencing.piecewise that return MathTransform1D
protected  MathTransform1D DefaultPiecewiseTransform1DElement.getTransform()
          Getter for the underlying MathTransform1D .
 MathTransform1D DefaultPiecewiseTransform1D.inverse()
           
 MathTransform1D DefaultPiecewiseTransform1DElement.inverse()
           
 MathTransform1D MathTransform1DAdapter.inverse()
           
 

Methods in org.geotools.referencing.piecewise with parameters of type MathTransform1D
static DefaultPiecewiseTransform1DElement DefaultPiecewiseTransform1DElement.create(String string, NumberRange<? extends Number> range, MathTransform1D mathTransform1D)
           
protected  void DefaultPiecewiseTransform1DElement.setInverse(MathTransform1D mathTransform)
           
protected  void DefaultPiecewiseTransform1DElement.setTransform(MathTransform1D transform)
           
 

Constructors in org.geotools.referencing.piecewise with parameters of type MathTransform1D
DefaultPiecewiseTransform1DElement(CharSequence name, NumberRange<? extends Number> valueRange, MathTransform1D transform)
          Public constructor for building a DomainElement1D which applies the specified transformation on the values that fall into its definition range.
 

Uses of MathTransform1D in org.geotools.renderer.lite.gridcoverage2d
 

Subinterfaces of MathTransform1D in org.geotools.renderer.lite.gridcoverage2d
 interface ColorMapTransform<T extends ColorMapTransformElement>
          A ColorMapTransform is a special sub-interface of PiecewiseTransform1D that can be used to render raw data.
 interface ColorMapTransformElement
          ColorMapTransformElements are a special type of PiecewiseTransform1DElements that can be used to generate specific renderings as the result of specific transformations applied to the input values.
 

Classes in org.geotools.renderer.lite.gridcoverage2d that implement MathTransform1D
 class LinearColorMap
           
 class LinearColorMapElement
          This LinearColorMapElement is a special implementation of both PiecewiseTransform1DElement and ColorMapTransformElement which can be used to do various types of classifications on raster.
 

Methods in org.geotools.renderer.lite.gridcoverage2d that return MathTransform1D
 MathTransform1D LinearColorMap.inverse()
           
 

Uses of MathTransform1D in org.opengis.coverage
 

Methods in org.opengis.coverage that return MathTransform1D
 MathTransform1D SampleDimension.getSampleToGeophysics()
          The transform which is applied to grid values for this sample dimension.
 

Uses of MathTransform1D in org.opengis.referencing.operation
 

Methods in org.opengis.referencing.operation that return MathTransform1D
 MathTransform1D MathTransform1D.inverse()
          Creates the inverse transform of this object.
 



Copyright © 1996-2014 Geotools. All Rights Reserved.