PROProduction
Assess LiDAR point-cloud quality and compute confidence metrics for terrain extraction readiness.
workflow pro
LiDAR QA and Confidence
Is this LiDAR deliverable trustworthy enough for production terrain modeling, and where are the risk zones?
Survey/mapping firms, government mapping programs, and enterprise geospatial platforms.
Data acceptance teams need objective QA evidence before approving vendor LiDAR for production use.
| Parameter | Optional | Description |
|---|---|---|
| input (LAS/LAZ) | no | Input LiDAR point cloud used to derive QA, terrain, structure, or encroachment products. |
| qa_mode and QA threshold controls | no | QA strictness mode and threshold controls for LiDAR acceptance diagnostics. |
| fast_mode | yes | Optional acceleration mode that skips hotspot extraction, stratified metrics, and checkpoint validation for faster exploratory runs. |
| Parameter | Type | Description |
|---|---|---|
| classified_lidar | optional LAS/LAZ | Optional classified LiDAR point cloud output from QA/terrain workflows. |
| dtm | GeoTIFF | Digital terrain model raster generated from workflow processing. |
| confidence | GeoTIFF | Confidence layer quantifying reliability of modeled outputs. |
| uncertainty | GeoTIFF | Uncertainty diagnostics layer highlighting low-certainty areas. |
| qa_flags | GeoTIFF | QA flag raster identifying cells that failed quality checks. |
| summary | JSON | Machine-readable summary report containing run metadata, QA diagnostics, and key metrics. |
| html_report | HTML | Human-readable customer-facing report generated from the summary contract for stakeholder review and QA traceability. |
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)
Use of this function requires a license for Whitebox Workflows Professional (WbW-Pro). Please visit www.whiteboxgeo.com to purchase a license.