Provides access to members that control raster specific geodata transform.
Members
| Name | Description | |
|---|---|---|
![]() |
FullExtent | The full output extent within which this xform is applied. |
![]() |
Prepare | Prepares the xform for a given extent and cellsize within a domain. |
IRasterXform.FullExtent Property
The full output extent within which this xform is applied.
Public Property FullExtent As IEnvelope
public IEnvelope FullExtent {get; set;}
IRasterXform.Prepare Method
Prepares the xform for a given extent and cellsize within a domain.
Public Sub Prepare ( _
ByVal iDomain As Integer, _
ByVal Dx As Double, _
ByVal Dy As Double, _
ByVal pExtent As IEnvelope _
)
public void Prepare (
int iDomain,
double Dx,
double Dy,
IEnvelope pExtent
);
Classes that implement IRasterXform
| Classes | Description |
|---|---|
| ApproximationXform | A transformation that approximates other transformations. |
| CompositeXform | A composite geodata transform collection class. |
| CoordinateXform | A coordinate transform class. |
| EpipolarXform | A transformation that map native image to epipolar image. |
| FrameXform | A standard frame camera model transformation class. |
| PushbroomXform | A Pushbroom sensor model class. |
| RPCXform | A Rational Polynomial Coefficient (RPC) transform class. |
Remarks
IRasteXform is used for setting up raster specific information for transforming raster data. This interface needs to be implemented if creating a custom xform for raster transformation.

