src.eval.raster_grid_evaluation
Classes
|
- class src.eval.raster_grid_evaluation.RasterGridEvaluation(**kwargs)
- Author:
Alberto M. Esmoris Pena
Class representing the result of evaluating a point cloud by transforming it to a convenient raster representation.
- Variables:
X (
np.ndarray) – The matrix of coordinates representing the evaluated point cloud.Fgrids (list) – A list of grids representing the grids of features from the evaluated point cloud.
onames (list) – The output name for each grid of features.
crs (str) – The coordinate reference system (CRS).
xres (float) – The cell size along the x-axis.
yres (float) – The cell size along the y-axis.
- __init__(**kwargs)
Initialize/instantiate a RasterGridEvaluation.
- Parameters:
kwargs – The attributes for the RasterGridEvaluation.
- can_plot(**kwargs)
See
Evaluationandevaluation.Evaluation.can_plot().
- plot(**kwargs)
Transform the evaluation into a plot (or many plots), each representing a raster-like 2D grid, typically in GeoTiff format.
See
RasterGridPlot.- Parameters:
kwargs – The key-word arguments for the plot.
- Returns:
The RasterGridPlot representing the RasterGridEvaluation.
- Return type: