gitextract_x6scu65z/ ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── WBT/ │ ├── LICENSE.txt │ ├── PRE/ │ │ ├── WhiteboxTools.py │ │ ├── automation.py │ │ ├── file_about.py │ │ ├── file_header.py │ │ ├── file_tool.py │ │ ├── file_toolbox.py │ │ ├── testing.py │ │ └── whitebox_tools.py │ ├── UserManual.txt │ ├── __init__.py │ ├── plugins/ │ │ ├── conditional_evaluation.json │ │ ├── conditioned_latin_hypercube.json │ │ ├── edge_contamination.json │ │ ├── exposure_towards_wind_flux.json │ │ ├── gaussian_scale_space.json │ │ ├── heat_map.json │ │ ├── individual_tree_detection.json │ │ ├── install_wb_extension.json │ │ ├── launch_wb_runner.json │ │ ├── lidar_shift.json │ │ ├── local_quadratic_regression.json │ │ ├── max_upslope_value.json │ │ ├── normalize_lidar.json │ │ ├── qin_flow_accumulation.json │ │ ├── quinn_flow_accumulation.json │ │ ├── raster_calculator.json │ │ ├── repair_stream_vector_topology.json │ │ ├── rho8_flow_accumulation.json │ │ ├── split_vector_lines.json │ │ ├── travelling_salesman_problem.json │ │ └── vector_stream_network_analysis.json │ ├── readme.txt │ ├── wb_runner.py │ ├── whitebox_example.py │ └── whitebox_tools.py ├── WhiteboxTools.pyt └── testdata/ ├── DEM/ │ ├── DEM.dep │ └── DEM.tif ├── Landsat/ │ ├── LC80320272014265LGN00_B1.TIF │ ├── LC80320272014265LGN00_B2.TIF │ ├── LC80320272014265LGN00_B3.TIF │ ├── LC80320272014265LGN00_B4.TIF │ ├── LC80320272014265LGN00_B5.TIF │ ├── LC80320272014265LGN00_B6.TIF │ ├── LC80320272014265LGN00_B7.TIF │ ├── LC80320272014265LGN00_B8.TIF │ ├── LC80320272014265LGN00_Boundary.cpg │ ├── LC80320272014265LGN00_Boundary.dbf │ ├── LC80320272014265LGN00_Boundary.prj │ ├── LC80320272014265LGN00_Boundary.shp │ ├── LC80320272014265LGN00_Boundary.shx │ └── Readme.txt ├── Wetlands/ │ ├── CLSA_Boundary.dbf │ ├── CLSA_Boundary.prj │ ├── CLSA_Boundary.shp │ ├── CLSA_Boundary.shx │ ├── CLSA_LiDAR_2m.tif │ ├── CLSA_NAIP_2m.tif │ ├── CLSA_NED_10m.tif │ ├── CLSA_Wetland_Points.dbf │ ├── CLSA_Wetland_Points.prj │ ├── CLSA_Wetland_Points.sbn │ ├── CLSA_Wetland_Points.sbx │ ├── CLSA_Wetland_Points.shp │ ├── CLSA_Wetland_Points.shx │ ├── CLSA_Wetland_Polygons.dbf │ ├── CLSA_Wetland_Polygons.prj │ ├── CLSA_Wetland_Polygons.sbn │ ├── CLSA_Wetland_Polygons.sbx │ ├── CLSA_Wetland_Polygons.shp │ ├── CLSA_Wetland_Polygons.shx │ ├── CLSA_Wetland_Polylines.cpg │ ├── CLSA_Wetland_Polylines.dbf │ ├── CLSA_Wetland_Polylines.prj │ ├── CLSA_Wetland_Polylines.sbn │ ├── CLSA_Wetland_Polylines.sbx │ ├── CLSA_Wetland_Polylines.shp │ ├── CLSA_Wetland_Polylines.shx │ └── Readme.txt ├── WorldMap/ │ ├── Readme.txt │ ├── TM_WORLD_BORDERS_SIMPL-0.3.dbf │ ├── TM_WORLD_BORDERS_SIMPL-0.3.prj │ ├── TM_WORLD_BORDERS_SIMPL-0.3.shp │ └── TM_WORLD_BORDERS_SIMPL-0.3.shx └── examples.py