This document is archived and information here might be outdated. Recommended version. |
Converts a raster between two coordinate systems on region bases.
[Visual Basic .NET] Public Function ProjectFast ( _ ByVal GeoDataset As IGeoDataset, _ ByVal newSpatialReference As ISpatialReference, _ ByVal resampleType As esriGeoAnalysisResampleEnum, _ [ByRef CellSize As Object] _ ) As IGeoDataset
[C#] public IGeoDataset ProjectFast ( IGeoDataset GeoDataset, ISpatialReference newSpatialReference, esriGeoAnalysisResampleEnum resampleType, ref object CellSize );
[C++]
HRESULT ProjectFast(
IGeoDataset* GeoDataset,
ISpatialReference* newSpatialReference,
esriGeoAnalysisResampleEnum resampleType,
Variant* CellSize
);
[C++] Parameters GeoDataset [in]
GeoDataset is a parameter of type IGeoDataset* newSpatialReference [in]
newSpatialReference is a parameter of type ISpatialReference* resampleType [in]
resampleType is a parameter of type esriGeoAnalysisResampleEnum CellSize [in, optional]
CellSize is a parameter of type VARIANT*
GeoDataset |
an input Raster, RasterDataset, RasterBand, or RasterDescriptor |
newSpatialReference |
references an object supporting ISpatialReference interface that specifies the output spatial reference. |
resampleType |
an esriGeoAnalysisResampleEnum specifing the resampling algorithm to be used when sampling a Raster can be of type: esriGeoAnalysisResampleBilinear - bilinear interpolation. This is Default. esriGeoAnalysisResampleCubic - cubic convolution. esriGeoAnalysisResampleNearest - nearest neighbor assignment. |
[cellSize] |
ouput cellsize. The default is the current environment setting. |