Package org.esa.snap.core.datamodel
Class TransectProfileData
- java.lang.Object
-
- org.esa.snap.core.datamodel.TransectProfileData
-
public class TransectProfileData extends Object
A container for data which fully describes a transect profile. UseTransectProfileDataBuilder
to create instances.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TransectProfileData.Config
-
Field Summary
Fields Modifier and Type Field Description static GeoPos
NO_GEO_POS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static TransectProfileData
create(RasterDataNode raster, Shape path)
Deprecated.since 4.10, useTransectProfileDataBuilder
insteadTransectProfileData.Config
getConfig()
GeoPos[]
getGeoPositions()
int
getNumPixels()
int
getNumShapeVertices()
Point2D[]
getPixelPositions()
float
getSampleMax()
float
getSampleMin()
float[]
getSampleSigmas()
float[]
getSampleValues()
int[]
getShapeVertexIndexes()
Point2D[]
getShapeVertices()
-
-
-
Field Detail
-
NO_GEO_POS
public static final GeoPos NO_GEO_POS
-
-
Method Detail
-
create
@Deprecated public static TransectProfileData create(RasterDataNode raster, Shape path) throws IOException
Deprecated.since 4.10, useTransectProfileDataBuilder
insteadSince 4.5- Throws:
IOException
-
getConfig
public TransectProfileData.Config getConfig()
-
getNumPixels
public int getNumPixels()
-
getNumShapeVertices
public int getNumShapeVertices()
-
getShapeVertices
public Point2D[] getShapeVertices()
-
getShapeVertexIndexes
public int[] getShapeVertexIndexes()
-
getPixelPositions
public Point2D[] getPixelPositions()
-
getGeoPositions
public GeoPos[] getGeoPositions()
-
getSampleValues
public float[] getSampleValues()
-
getSampleSigmas
public float[] getSampleSigmas()
-
getSampleMin
public float getSampleMin()
-
getSampleMax
public float getSampleMax()
-
-