├── .Rbuildignore ├── .github ├── .gitignore ├── CONTRIBUTING.md ├── issue_template.md └── workflows │ ├── R-CMD-check.yaml │ ├── Render-readme.yaml │ ├── Test-coverage.yaml │ └── Write-codemeta.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── data.R ├── landscapetools.R ├── show_landscape.R ├── show_shareplot.R ├── theme_nlm.R ├── util_as_integer.R ├── util_binarize.R ├── util_calcboundaries.R ├── util_classify.R ├── util_extract_multibuffer.R ├── util_merge.R ├── util_raster2tibble.R ├── util_rescale.R ├── util_tibble2raster.R ├── util_w2cp.R └── util_writeESRI.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── codemeta.json ├── cran-comments.md ├── data-raw └── examplemaps.R ├── data ├── classified_landscape.rda ├── fractal_landscape.rda ├── gradient_landscape.rda └── random_landscape.rda ├── inst └── CITATION ├── landscapetools.Rproj ├── man ├── classified_landscape.Rd ├── figures │ ├── README-unnamed-chunk-1-1.png │ ├── README-unnamed-chunk-2-1.png │ ├── README-unnamed-chunk-3-1.png │ └── README-unnamed-chunk-4-1.png ├── fractal_landscape.Rd ├── gradient_landscape.Rd ├── landscapetools-package.Rd ├── random_landscape.Rd ├── show_landscape.Rd ├── show_shareplot.Rd ├── theme_nlm.Rd ├── util_as_integer.Rd ├── util_binarize.Rd ├── util_calc_boundaries.Rd ├── util_classify.Rd ├── util_extract_multibuffer.Rd ├── util_merge.Rd ├── util_raster2tibble.Rd ├── util_rescale.Rd ├── util_tibble2raster.Rd ├── util_w2cp.Rd └── util_writeESRI.Rd ├── src ├── .gitignore ├── get_jenkbreaks.c └── landscapetools_init.c ├── tests ├── testthat.R └── testthat │ ├── test_calcBoundaries.R │ ├── test_raster2tibble.R │ ├── test_showlandscape.R │ ├── test_themenlm.R │ ├── test_tibble2raster.R │ ├── test_utilbinarize.R │ ├── test_utilclassify.R │ ├── test_utilmerge.R │ ├── test_utilrescale.R │ ├── test_w2cp.R │ └── test_writeESRI.R └── vignettes ├── .gitignore └── overview.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/Render-readme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/.github/workflows/Render-readme.yaml -------------------------------------------------------------------------------- /.github/workflows/Test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/.github/workflows/Test-coverage.yaml -------------------------------------------------------------------------------- /.github/workflows/Write-codemeta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/.github/workflows/Write-codemeta.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/data.R -------------------------------------------------------------------------------- /R/landscapetools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/landscapetools.R -------------------------------------------------------------------------------- /R/show_landscape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/show_landscape.R -------------------------------------------------------------------------------- /R/show_shareplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/show_shareplot.R -------------------------------------------------------------------------------- /R/theme_nlm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/theme_nlm.R -------------------------------------------------------------------------------- /R/util_as_integer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/util_as_integer.R -------------------------------------------------------------------------------- /R/util_binarize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/util_binarize.R -------------------------------------------------------------------------------- /R/util_calcboundaries.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/util_calcboundaries.R -------------------------------------------------------------------------------- /R/util_classify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/util_classify.R -------------------------------------------------------------------------------- /R/util_extract_multibuffer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/util_extract_multibuffer.R -------------------------------------------------------------------------------- /R/util_merge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/util_merge.R -------------------------------------------------------------------------------- /R/util_raster2tibble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/util_raster2tibble.R -------------------------------------------------------------------------------- /R/util_rescale.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/util_rescale.R -------------------------------------------------------------------------------- /R/util_tibble2raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/util_tibble2raster.R -------------------------------------------------------------------------------- /R/util_w2cp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/util_w2cp.R -------------------------------------------------------------------------------- /R/util_writeESRI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/R/util_writeESRI.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/codecov.yml -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/codemeta.json -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/examplemaps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/data-raw/examplemaps.R -------------------------------------------------------------------------------- /data/classified_landscape.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/data/classified_landscape.rda -------------------------------------------------------------------------------- /data/fractal_landscape.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/data/fractal_landscape.rda -------------------------------------------------------------------------------- /data/gradient_landscape.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/data/gradient_landscape.rda -------------------------------------------------------------------------------- /data/random_landscape.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/data/random_landscape.rda -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/inst/CITATION -------------------------------------------------------------------------------- /landscapetools.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/landscapetools.Rproj -------------------------------------------------------------------------------- /man/classified_landscape.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/classified_landscape.Rd -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/figures/README-unnamed-chunk-1-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/figures/README-unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/figures/README-unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/figures/README-unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /man/fractal_landscape.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/fractal_landscape.Rd -------------------------------------------------------------------------------- /man/gradient_landscape.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/gradient_landscape.Rd -------------------------------------------------------------------------------- /man/landscapetools-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/landscapetools-package.Rd -------------------------------------------------------------------------------- /man/random_landscape.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/random_landscape.Rd -------------------------------------------------------------------------------- /man/show_landscape.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/show_landscape.Rd -------------------------------------------------------------------------------- /man/show_shareplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/show_shareplot.Rd -------------------------------------------------------------------------------- /man/theme_nlm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/theme_nlm.Rd -------------------------------------------------------------------------------- /man/util_as_integer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/util_as_integer.Rd -------------------------------------------------------------------------------- /man/util_binarize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/util_binarize.Rd -------------------------------------------------------------------------------- /man/util_calc_boundaries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/util_calc_boundaries.Rd -------------------------------------------------------------------------------- /man/util_classify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/util_classify.Rd -------------------------------------------------------------------------------- /man/util_extract_multibuffer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/util_extract_multibuffer.Rd -------------------------------------------------------------------------------- /man/util_merge.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/util_merge.Rd -------------------------------------------------------------------------------- /man/util_raster2tibble.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/util_raster2tibble.Rd -------------------------------------------------------------------------------- /man/util_rescale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/util_rescale.Rd -------------------------------------------------------------------------------- /man/util_tibble2raster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/util_tibble2raster.Rd -------------------------------------------------------------------------------- /man/util_w2cp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/util_w2cp.Rd -------------------------------------------------------------------------------- /man/util_writeESRI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/man/util_writeESRI.Rd -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/get_jenkbreaks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/src/get_jenkbreaks.c -------------------------------------------------------------------------------- /src/landscapetools_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/src/landscapetools_init.c -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_calcBoundaries.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/tests/testthat/test_calcBoundaries.R -------------------------------------------------------------------------------- /tests/testthat/test_raster2tibble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/tests/testthat/test_raster2tibble.R -------------------------------------------------------------------------------- /tests/testthat/test_showlandscape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/tests/testthat/test_showlandscape.R -------------------------------------------------------------------------------- /tests/testthat/test_themenlm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/tests/testthat/test_themenlm.R -------------------------------------------------------------------------------- /tests/testthat/test_tibble2raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/tests/testthat/test_tibble2raster.R -------------------------------------------------------------------------------- /tests/testthat/test_utilbinarize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/tests/testthat/test_utilbinarize.R -------------------------------------------------------------------------------- /tests/testthat/test_utilclassify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/tests/testthat/test_utilclassify.R -------------------------------------------------------------------------------- /tests/testthat/test_utilmerge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/tests/testthat/test_utilmerge.R -------------------------------------------------------------------------------- /tests/testthat/test_utilrescale.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/tests/testthat/test_utilrescale.R -------------------------------------------------------------------------------- /tests/testthat/test_w2cp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/tests/testthat/test_w2cp.R -------------------------------------------------------------------------------- /tests/testthat/test_writeESRI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/tests/testthat/test_writeESRI.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/overview.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/landscapetools/HEAD/vignettes/overview.Rmd --------------------------------------------------------------------------------