├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── CITATION.cff ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── mapiso.R └── package.R ├── README.Rmd ├── README.md ├── codecov.yml ├── codemeta.json ├── data-raw └── build_dataset.R ├── inst ├── csv │ └── elevation.csv ├── gpkg │ └── elevation.gpkg ├── tif │ └── elevation.tif └── tinytest │ └── test_mapiso.R ├── man ├── figures │ ├── README-data.frame-1.png │ ├── README-raster-1.png │ ├── README-sf-1.png │ └── logo.png ├── mapiso-package.Rd └── mapiso.Rd ├── mapiso.Rproj └── tests └── tinytest.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/CITATION.cff -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/mapiso.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/R/mapiso.R -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/R/package.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/codecov.yml -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/codemeta.json -------------------------------------------------------------------------------- /data-raw/build_dataset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/data-raw/build_dataset.R -------------------------------------------------------------------------------- /inst/csv/elevation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/inst/csv/elevation.csv -------------------------------------------------------------------------------- /inst/gpkg/elevation.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/inst/gpkg/elevation.gpkg -------------------------------------------------------------------------------- /inst/tif/elevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/inst/tif/elevation.tif -------------------------------------------------------------------------------- /inst/tinytest/test_mapiso.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/inst/tinytest/test_mapiso.R -------------------------------------------------------------------------------- /man/figures/README-data.frame-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/man/figures/README-data.frame-1.png -------------------------------------------------------------------------------- /man/figures/README-raster-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/man/figures/README-raster-1.png -------------------------------------------------------------------------------- /man/figures/README-sf-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/man/figures/README-sf-1.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/mapiso-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/man/mapiso-package.Rd -------------------------------------------------------------------------------- /man/mapiso.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/man/mapiso.Rd -------------------------------------------------------------------------------- /mapiso.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/mapiso.Rproj -------------------------------------------------------------------------------- /tests/tinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/mapiso/HEAD/tests/tinytest.R --------------------------------------------------------------------------------