DataSet.GetFloatValuesAt Methods
Gets a number of float raster values.
Overload List
Name | Description | |
---|---|---|
Public method | GetFloatValuesAt(PointCollection points) | Gets a number of float raster values at the specified positions, using bilinear interpolation if the dataset is continuous. |
Public method | GetFloatValuesAt(PointCollection points, RasterFilter rasterFilter) | Gets a number of float raster values at the specified positions, using a given interpolation method. |
Public method | GetFloatValuesAt(IEnumerable< Point > points) | Gets a number of float raster values at the specified positions, using bilinear interpolation if the dataset is continuous. |
Public method | GetFloatValuesAt(IEnumerable< Point > points, RasterFilter rasterFilter) | Gets a number of float raster values at the specified positions, using a given interpolation method. |
GetFloatValuesAt(PointCollection points)
Gets a number of float raster values at the specified positions, using bilinear interpolation if the dataset is continuous.Syntax
public FloatCollection GetFloatValuesAt (
PointCollection points
)
Parameters
The positions, expressed in the coordinate reference system of the dataset, to get the values at.
Return Value
The float raster values at the specified positions.
Remarks
This method is similar to GetFloatValueAt, except that it retrieves multiple raster values in one call, and if several rasters overlap a position, you are not guaranteed to get the highest well-defined raster value for that position.
Unlike GetFloatValueAt, this method does not throw exceptions if no data is found for a specified coordinate. Instead the returned value for that particular point is set to a value less than −1.0e38. Valid values are still returned for the other positions.
Example
// Get the float values for the given coordinates
public static FloatCollection GetFloatValuesAt(
DataSet dataSet,
IEnumerable<Point> wgs84LongLatPointCollection)
{
// Project the coordinates to the Crs of the DataSet
PointCollection projectedPointCollection =
Crs.Wgs84LongLat.ProjectTo(dataSet.Crs, wgs84LongLatPointCollection);
// Get the float values at the given coordinates and return it
// GetFloatValuesAt does not throw exceptions if no data is found for a specified coordinate.
// Instead the returned value for that particular point is set to a value less than -1.0e38.
// Valid values are still returned for the other coordinates
return dataSet.GetFloatValuesAt(projectedPointCollection);
}
GetFloatValuesAt(PointCollection points, RasterFilter rasterFilter)
Gets a number of float raster values at the specified positions, using a given interpolation method.Syntax
public FloatCollection GetFloatValuesAt (
PointCollection points,
RasterFilter rasterFilter
)
Parameters
The positions, expressed in the coordinate reference system of the dataset, to get the values at.
The interpolation method: either nearest-neighbor, bilinear or bicubic.
Return Value
The float raster values at the specified positions.
Remarks
This method is similar to GetFloatValueAt, except that it retrieves multiple raster values in one call. Also, if several rasters overlap a position, you are not always guaranteed to get the highest well-defined raster value for that position; this is guaranteed only if bicubic interpolation is used.
Unlike GetFloatValueAt, this method does not throw exceptions if no data is found for a specified coordinate. Instead the returned value for that particular point is set to a value less than −1.0e38. Valid values are still returned for the other positions.
Example
// Get the float values for the given positions, using bicubic interpolation.
public static FloatCollection GetFloatValuesBicubicAt(
DataSet dataSet,
IEnumerable<Point> wgs84LongLatPointCollection)
{
// Project the coordinates to the Crs of the DataSet
PointCollection projectedPointCollection =
Crs.Wgs84LongLat.ProjectTo(dataSet.Crs, wgs84LongLatPointCollection);
// Get the float values at the given coordinates and return it
// GetFloatValuesAt does not throw exceptions if no data is found for a specified coordinate.
// Instead the returned value for that particular point is set to a value less than -1.0e38.
// Valid values are still returned for the other coordinates
return dataSet.GetFloatValuesAt(projectedPointCollection, RasterFilter.Bicubic);
}
GetFloatValuesAt(IEnumerable< Point > points)
Gets a number of float raster values at the specified positions, using bilinear interpolation if the dataset is continuous.Syntax
public FloatCollection GetFloatValuesAt (
IEnumerable< Point > points
)
Parameters
The positions, expressed in the coordinate reference system of the dataset, to get the values at.
Return Value
The float raster values at the specified positions.
Remarks
This method is similar to GetFloatValueAt, except that it retrieves multiple raster values in one call, and if several rasters overlap a position, you are not guaranteed to get the highest well-defined raster value for that position.
Unlike GetFloatValueAt, this method does not throw exceptions if no data is found for a specified coordinate. Instead the returned value for that particular point is set to a value less than −1.0e38. Valid values are still returned for the other positions.
GetFloatValuesAt(IEnumerable< Point > points, RasterFilter rasterFilter)
Gets a number of float raster values at the specified positions, using a given interpolation method.Syntax
public FloatCollection GetFloatValuesAt (
IEnumerable< Point > points,
RasterFilter rasterFilter
)
Parameters
The positions, expressed in the coordinate reference system of the dataset, to get the values at.
The interpolation method: either nearest-neighbor, bilinear or bicubic.
Return Value
The float raster values at the specified positions.
Remarks
This method is similar to GetFloatValueAt, except that it retrieves multiple raster values in one call. Also, if several rasters overlap a position, you are not always guaranteed to get the highest well-defined raster value for that position; this is guaranteed only if bicubic interpolation is used.
Unlike GetFloatValueAt, this method does not throw exceptions if no data is found for a specified coordinate. Instead the returned value for that particular point is set to a value less than −1.0e38. Valid values are still returned for the other positions.
Platforms
Windows, Linux, Android