├── .Rbuildignore ├── .github ├── .gitignore ├── template.R └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── progress-tracker.yml │ └── test-coverage.yaml ├── .gitignore ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── WhiteboxClasses.R ├── checks.R ├── conversion.R ├── crs.R ├── curvature.R ├── dimensions.R ├── env.R ├── filters.R ├── geomorphometry.R ├── hillshade.R ├── installation.R ├── math.R ├── matrix.R ├── plot.R ├── print.R ├── read.R ├── summary.R ├── system.R ├── terra.R ├── utils_documentation.R ├── write.R └── zzz.R ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── inst ├── extdata │ ├── dem.tif │ └── dem.tif.aux.xml └── wbw_helpers.py ├── man ├── WhiteboxExtent.Rd ├── WhiteboxRaster.Rd ├── as_rast.Rd ├── as_wbw_raster.Rd ├── checks.Rd ├── datatype.Rd ├── dimensions.Rd ├── figures │ ├── README-terra-1.png │ ├── logo.png │ └── src │ │ ├── wbw_logo.svg │ │ ├── wbw_social_preview.png │ │ └── wbw_social_preview.svg ├── io.Rd ├── matrix.Rd ├── plot.wbw-colon-colon-WhiteboxRaster.Rd ├── print.wbw-colon-colon-WhiteboxRaster.Rd ├── print_geotiff_tags.Rd ├── rd_example.Rd ├── rd_input_raster.Rd ├── rd_wbw_link.Rd ├── resolution.Rd ├── summarize.Rd ├── vector.Rd ├── wbw_adaptive_filter.Rd ├── wbw_aspect.Rd ├── wbw_bilateral_filter.Rd ├── wbw_conservative_smoothing_filter.Rd ├── wbw_download_sample_data.Rd ├── wbw_ext.Rd ├── wbw_fill_missing_data.Rd ├── wbw_gaussian_curvature.Rd ├── wbw_gaussian_filter.Rd ├── wbw_get_name.Rd ├── wbw_high_pass_filter.Rd ├── wbw_high_pass_median_filter.Rd ├── wbw_hillshade.Rd ├── wbw_install.Rd ├── wbw_majority_filter.Rd ├── wbw_max_procs.Rd ├── wbw_maximal_curvature.Rd ├── wbw_maximum_filter.Rd ├── wbw_mean_curvature.Rd ├── wbw_mean_filter.Rd ├── wbw_median_filter.Rd ├── wbw_minimal_curvature.Rd ├── wbw_minimum_filter.Rd ├── wbw_multidirectional_hillshade.Rd ├── wbw_olympic_filter.Rd ├── wbw_percentile_filter.Rd ├── wbw_plan_curvature.Rd ├── wbw_profile_curvature.Rd ├── wbw_random_sample.Rd ├── wbw_range_filter.Rd ├── wbw_ruggedness_index.Rd ├── wbw_slope.Rd ├── wbw_standard_deviation_filter.Rd ├── wbw_to_degrees.Rd ├── wbw_to_radians.Rd ├── wbw_total_filter.Rd ├── wbw_version.Rd ├── wbw_write_raster.Rd └── xy.coords.wbw-colon-colon-WhiteboxRaster.Rd ├── pkgdown ├── favicon │ ├── apple-touch-icon.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── favicon.svg │ ├── site.webmanifest │ ├── web-app-manifest-192x192.png │ └── web-app-manifest-512x512.png └── index.md ├── tests ├── test.R └── tinytest │ ├── setup.R │ ├── test_checks.R │ ├── test_conversions.R │ ├── test_crs.R │ ├── test_curvature.R │ ├── test_dims.R │ ├── test_filter.R │ ├── test_geomorphometry.R │ ├── test_io.R │ ├── test_math.R │ ├── test_primitives.R │ ├── test_print.R │ ├── test_system.R │ ├── test_terra.R │ ├── test_utils_documentation.R │ └── test_zzz.R └── vignettes └── articles ├── .gitignore ├── FAQ.Rmd ├── Tutorial-2.Rmd ├── benchmarks.Rmd └── tutorials.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/.github/template.R -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/progress-tracker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/.github/workflows/progress-tracker.yml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | /playground/ 3 | docs 4 | README.Rmd -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: wbw authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/WhiteboxClasses.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/WhiteboxClasses.R -------------------------------------------------------------------------------- /R/checks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/checks.R -------------------------------------------------------------------------------- /R/conversion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/conversion.R -------------------------------------------------------------------------------- /R/crs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/crs.R -------------------------------------------------------------------------------- /R/curvature.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/curvature.R -------------------------------------------------------------------------------- /R/dimensions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/dimensions.R -------------------------------------------------------------------------------- /R/env.R: -------------------------------------------------------------------------------- 1 | wbw_env <- new.env() 2 | -------------------------------------------------------------------------------- /R/filters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/filters.R -------------------------------------------------------------------------------- /R/geomorphometry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/geomorphometry.R -------------------------------------------------------------------------------- /R/hillshade.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/hillshade.R -------------------------------------------------------------------------------- /R/installation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/installation.R -------------------------------------------------------------------------------- /R/math.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/math.R -------------------------------------------------------------------------------- /R/matrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/matrix.R -------------------------------------------------------------------------------- /R/plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/plot.R -------------------------------------------------------------------------------- /R/print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/print.R -------------------------------------------------------------------------------- /R/read.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/read.R -------------------------------------------------------------------------------- /R/summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/summary.R -------------------------------------------------------------------------------- /R/system.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/system.R -------------------------------------------------------------------------------- /R/terra.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/terra.R -------------------------------------------------------------------------------- /R/utils_documentation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/utils_documentation.R -------------------------------------------------------------------------------- /R/write.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/write.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/codecov.yml -------------------------------------------------------------------------------- /inst/extdata/dem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/inst/extdata/dem.tif -------------------------------------------------------------------------------- /inst/extdata/dem.tif.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/inst/extdata/dem.tif.aux.xml -------------------------------------------------------------------------------- /inst/wbw_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/inst/wbw_helpers.py -------------------------------------------------------------------------------- /man/WhiteboxExtent.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/WhiteboxExtent.Rd -------------------------------------------------------------------------------- /man/WhiteboxRaster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/WhiteboxRaster.Rd -------------------------------------------------------------------------------- /man/as_rast.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/as_rast.Rd -------------------------------------------------------------------------------- /man/as_wbw_raster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/as_wbw_raster.Rd -------------------------------------------------------------------------------- /man/checks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/checks.Rd -------------------------------------------------------------------------------- /man/datatype.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/datatype.Rd -------------------------------------------------------------------------------- /man/dimensions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/dimensions.Rd -------------------------------------------------------------------------------- /man/figures/README-terra-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/figures/README-terra-1.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/src/wbw_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/figures/src/wbw_logo.svg -------------------------------------------------------------------------------- /man/figures/src/wbw_social_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/figures/src/wbw_social_preview.png -------------------------------------------------------------------------------- /man/figures/src/wbw_social_preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/figures/src/wbw_social_preview.svg -------------------------------------------------------------------------------- /man/io.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/io.Rd -------------------------------------------------------------------------------- /man/matrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/matrix.Rd -------------------------------------------------------------------------------- /man/plot.wbw-colon-colon-WhiteboxRaster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/plot.wbw-colon-colon-WhiteboxRaster.Rd -------------------------------------------------------------------------------- /man/print.wbw-colon-colon-WhiteboxRaster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/print.wbw-colon-colon-WhiteboxRaster.Rd -------------------------------------------------------------------------------- /man/print_geotiff_tags.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/print_geotiff_tags.Rd -------------------------------------------------------------------------------- /man/rd_example.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/rd_example.Rd -------------------------------------------------------------------------------- /man/rd_input_raster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/rd_input_raster.Rd -------------------------------------------------------------------------------- /man/rd_wbw_link.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/rd_wbw_link.Rd -------------------------------------------------------------------------------- /man/resolution.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/resolution.Rd -------------------------------------------------------------------------------- /man/summarize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/summarize.Rd -------------------------------------------------------------------------------- /man/vector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/vector.Rd -------------------------------------------------------------------------------- /man/wbw_adaptive_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_adaptive_filter.Rd -------------------------------------------------------------------------------- /man/wbw_aspect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_aspect.Rd -------------------------------------------------------------------------------- /man/wbw_bilateral_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_bilateral_filter.Rd -------------------------------------------------------------------------------- /man/wbw_conservative_smoothing_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_conservative_smoothing_filter.Rd -------------------------------------------------------------------------------- /man/wbw_download_sample_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_download_sample_data.Rd -------------------------------------------------------------------------------- /man/wbw_ext.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_ext.Rd -------------------------------------------------------------------------------- /man/wbw_fill_missing_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_fill_missing_data.Rd -------------------------------------------------------------------------------- /man/wbw_gaussian_curvature.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_gaussian_curvature.Rd -------------------------------------------------------------------------------- /man/wbw_gaussian_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_gaussian_filter.Rd -------------------------------------------------------------------------------- /man/wbw_get_name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_get_name.Rd -------------------------------------------------------------------------------- /man/wbw_high_pass_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_high_pass_filter.Rd -------------------------------------------------------------------------------- /man/wbw_high_pass_median_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_high_pass_median_filter.Rd -------------------------------------------------------------------------------- /man/wbw_hillshade.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_hillshade.Rd -------------------------------------------------------------------------------- /man/wbw_install.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_install.Rd -------------------------------------------------------------------------------- /man/wbw_majority_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_majority_filter.Rd -------------------------------------------------------------------------------- /man/wbw_max_procs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_max_procs.Rd -------------------------------------------------------------------------------- /man/wbw_maximal_curvature.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_maximal_curvature.Rd -------------------------------------------------------------------------------- /man/wbw_maximum_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_maximum_filter.Rd -------------------------------------------------------------------------------- /man/wbw_mean_curvature.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_mean_curvature.Rd -------------------------------------------------------------------------------- /man/wbw_mean_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_mean_filter.Rd -------------------------------------------------------------------------------- /man/wbw_median_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_median_filter.Rd -------------------------------------------------------------------------------- /man/wbw_minimal_curvature.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_minimal_curvature.Rd -------------------------------------------------------------------------------- /man/wbw_minimum_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_minimum_filter.Rd -------------------------------------------------------------------------------- /man/wbw_multidirectional_hillshade.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_multidirectional_hillshade.Rd -------------------------------------------------------------------------------- /man/wbw_olympic_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_olympic_filter.Rd -------------------------------------------------------------------------------- /man/wbw_percentile_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_percentile_filter.Rd -------------------------------------------------------------------------------- /man/wbw_plan_curvature.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_plan_curvature.Rd -------------------------------------------------------------------------------- /man/wbw_profile_curvature.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_profile_curvature.Rd -------------------------------------------------------------------------------- /man/wbw_random_sample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_random_sample.Rd -------------------------------------------------------------------------------- /man/wbw_range_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_range_filter.Rd -------------------------------------------------------------------------------- /man/wbw_ruggedness_index.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_ruggedness_index.Rd -------------------------------------------------------------------------------- /man/wbw_slope.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_slope.Rd -------------------------------------------------------------------------------- /man/wbw_standard_deviation_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_standard_deviation_filter.Rd -------------------------------------------------------------------------------- /man/wbw_to_degrees.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_to_degrees.Rd -------------------------------------------------------------------------------- /man/wbw_to_radians.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_to_radians.Rd -------------------------------------------------------------------------------- /man/wbw_total_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_total_filter.Rd -------------------------------------------------------------------------------- /man/wbw_version.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_version.Rd -------------------------------------------------------------------------------- /man/wbw_write_raster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/wbw_write_raster.Rd -------------------------------------------------------------------------------- /man/xy.coords.wbw-colon-colon-WhiteboxRaster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/man/xy.coords.wbw-colon-colon-WhiteboxRaster.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/pkgdown/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/pkgdown/favicon/favicon.svg -------------------------------------------------------------------------------- /pkgdown/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/pkgdown/favicon/site.webmanifest -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/pkgdown/favicon/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/pkgdown/favicon/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /pkgdown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/pkgdown/index.md -------------------------------------------------------------------------------- /tests/test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/test.R -------------------------------------------------------------------------------- /tests/tinytest/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/setup.R -------------------------------------------------------------------------------- /tests/tinytest/test_checks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/test_checks.R -------------------------------------------------------------------------------- /tests/tinytest/test_conversions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/test_conversions.R -------------------------------------------------------------------------------- /tests/tinytest/test_crs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/test_crs.R -------------------------------------------------------------------------------- /tests/tinytest/test_curvature.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/test_curvature.R -------------------------------------------------------------------------------- /tests/tinytest/test_dims.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/test_dims.R -------------------------------------------------------------------------------- /tests/tinytest/test_filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/test_filter.R -------------------------------------------------------------------------------- /tests/tinytest/test_geomorphometry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/test_geomorphometry.R -------------------------------------------------------------------------------- /tests/tinytest/test_io.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/test_io.R -------------------------------------------------------------------------------- /tests/tinytest/test_math.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/test_math.R -------------------------------------------------------------------------------- /tests/tinytest/test_primitives.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/test_primitives.R -------------------------------------------------------------------------------- /tests/tinytest/test_print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/test_print.R -------------------------------------------------------------------------------- /tests/tinytest/test_system.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/test_system.R -------------------------------------------------------------------------------- /tests/tinytest/test_terra.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/test_terra.R -------------------------------------------------------------------------------- /tests/tinytest/test_utils_documentation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/test_utils_documentation.R -------------------------------------------------------------------------------- /tests/tinytest/test_zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/tests/tinytest/test_zzz.R -------------------------------------------------------------------------------- /vignettes/articles/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/articles/FAQ.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/vignettes/articles/FAQ.Rmd -------------------------------------------------------------------------------- /vignettes/articles/Tutorial-2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/vignettes/articles/Tutorial-2.Rmd -------------------------------------------------------------------------------- /vignettes/articles/benchmarks.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/vignettes/articles/benchmarks.Rmd -------------------------------------------------------------------------------- /vignettes/articles/tutorials.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsyplenkov/wbw/HEAD/vignettes/articles/tutorials.Rmd --------------------------------------------------------------------------------