Raster
Namespace: FSharp.Gdal
Utility functions to access GDAL Rasters DataSources
Functions and values
Function or value | Description |
getImgValue dataset (xPixel, yLine)
Signature: dataset:Dataset -> (xPixel:int * yLine:int) -> float option
|
Gets the raster value at the specified xPixel and yLine
|
groundToImage geotransform (x, y)
Signature: geotransform:float [] -> (x:float * y:float) -> int * int
|
Maps raster's geographic coordinates on the image coordinates based on
a given geotransform
|
imageToGround geotransform (x, y)
Signature: geotransform:float [] -> (x:float * y:float) -> float * float
|
Maps image coordinates to the raster's geographic coordinates based on
a given geotransform
|