Package org.esa.snap.core.gpf.pointop
Interface TargetSampleConfigurer
-
public interface TargetSampleConfigurer
ATargetSampleConfigurer
is used to define the target samples processed by aPointOperator
. The definition of a sample is given by its index within the pixel (a pixel comprises one or more samples) and the name of aRasterDataNode
contained in the target product.This interface is not intended to be implemented by clients.
- Since:
- SNAP 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
defineSample(int index, String name)
Defines a sample for aRasterDataNode
contained in the target product.
-
-
-
Method Detail
-
defineSample
void defineSample(int index, String name)
Defines a sample for aRasterDataNode
contained in the target product.- Parameters:
index
- The index of the sample within the sample arrays passed tocomputeSample()
orcomputePixel()
methods.name
- The name of aRasterDataNode
to which the sample belongs.
-
-