com.esri.arcgis.datasourcesraster
Interface IGeodataXformApproximation

All Superinterfaces:
Serializable
All Known Implementing Classes:
ApproximationXform, CoordinateXform

public interface IGeodataXformApproximation
extends Serializable

Provides access to members that control approximation for geodata transforms.

Remarks

IGeodataXformApproximation is used to set the properties when creating an ApproximationXform

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 int getGridSize()
          The approximation grid size in pixels in output space.
 double getTolerance()
          The approximation error tolerance in distance in input space.
 boolean isApproximation()
          Indicates if approximation is on or off.
 boolean isRecalculateTolerance()
          Indicates if the tolerance can be recalculated based on input cellsize.
 void setApproximation(boolean pApproximation)
          Indicates if approximation is on or off.
 void setGridSize(int pSize)
          The approximation grid size in pixels in output space.
 void setRecalculateTolerance(boolean pRecalculateTolerance)
          Indicates if the tolerance can be recalculated based on input cellsize.
 void setTolerance(double pTolerance)
          The approximation error tolerance in distance in input space.
 

Method Detail

setTolerance

void setTolerance(double pTolerance)
                  throws IOException,
                         AutomationException
The approximation error tolerance in distance in input space.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
pTolerance - The pTolerance (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getTolerance

double getTolerance()
                    throws IOException,
                           AutomationException
The approximation error tolerance in distance in input space.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The pTolerance
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setGridSize

void setGridSize(int pSize)
                 throws IOException,
                        AutomationException
The approximation grid size in pixels in output space.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
pSize - The pSize (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getGridSize

int getGridSize()
                throws IOException,
                       AutomationException
The approximation grid size in pixels in output space.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The pSize
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setRecalculateTolerance

void setRecalculateTolerance(boolean pRecalculateTolerance)
                             throws IOException,
                                    AutomationException
Indicates if the tolerance can be recalculated based on input cellsize.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
pRecalculateTolerance - The pRecalculateTolerance (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

isRecalculateTolerance

boolean isRecalculateTolerance()
                               throws IOException,
                                      AutomationException
Indicates if the tolerance can be recalculated based on input cellsize.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The pRecalculateTolerance
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

isApproximation

boolean isApproximation()
                        throws IOException,
                               AutomationException
Indicates if approximation is on or off.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The pApproximation
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setApproximation

void setApproximation(boolean pApproximation)
                      throws IOException,
                             AutomationException
Indicates if approximation is on or off.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
pApproximation - The pApproximation (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.