PROProduction

Workflow-grade Pro analysis with audit-ready outputs.

workflow pro

Workflow Narrative

Network Readiness and Diagnostics

Problem It Solves

Is this network structurally and cost-wise ready for reliable routing and service optimization workflows?

Who It Is For

Primary User

Municipal/public works GIS teams, utilities, and logistics operations requiring reproducible network QA gates.

What It Does

How It Works

Why It Wins

Typical Buying Trigger

Teams encounter unstable routing outcomes and need an auditable pre-routing network quality gate.

Typical Presets

Inputs

ParameterOptionalDescription
networknoInput line network layer (street, transit, or utility network).
qa_reportnoOutput CSV path for detailed QA findings and issue counts.
diagnostics_layernoOutput GeoJSON/GeoPackage path containing diagnostic geometries.
readiness_scorenoOutput JSON path with readiness score, component scores, and pass/fail gate.

Outputs

ParameterTypeDescription
qa_reportCSVTabular QA findings including severity, check type, count, and descriptive diagnostics.
diagnostics_layerGeoJSON/GeoPackageSpatial diagnostics layer for issue visualization and spatial triage.
readiness_scoreJSONMachine-readable readiness contract with overall score, component scores, penalties, and pass/fail gate.
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.network_readiness_and_diagnostics_intelligence(
    network="data/street_network.shp",
    qa_report="output/network_readiness_qa.csv",
    diagnostics_layer="output/network_readiness_diagnostics.geojson",
    readiness_score="output/network_readiness_score.json",
)

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