This document is archived and information here might be outdated. Recommended version. |
[Visual Basic .NET] Public Function Sample ( _ ByVal pSource As IGeoDataset, _ ByVal pCollectionOfRasters As IGeoDataset, _ ByVal eResampleType As esriGeoAnalysisResampleEnum _ ) As ITable
[C#] public ITable Sample ( IGeoDataset pSource, IGeoDataset pCollectionOfRasters, esriGeoAnalysisResampleEnum eResampleType );
[C++]
HRESULT Sample(
IGeoDataset* pSource,
IGeoDataset* pCollectionOfRasters,
esriGeoAnalysisResampleEnum eResampleType
);
[C++] Parameters pSource [in]
pSource is a parameter of type IGeoDataset* pCollectionOfRasters [in]
pCollectionOfRasters is a parameter of type IGeoDataset* eResampleType [in]
eResampleType is a parameter of type esriGeoAnalysisResampleEnum
locationDataset |
an input Raster, RasterDataset, RasterBand, RasterDescriptor, FeatureClass or FeatureClassDescriptor which defines the cells to sample Cells in the locationDataSet with valid values will be sampled. |
collectionOfRasters |
a multiband input Raster, RasterDataset, RasterBand, or RasterDescriptor whose values will be sampled based upon the locationDataset |
resampleType |
an esriGeoAnalysisResampleEnum specifing the resampling algorithm to be used when sampling a Raster resample enumeration types are, esriGeoAnalysisBilinear - bilinear interpolation esriGeoAnalysisCubic - cubic convolution esriGeoAnalysisNearest - nearest neighbor assignment |