├── .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 ├── img │ ├── WBRunner.png │ ├── WBT_icon.png │ ├── WhiteboxToolsLogo.png │ ├── WhiteboxToolsLogo.svg │ ├── WhiteboxToolsLogoBlue.png │ ├── WhiteboxToolsLogoGreen.png │ ├── WhiteboxToolsLogo_box_only.png │ ├── WhiteboxToolsLogo_box_only.svg │ ├── WhiteboxToolsLogo_vert.svg │ ├── WhiteboxToolsLogo_vert1.png │ ├── WhiteboxToolsLogo_vert2.png │ ├── WhiteboxToolsLogo_vert3.png │ ├── WhiteboxToolsLogo_vert4.png │ ├── closed.gif │ ├── closed.png │ ├── open.gif │ ├── open.png │ ├── tool.gif │ └── tool.png ├── plugins │ ├── conditional_evaluation.exe │ ├── conditional_evaluation.json │ ├── conditioned_latin_hypercube.exe │ ├── conditioned_latin_hypercube.json │ ├── edge_contamination.exe │ ├── edge_contamination.json │ ├── exposure_towards_wind_flux.exe │ ├── exposure_towards_wind_flux.json │ ├── gaussian_scale_space.exe │ ├── gaussian_scale_space.json │ ├── heat_map.exe │ ├── heat_map.json │ ├── individual_tree_detection.exe │ ├── individual_tree_detection.json │ ├── install_wb_extension.exe │ ├── install_wb_extension.json │ ├── launch_wb_runner.exe │ ├── launch_wb_runner.json │ ├── lidar_shift.exe │ ├── lidar_shift.json │ ├── local_quadratic_regression.exe │ ├── local_quadratic_regression.json │ ├── max_upslope_value.exe │ ├── max_upslope_value.json │ ├── normalize_lidar.exe │ ├── normalize_lidar.json │ ├── qin_flow_accumulation.exe │ ├── qin_flow_accumulation.json │ ├── quinn_flow_accumulation.exe │ ├── quinn_flow_accumulation.json │ ├── raster_calculator.exe │ ├── raster_calculator.json │ ├── register_license.exe │ ├── repair_stream_vector_topology.exe │ ├── repair_stream_vector_topology.json │ ├── rho8_flow_accumulation.exe │ ├── rho8_flow_accumulation.json │ ├── split_vector_lines.exe │ ├── split_vector_lines.json │ ├── travelling_salesman_problem.exe │ ├── travelling_salesman_problem.json │ ├── vector_stream_network_analysis.exe │ └── vector_stream_network_analysis.json ├── readme.txt ├── settings.json ├── wb_runner.py ├── whitebox_example.py ├── whitebox_tools.exe └── whitebox_tools.py ├── WhiteboxTools.pyt ├── screenshots ├── ArcGIS-10.6.png ├── Toolbox-1.png ├── Toolbox-2.png ├── Toolbox-3.png ├── Toolbox.png ├── arcgis-10.5.png ├── arcgis-pro-2.png └── arcgis-pro.png └── 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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/README.md -------------------------------------------------------------------------------- /WBT/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/LICENSE.txt -------------------------------------------------------------------------------- /WBT/PRE/WhiteboxTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/PRE/WhiteboxTools.py -------------------------------------------------------------------------------- /WBT/PRE/automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/PRE/automation.py -------------------------------------------------------------------------------- /WBT/PRE/file_about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/PRE/file_about.py -------------------------------------------------------------------------------- /WBT/PRE/file_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/PRE/file_header.py -------------------------------------------------------------------------------- /WBT/PRE/file_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/PRE/file_tool.py -------------------------------------------------------------------------------- /WBT/PRE/file_toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/PRE/file_toolbox.py -------------------------------------------------------------------------------- /WBT/PRE/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/PRE/testing.py -------------------------------------------------------------------------------- /WBT/PRE/whitebox_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/PRE/whitebox_tools.py -------------------------------------------------------------------------------- /WBT/UserManual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/UserManual.txt -------------------------------------------------------------------------------- /WBT/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WBT/img/WBRunner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/WBRunner.png -------------------------------------------------------------------------------- /WBT/img/WBT_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/WBT_icon.png -------------------------------------------------------------------------------- /WBT/img/WhiteboxToolsLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/WhiteboxToolsLogo.png -------------------------------------------------------------------------------- /WBT/img/WhiteboxToolsLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/WhiteboxToolsLogo.svg -------------------------------------------------------------------------------- /WBT/img/WhiteboxToolsLogoBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/WhiteboxToolsLogoBlue.png -------------------------------------------------------------------------------- /WBT/img/WhiteboxToolsLogoGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/WhiteboxToolsLogoGreen.png -------------------------------------------------------------------------------- /WBT/img/WhiteboxToolsLogo_box_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/WhiteboxToolsLogo_box_only.png -------------------------------------------------------------------------------- /WBT/img/WhiteboxToolsLogo_box_only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/WhiteboxToolsLogo_box_only.svg -------------------------------------------------------------------------------- /WBT/img/WhiteboxToolsLogo_vert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/WhiteboxToolsLogo_vert.svg -------------------------------------------------------------------------------- /WBT/img/WhiteboxToolsLogo_vert1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/WhiteboxToolsLogo_vert1.png -------------------------------------------------------------------------------- /WBT/img/WhiteboxToolsLogo_vert2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/WhiteboxToolsLogo_vert2.png -------------------------------------------------------------------------------- /WBT/img/WhiteboxToolsLogo_vert3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/WhiteboxToolsLogo_vert3.png -------------------------------------------------------------------------------- /WBT/img/WhiteboxToolsLogo_vert4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/WhiteboxToolsLogo_vert4.png -------------------------------------------------------------------------------- /WBT/img/closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/closed.gif -------------------------------------------------------------------------------- /WBT/img/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/closed.png -------------------------------------------------------------------------------- /WBT/img/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/open.gif -------------------------------------------------------------------------------- /WBT/img/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/open.png -------------------------------------------------------------------------------- /WBT/img/tool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/tool.gif -------------------------------------------------------------------------------- /WBT/img/tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/img/tool.png -------------------------------------------------------------------------------- /WBT/plugins/conditional_evaluation.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/conditional_evaluation.exe -------------------------------------------------------------------------------- /WBT/plugins/conditional_evaluation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/conditional_evaluation.json -------------------------------------------------------------------------------- /WBT/plugins/conditioned_latin_hypercube.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/conditioned_latin_hypercube.exe -------------------------------------------------------------------------------- /WBT/plugins/conditioned_latin_hypercube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/conditioned_latin_hypercube.json -------------------------------------------------------------------------------- /WBT/plugins/edge_contamination.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/edge_contamination.exe -------------------------------------------------------------------------------- /WBT/plugins/edge_contamination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/edge_contamination.json -------------------------------------------------------------------------------- /WBT/plugins/exposure_towards_wind_flux.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/exposure_towards_wind_flux.exe -------------------------------------------------------------------------------- /WBT/plugins/exposure_towards_wind_flux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/exposure_towards_wind_flux.json -------------------------------------------------------------------------------- /WBT/plugins/gaussian_scale_space.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/gaussian_scale_space.exe -------------------------------------------------------------------------------- /WBT/plugins/gaussian_scale_space.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/gaussian_scale_space.json -------------------------------------------------------------------------------- /WBT/plugins/heat_map.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/heat_map.exe -------------------------------------------------------------------------------- /WBT/plugins/heat_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/heat_map.json -------------------------------------------------------------------------------- /WBT/plugins/individual_tree_detection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/individual_tree_detection.exe -------------------------------------------------------------------------------- /WBT/plugins/individual_tree_detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/individual_tree_detection.json -------------------------------------------------------------------------------- /WBT/plugins/install_wb_extension.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/install_wb_extension.exe -------------------------------------------------------------------------------- /WBT/plugins/install_wb_extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/install_wb_extension.json -------------------------------------------------------------------------------- /WBT/plugins/launch_wb_runner.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/launch_wb_runner.exe -------------------------------------------------------------------------------- /WBT/plugins/launch_wb_runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/launch_wb_runner.json -------------------------------------------------------------------------------- /WBT/plugins/lidar_shift.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/lidar_shift.exe -------------------------------------------------------------------------------- /WBT/plugins/lidar_shift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/lidar_shift.json -------------------------------------------------------------------------------- /WBT/plugins/local_quadratic_regression.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/local_quadratic_regression.exe -------------------------------------------------------------------------------- /WBT/plugins/local_quadratic_regression.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/local_quadratic_regression.json -------------------------------------------------------------------------------- /WBT/plugins/max_upslope_value.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/max_upslope_value.exe -------------------------------------------------------------------------------- /WBT/plugins/max_upslope_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/max_upslope_value.json -------------------------------------------------------------------------------- /WBT/plugins/normalize_lidar.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/normalize_lidar.exe -------------------------------------------------------------------------------- /WBT/plugins/normalize_lidar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/normalize_lidar.json -------------------------------------------------------------------------------- /WBT/plugins/qin_flow_accumulation.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/qin_flow_accumulation.exe -------------------------------------------------------------------------------- /WBT/plugins/qin_flow_accumulation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/qin_flow_accumulation.json -------------------------------------------------------------------------------- /WBT/plugins/quinn_flow_accumulation.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/quinn_flow_accumulation.exe -------------------------------------------------------------------------------- /WBT/plugins/quinn_flow_accumulation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/quinn_flow_accumulation.json -------------------------------------------------------------------------------- /WBT/plugins/raster_calculator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/raster_calculator.exe -------------------------------------------------------------------------------- /WBT/plugins/raster_calculator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/raster_calculator.json -------------------------------------------------------------------------------- /WBT/plugins/register_license.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/register_license.exe -------------------------------------------------------------------------------- /WBT/plugins/repair_stream_vector_topology.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/repair_stream_vector_topology.exe -------------------------------------------------------------------------------- /WBT/plugins/repair_stream_vector_topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/repair_stream_vector_topology.json -------------------------------------------------------------------------------- /WBT/plugins/rho8_flow_accumulation.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/rho8_flow_accumulation.exe -------------------------------------------------------------------------------- /WBT/plugins/rho8_flow_accumulation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/rho8_flow_accumulation.json -------------------------------------------------------------------------------- /WBT/plugins/split_vector_lines.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/split_vector_lines.exe -------------------------------------------------------------------------------- /WBT/plugins/split_vector_lines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/split_vector_lines.json -------------------------------------------------------------------------------- /WBT/plugins/travelling_salesman_problem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/travelling_salesman_problem.exe -------------------------------------------------------------------------------- /WBT/plugins/travelling_salesman_problem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/travelling_salesman_problem.json -------------------------------------------------------------------------------- /WBT/plugins/vector_stream_network_analysis.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/vector_stream_network_analysis.exe -------------------------------------------------------------------------------- /WBT/plugins/vector_stream_network_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/plugins/vector_stream_network_analysis.json -------------------------------------------------------------------------------- /WBT/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/readme.txt -------------------------------------------------------------------------------- /WBT/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/settings.json -------------------------------------------------------------------------------- /WBT/wb_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/wb_runner.py -------------------------------------------------------------------------------- /WBT/whitebox_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/whitebox_example.py -------------------------------------------------------------------------------- /WBT/whitebox_tools.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/whitebox_tools.exe -------------------------------------------------------------------------------- /WBT/whitebox_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WBT/whitebox_tools.py -------------------------------------------------------------------------------- /WhiteboxTools.pyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/WhiteboxTools.pyt -------------------------------------------------------------------------------- /screenshots/ArcGIS-10.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/screenshots/ArcGIS-10.6.png -------------------------------------------------------------------------------- /screenshots/Toolbox-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/screenshots/Toolbox-1.png -------------------------------------------------------------------------------- /screenshots/Toolbox-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/screenshots/Toolbox-2.png -------------------------------------------------------------------------------- /screenshots/Toolbox-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/screenshots/Toolbox-3.png -------------------------------------------------------------------------------- /screenshots/Toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/screenshots/Toolbox.png -------------------------------------------------------------------------------- /screenshots/arcgis-10.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/screenshots/arcgis-10.5.png -------------------------------------------------------------------------------- /screenshots/arcgis-pro-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/screenshots/arcgis-pro-2.png -------------------------------------------------------------------------------- /screenshots/arcgis-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/screenshots/arcgis-pro.png -------------------------------------------------------------------------------- /testdata/DEM/DEM.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/DEM/DEM.dep -------------------------------------------------------------------------------- /testdata/DEM/DEM.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/DEM/DEM.tif -------------------------------------------------------------------------------- /testdata/Landsat/LC80320272014265LGN00_B1.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Landsat/LC80320272014265LGN00_B1.TIF -------------------------------------------------------------------------------- /testdata/Landsat/LC80320272014265LGN00_B2.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Landsat/LC80320272014265LGN00_B2.TIF -------------------------------------------------------------------------------- /testdata/Landsat/LC80320272014265LGN00_B3.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Landsat/LC80320272014265LGN00_B3.TIF -------------------------------------------------------------------------------- /testdata/Landsat/LC80320272014265LGN00_B4.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Landsat/LC80320272014265LGN00_B4.TIF -------------------------------------------------------------------------------- /testdata/Landsat/LC80320272014265LGN00_B5.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Landsat/LC80320272014265LGN00_B5.TIF -------------------------------------------------------------------------------- /testdata/Landsat/LC80320272014265LGN00_B6.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Landsat/LC80320272014265LGN00_B6.TIF -------------------------------------------------------------------------------- /testdata/Landsat/LC80320272014265LGN00_B7.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Landsat/LC80320272014265LGN00_B7.TIF -------------------------------------------------------------------------------- /testdata/Landsat/LC80320272014265LGN00_B8.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Landsat/LC80320272014265LGN00_B8.TIF -------------------------------------------------------------------------------- /testdata/Landsat/LC80320272014265LGN00_Boundary.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /testdata/Landsat/LC80320272014265LGN00_Boundary.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Landsat/LC80320272014265LGN00_Boundary.dbf -------------------------------------------------------------------------------- /testdata/Landsat/LC80320272014265LGN00_Boundary.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Landsat/LC80320272014265LGN00_Boundary.prj -------------------------------------------------------------------------------- /testdata/Landsat/LC80320272014265LGN00_Boundary.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Landsat/LC80320272014265LGN00_Boundary.shp -------------------------------------------------------------------------------- /testdata/Landsat/LC80320272014265LGN00_Boundary.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Landsat/LC80320272014265LGN00_Boundary.shx -------------------------------------------------------------------------------- /testdata/Landsat/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Landsat/Readme.txt -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Boundary.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Boundary.dbf -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Boundary.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Boundary.prj -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Boundary.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Boundary.shp -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Boundary.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Boundary.shx -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_LiDAR_2m.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_LiDAR_2m.tif -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_NAIP_2m.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_NAIP_2m.tif -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_NED_10m.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_NED_10m.tif -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Points.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Points.dbf -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Points.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Points.prj -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Points.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Points.sbn -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Points.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Points.sbx -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Points.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Points.shp -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Points.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Points.shx -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Polygons.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Polygons.dbf -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Polygons.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Polygons.prj -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Polygons.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Polygons.sbn -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Polygons.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Polygons.sbx -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Polygons.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Polygons.shp -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Polygons.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Polygons.shx -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Polylines.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Polylines.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Polylines.dbf -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Polylines.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Polylines.prj -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Polylines.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Polylines.sbn -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Polylines.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Polylines.sbx -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Polylines.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Polylines.shp -------------------------------------------------------------------------------- /testdata/Wetlands/CLSA_Wetland_Polylines.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/CLSA_Wetland_Polylines.shx -------------------------------------------------------------------------------- /testdata/Wetlands/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/Wetlands/Readme.txt -------------------------------------------------------------------------------- /testdata/WorldMap/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/WorldMap/Readme.txt -------------------------------------------------------------------------------- /testdata/WorldMap/TM_WORLD_BORDERS_SIMPL-0.3.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/WorldMap/TM_WORLD_BORDERS_SIMPL-0.3.dbf -------------------------------------------------------------------------------- /testdata/WorldMap/TM_WORLD_BORDERS_SIMPL-0.3.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/WorldMap/TM_WORLD_BORDERS_SIMPL-0.3.prj -------------------------------------------------------------------------------- /testdata/WorldMap/TM_WORLD_BORDERS_SIMPL-0.3.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/WorldMap/TM_WORLD_BORDERS_SIMPL-0.3.shp -------------------------------------------------------------------------------- /testdata/WorldMap/TM_WORLD_BORDERS_SIMPL-0.3.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/WorldMap/TM_WORLD_BORDERS_SIMPL-0.3.shx -------------------------------------------------------------------------------- /testdata/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengeos/WhiteboxTools-ArcGIS/HEAD/testdata/examples.py --------------------------------------------------------------------------------