├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── api.R ├── spoils.R ├── stitch.R ├── tile_grid.R ├── utils.R └── victor-package.R ├── README.Rmd ├── README.md ├── man ├── east_most_tile_x.Rd ├── figures │ ├── README-example-1.png │ ├── README-unnamed-chunk-2-1.png │ └── README-unnamed-chunk-3-1.png ├── lon_wrap_180.Rd ├── spoils.Rd ├── tile_grid.Rd └── victor-package.Rd ├── scratch └── experiments.R ├── tests ├── testthat.R └── testthat │ ├── test-spoils.R │ ├── test-stitch.R │ └── test-utils.R ├── victor.Rproj └── vignettes ├── .gitignore └── getting_started.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/R/api.R -------------------------------------------------------------------------------- /R/spoils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/R/spoils.R -------------------------------------------------------------------------------- /R/stitch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/R/stitch.R -------------------------------------------------------------------------------- /R/tile_grid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/R/tile_grid.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/victor-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/R/victor-package.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/README.md -------------------------------------------------------------------------------- /man/east_most_tile_x.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/man/east_most_tile_x.Rd -------------------------------------------------------------------------------- /man/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/man/figures/README-example-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/man/figures/README-unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/man/figures/README-unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /man/lon_wrap_180.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/man/lon_wrap_180.Rd -------------------------------------------------------------------------------- /man/spoils.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/man/spoils.Rd -------------------------------------------------------------------------------- /man/tile_grid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/man/tile_grid.Rd -------------------------------------------------------------------------------- /man/victor-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/man/victor-package.Rd -------------------------------------------------------------------------------- /scratch/experiments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/scratch/experiments.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-spoils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/tests/testthat/test-spoils.R -------------------------------------------------------------------------------- /tests/testthat/test-stitch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/tests/testthat/test-stitch.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /victor.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/victor.Rproj -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/getting_started.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adam-gruer/victor/HEAD/vignettes/getting_started.Rmd --------------------------------------------------------------------------------