├── .Rbuildignore ├── .covrignore ├── .gitattributes ├── .github └── workflows │ ├── R-CMD-check.yml │ ├── codemeta.yml │ ├── pkgdown.yml │ ├── revdep.yml │ └── rhub.yaml ├── .gitignore ├── .gitmodules ├── .lintr ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── Annotate.R ├── Contours.R ├── Coordinates.R ├── Holdridge.R ├── Polygons.R ├── SetRegion.R ├── Ternary-package.R ├── TernaryPlot.R ├── data.R ├── dot-TrianglePlot.R ├── helpers.R ├── shiny.R └── zzz.R ├── README.md ├── Ternary.Rproj ├── _config.yml ├── codemeta.json ├── cran-comments.md ├── data-raw ├── Holdridge.R ├── Holdridge_data.csv └── palettes.R ├── data ├── cbPalette13.rda ├── cbPalette15.rda ├── cbPalette8.rda ├── holdridge.rda ├── holdridgeClasses.rda ├── holdridgeClassesUp.rda ├── holdridgeLifeZones.rda └── holdridgeLifeZonesUp.rda ├── inst ├── CITATION ├── WORDLIST └── _pkgdown.yml ├── man-roxygen ├── MRS.R └── dotsToContour.R ├── man ├── AddToTernary.Rd ├── Annotate.Rd ├── ColourTernary.Rd ├── CoordinatesToXY.Rd ├── HoldridgeHypsometricCol.Rd ├── HoldridgePlot.Rd ├── OutsidePlot.Rd ├── Polygon-Geometry.Rd ├── ReflectedEquivalents.Rd ├── Ternary-package.Rd ├── TernaryApp.Rd ├── TernaryContour.Rd ├── TernaryCoords.Rd ├── TernaryDensityContour.Rd ├── TernaryPlot.Rd ├── TernaryPointValues.Rd ├── TernaryTiles.Rd ├── TernaryXRange.Rd ├── TriangleCentres.Rd ├── TriangleInHull.Rd ├── XYToTernary.Rd ├── cbPalettes.Rd ├── dot-SetRegion.Rd ├── holdridge.Rd └── holdridgeClasses.Rd ├── tests ├── Test-plots.Rmd ├── figs │ ├── contour-plotting │ │ ├── contours-skiwiff.svg │ │ ├── contours.svg │ │ ├── density-contours-2.svg │ │ ├── density-contours-3.svg │ │ ├── density-contours.svg │ │ └── lo-res-density-contours.svg │ ├── deps.txt │ ├── holdridge-basic.svg │ └── ternary-plotting │ │ ├── blank-down-anticlockwise.svg │ │ ├── blank-down.svg │ │ ├── blank-le-anticlockwise.svg │ │ ├── blank-le.svg │ │ ├── blank-plot.svg │ │ ├── blank-right-anticlockwise.svg │ │ ├── blank-right.svg │ │ ├── blank-up-anticlockwise.svg │ │ ├── blank-up.svg │ │ ├── cartesian.svg │ │ ├── colours-and-water.svg │ │ ├── padding.svg │ │ ├── plot-to-ternary-x.svg │ │ └── plot-to-ternary-y.svg ├── spelling.R ├── testthat.R └── testthat │ ├── _snaps │ ├── Annotate │ │ ├── annotate-auto-locate.svg │ │ ├── annotate-basics.svg │ │ └── annotate-zoomed.svg │ ├── Contours │ │ ├── contour-error-handling.svg │ │ ├── contours-skiwiff.svg │ │ ├── contours.svg │ │ ├── density-contours-2.svg │ │ ├── density-contours-3.svg │ │ ├── density-contours.svg │ │ ├── filledcontours.svg │ │ ├── lo-res-density-contours.svg │ │ └── rgbcolours.svg │ ├── Holdridge │ │ └── holdridge-basic.svg │ ├── axis-rotate │ │ ├── axispos.svg │ │ └── axisrotate.svg │ └── ternary │ │ ├── axisstyle.svg │ │ ├── blank-down-anticlockwise.svg │ │ ├── blank-down.svg │ │ ├── blank-le-anticlockwise.svg │ │ ├── blank-le.svg │ │ ├── blank-plot.svg │ │ ├── blank-right-anticlockwise.svg │ │ ├── blank-right.svg │ │ ├── blank-up-anticlockwise.svg │ │ ├── blank-up.svg │ │ ├── cartesian.svg │ │ ├── colours-and-water.svg │ │ ├── padding.svg │ │ ├── panel-xxst-parameter.svg │ │ ├── plot-to-ternary-x.svg │ │ └── plot-to-ternary-y.svg │ ├── test-Annotate.R │ ├── test-Contours.R │ ├── test-Coordinates.R │ ├── test-Holdridge.R │ ├── test-Polygons.R │ ├── test-SetRegion.R │ ├── test-axis-rotate.R │ ├── test-shiny.R │ └── test-ternary.R └── vignettes ├── Holdridge.Rmd ├── Ternary.Rmd ├── annotation.Rmd ├── interpolation.Rmd └── new-users.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.covrignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/.covrignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/.github/workflows/R-CMD-check.yml -------------------------------------------------------------------------------- /.github/workflows/codemeta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/.github/workflows/codemeta.yml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/.github/workflows/pkgdown.yml -------------------------------------------------------------------------------- /.github/workflows/revdep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/.github/workflows/revdep.yml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/.gitmodules -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/.lintr -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/Annotate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/R/Annotate.R -------------------------------------------------------------------------------- /R/Contours.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/R/Contours.R -------------------------------------------------------------------------------- /R/Coordinates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/R/Coordinates.R -------------------------------------------------------------------------------- /R/Holdridge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/R/Holdridge.R -------------------------------------------------------------------------------- /R/Polygons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/R/Polygons.R -------------------------------------------------------------------------------- /R/SetRegion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/R/SetRegion.R -------------------------------------------------------------------------------- /R/Ternary-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/R/Ternary-package.R -------------------------------------------------------------------------------- /R/TernaryPlot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/R/TernaryPlot.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/R/data.R -------------------------------------------------------------------------------- /R/dot-TrianglePlot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/R/dot-TrianglePlot.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/R/shiny.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/README.md -------------------------------------------------------------------------------- /Ternary.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/Ternary.Rproj -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/_config.yml -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/codemeta.json -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/Holdridge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/data-raw/Holdridge.R -------------------------------------------------------------------------------- /data-raw/Holdridge_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/data-raw/Holdridge_data.csv -------------------------------------------------------------------------------- /data-raw/palettes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/data-raw/palettes.R -------------------------------------------------------------------------------- /data/cbPalette13.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/data/cbPalette13.rda -------------------------------------------------------------------------------- /data/cbPalette15.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/data/cbPalette15.rda -------------------------------------------------------------------------------- /data/cbPalette8.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/data/cbPalette8.rda -------------------------------------------------------------------------------- /data/holdridge.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/data/holdridge.rda -------------------------------------------------------------------------------- /data/holdridgeClasses.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/data/holdridgeClasses.rda -------------------------------------------------------------------------------- /data/holdridgeClassesUp.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/data/holdridgeClassesUp.rda -------------------------------------------------------------------------------- /data/holdridgeLifeZones.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/data/holdridgeLifeZones.rda -------------------------------------------------------------------------------- /data/holdridgeLifeZonesUp.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/data/holdridgeLifeZonesUp.rda -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/inst/_pkgdown.yml -------------------------------------------------------------------------------- /man-roxygen/MRS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man-roxygen/MRS.R -------------------------------------------------------------------------------- /man-roxygen/dotsToContour.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man-roxygen/dotsToContour.R -------------------------------------------------------------------------------- /man/AddToTernary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/AddToTernary.Rd -------------------------------------------------------------------------------- /man/Annotate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/Annotate.Rd -------------------------------------------------------------------------------- /man/ColourTernary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/ColourTernary.Rd -------------------------------------------------------------------------------- /man/CoordinatesToXY.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/CoordinatesToXY.Rd -------------------------------------------------------------------------------- /man/HoldridgeHypsometricCol.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/HoldridgeHypsometricCol.Rd -------------------------------------------------------------------------------- /man/HoldridgePlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/HoldridgePlot.Rd -------------------------------------------------------------------------------- /man/OutsidePlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/OutsidePlot.Rd -------------------------------------------------------------------------------- /man/Polygon-Geometry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/Polygon-Geometry.Rd -------------------------------------------------------------------------------- /man/ReflectedEquivalents.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/ReflectedEquivalents.Rd -------------------------------------------------------------------------------- /man/Ternary-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/Ternary-package.Rd -------------------------------------------------------------------------------- /man/TernaryApp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/TernaryApp.Rd -------------------------------------------------------------------------------- /man/TernaryContour.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/TernaryContour.Rd -------------------------------------------------------------------------------- /man/TernaryCoords.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/TernaryCoords.Rd -------------------------------------------------------------------------------- /man/TernaryDensityContour.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/TernaryDensityContour.Rd -------------------------------------------------------------------------------- /man/TernaryPlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/TernaryPlot.Rd -------------------------------------------------------------------------------- /man/TernaryPointValues.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/TernaryPointValues.Rd -------------------------------------------------------------------------------- /man/TernaryTiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/TernaryTiles.Rd -------------------------------------------------------------------------------- /man/TernaryXRange.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/TernaryXRange.Rd -------------------------------------------------------------------------------- /man/TriangleCentres.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/TriangleCentres.Rd -------------------------------------------------------------------------------- /man/TriangleInHull.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/TriangleInHull.Rd -------------------------------------------------------------------------------- /man/XYToTernary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/XYToTernary.Rd -------------------------------------------------------------------------------- /man/cbPalettes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/cbPalettes.Rd -------------------------------------------------------------------------------- /man/dot-SetRegion.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/dot-SetRegion.Rd -------------------------------------------------------------------------------- /man/holdridge.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/holdridge.Rd -------------------------------------------------------------------------------- /man/holdridgeClasses.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/man/holdridgeClasses.Rd -------------------------------------------------------------------------------- /tests/Test-plots.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/Test-plots.Rmd -------------------------------------------------------------------------------- /tests/figs/contour-plotting/contours-skiwiff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/contour-plotting/contours-skiwiff.svg -------------------------------------------------------------------------------- /tests/figs/contour-plotting/contours.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/contour-plotting/contours.svg -------------------------------------------------------------------------------- /tests/figs/contour-plotting/density-contours-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/contour-plotting/density-contours-2.svg -------------------------------------------------------------------------------- /tests/figs/contour-plotting/density-contours-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/contour-plotting/density-contours-3.svg -------------------------------------------------------------------------------- /tests/figs/contour-plotting/density-contours.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/contour-plotting/density-contours.svg -------------------------------------------------------------------------------- /tests/figs/contour-plotting/lo-res-density-contours.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/contour-plotting/lo-res-density-contours.svg -------------------------------------------------------------------------------- /tests/figs/deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/deps.txt -------------------------------------------------------------------------------- /tests/figs/holdridge-basic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/holdridge-basic.svg -------------------------------------------------------------------------------- /tests/figs/ternary-plotting/blank-down-anticlockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/ternary-plotting/blank-down-anticlockwise.svg -------------------------------------------------------------------------------- /tests/figs/ternary-plotting/blank-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/ternary-plotting/blank-down.svg -------------------------------------------------------------------------------- /tests/figs/ternary-plotting/blank-le-anticlockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/ternary-plotting/blank-le-anticlockwise.svg -------------------------------------------------------------------------------- /tests/figs/ternary-plotting/blank-le.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/ternary-plotting/blank-le.svg -------------------------------------------------------------------------------- /tests/figs/ternary-plotting/blank-plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/ternary-plotting/blank-plot.svg -------------------------------------------------------------------------------- /tests/figs/ternary-plotting/blank-right-anticlockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/ternary-plotting/blank-right-anticlockwise.svg -------------------------------------------------------------------------------- /tests/figs/ternary-plotting/blank-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/ternary-plotting/blank-right.svg -------------------------------------------------------------------------------- /tests/figs/ternary-plotting/blank-up-anticlockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/ternary-plotting/blank-up-anticlockwise.svg -------------------------------------------------------------------------------- /tests/figs/ternary-plotting/blank-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/ternary-plotting/blank-up.svg -------------------------------------------------------------------------------- /tests/figs/ternary-plotting/cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/ternary-plotting/cartesian.svg -------------------------------------------------------------------------------- /tests/figs/ternary-plotting/colours-and-water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/ternary-plotting/colours-and-water.svg -------------------------------------------------------------------------------- /tests/figs/ternary-plotting/padding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/ternary-plotting/padding.svg -------------------------------------------------------------------------------- /tests/figs/ternary-plotting/plot-to-ternary-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/ternary-plotting/plot-to-ternary-x.svg -------------------------------------------------------------------------------- /tests/figs/ternary-plotting/plot-to-ternary-y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/figs/ternary-plotting/plot-to-ternary-y.svg -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/Annotate/annotate-auto-locate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/Annotate/annotate-auto-locate.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/Annotate/annotate-basics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/Annotate/annotate-basics.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/Annotate/annotate-zoomed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/Annotate/annotate-zoomed.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/Contours/contour-error-handling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/Contours/contour-error-handling.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/Contours/contours-skiwiff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/Contours/contours-skiwiff.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/Contours/contours.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/Contours/contours.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/Contours/density-contours-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/Contours/density-contours-2.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/Contours/density-contours-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/Contours/density-contours-3.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/Contours/density-contours.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/Contours/density-contours.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/Contours/filledcontours.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/Contours/filledcontours.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/Contours/lo-res-density-contours.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/Contours/lo-res-density-contours.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/Contours/rgbcolours.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/Contours/rgbcolours.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/Holdridge/holdridge-basic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/Holdridge/holdridge-basic.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/axis-rotate/axispos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/axis-rotate/axispos.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/axis-rotate/axisrotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/axis-rotate/axisrotate.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/axisstyle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/axisstyle.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/blank-down-anticlockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/blank-down-anticlockwise.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/blank-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/blank-down.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/blank-le-anticlockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/blank-le-anticlockwise.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/blank-le.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/blank-le.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/blank-plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/blank-plot.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/blank-right-anticlockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/blank-right-anticlockwise.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/blank-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/blank-right.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/blank-up-anticlockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/blank-up-anticlockwise.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/blank-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/blank-up.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/colours-and-water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/colours-and-water.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/padding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/padding.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/panel-xxst-parameter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/panel-xxst-parameter.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/plot-to-ternary-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/plot-to-ternary-x.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ternary/plot-to-ternary-y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/_snaps/ternary/plot-to-ternary-y.svg -------------------------------------------------------------------------------- /tests/testthat/test-Annotate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/test-Annotate.R -------------------------------------------------------------------------------- /tests/testthat/test-Contours.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/test-Contours.R -------------------------------------------------------------------------------- /tests/testthat/test-Coordinates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/test-Coordinates.R -------------------------------------------------------------------------------- /tests/testthat/test-Holdridge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/test-Holdridge.R -------------------------------------------------------------------------------- /tests/testthat/test-Polygons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/test-Polygons.R -------------------------------------------------------------------------------- /tests/testthat/test-SetRegion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/test-SetRegion.R -------------------------------------------------------------------------------- /tests/testthat/test-axis-rotate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/test-axis-rotate.R -------------------------------------------------------------------------------- /tests/testthat/test-shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/test-shiny.R -------------------------------------------------------------------------------- /tests/testthat/test-ternary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/tests/testthat/test-ternary.R -------------------------------------------------------------------------------- /vignettes/Holdridge.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/vignettes/Holdridge.Rmd -------------------------------------------------------------------------------- /vignettes/Ternary.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/vignettes/Ternary.Rmd -------------------------------------------------------------------------------- /vignettes/annotation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/vignettes/annotation.Rmd -------------------------------------------------------------------------------- /vignettes/interpolation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/vignettes/interpolation.Rmd -------------------------------------------------------------------------------- /vignettes/new-users.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms609/Ternary/HEAD/vignettes/new-users.Rmd --------------------------------------------------------------------------------