geo3d.rasters.pipeline ====================== .. py:module:: geo3d.rasters.pipeline Classes ------- .. autoapisummary:: geo3d.rasters.pipeline.RasterPipeline Module Contents --------------- .. py:class:: RasterPipeline Assembler of PDAL stages to build the raster pipeline. .. py:method:: build(reader: str, filename: str, output: str, resolution: float = 0.06, ept_resolution: float | None = None, token: str | None = None, bounds: str | None = None, noise_block: bool = False, mean_k_outlier: int = 12, multiplier_outlier: float = 2.2, ground_block: bool = False, height_threshold: float = 4.0, raster_window_size: float | None = None) -> altametris.geo3d.core.pipeline.Pipeline Build the raster pipeline. :param reader: The type of input reader. `las` or `ept`. :type reader: str :param filename: The input filename. :type filename: str :param output: The raster output filename. :type output: str :param resolution: The output raster cell resolution. Defaults to 0.06. :type resolution: float :param ept_resolution: The EPT input resolution. Defaults to None. :type ept_resolution: Optional[float] :param token: The token to access the EPT resource. Defaults to None. :type token: Optional[str] :param bounds: The bounds to crop the input point cloud. Defaults to None. :type bounds: Optional[str] :param noise_block: Decide to use the noise remover block. Defaults to False. :type noise_block: bool :param mean_k_outlier: The k nearest neighbors for mean_k noise outlier filter. Defaults to 12. :type mean_k_outlier: int :param multiplier_outlier: The value of the multiplier of the statistical noise outlier filter. Defaults to 2.2. :type multiplier_outlier: float :param ground_block: Decice to use the above ground filter block. Defaults to False. :type ground_block: bool :param height_threshold: The height above ground threshold. Defaults to 4.0 :type height_threshold: float :param raster_window_size: The raster windows size. Defaults to None. :type raster_window_size: float :returns: The raster pipeline as a pipeline ready to be executed. :rtype: Pipeline