PROProduction

Assess LiDAR point-cloud quality and compute confidence metrics for terrain extraction readiness.

workflow pro

Workflow Narrative

LiDAR QA and Confidence

Problem It Solves

Is this LiDAR deliverable trustworthy enough for production terrain modeling, and where are the risk zones?

Who It Is For

Primary User

Survey/mapping firms, government mapping programs, and enterprise geospatial platforms.

What It Does

How It Works

Why It Wins

Typical Buying Trigger

Data acceptance teams need objective QA evidence before approving vendor LiDAR for production use.

Typical Presets

Inputs

ParameterOptionalDescription
input (LAS/LAZ)noInput LiDAR point cloud used to derive QA, terrain, structure, or encroachment products.
qa_mode and QA threshold controlsnoQA strictness mode and threshold controls for LiDAR acceptance diagnostics.
fast_modeyesOptional acceleration mode that skips hotspot extraction, stratified metrics, and checkpoint validation for faster exploratory runs.

Outputs

ParameterTypeDescription
classified_lidaroptional LAS/LAZOptional classified LiDAR point cloud output from QA/terrain workflows.
dtmGeoTIFFDigital terrain model raster generated from workflow processing.
confidenceGeoTIFFConfidence layer quantifying reliability of modeled outputs.
uncertaintyGeoTIFFUncertainty diagnostics layer highlighting low-certainty areas.
qa_flagsGeoTIFFQA flag raster identifying cells that failed quality checks.
summaryJSONMachine-readable summary report containing run metadata, QA diagnostics, and key metrics.
html_reportHTMLHuman-readable customer-facing report generated from the summary contract for stakeholder review and QA traceability.

Python Example

import whitebox_workflows as wbw

wbe = wbw.WbEnvironment(include_pro=True, tier="pro")

result = wbe.lidar_qa_and_confidence(
    input="data/points.laz",
    qa_mode="balanced",
    fast_mode=False,
    output_prefix="output/lidar_qa",
)

print(result)

License Notice

Use of this function requires a license for Whitebox Workflows Professional (WbW-Pro). Please visit www.whiteboxgeo.com to purchase a license.

Project Links

WbW Homepage User Manual Learn More