Author: Kassel Liam Hingee
This directory contains the source code of the R package lacunaritycovariance. This R package is for estimating gliding box lacunarity and other random closed set properties from binary coverage maps (images composed of binary-valued pixels).
From inside an R interactive session run:
library(remotes)
install_github("kasselhingee/lacunaritycovariance", ref = "release")
Inside an R session run
install.packages("<PATH>", repos = NULL, type = "source")
where <PATH>
is the path to a .tar.gz file containing the contents of this repository.
First run the following to build a .tar.gz file.
R CMD build --compact-vignettes=gs+qpdf .
This should create a file lacunaritycovariance-<VERSION>.tar.gz
.
Where <VERSION>
is a string on numbers separated by periods and hyphens, for example 1.0-0.
Then run
R CMD INSTALL lacunaritycovariance-<VERSION>.tar.gz
The manual pages for each function (in man/) and the file NAMESPACE have been generated using roxygen2. To edit these, edit the specially formatted comments in the files in the directory R/, then regenerate the manual pages and NAMESPACE function by running roxygen2::roxygenise()
from an R session with the working directory at the root of the package directory.
It is intended that the release branch is consistent with the package available on CRAN (except for brief periods whilst the new versions are submitted to CRAN and awaiting approval). Editing of the package should occur in either the master branch or other branches.