├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── lint.yaml │ └── pkgdown.yaml ├── .gitignore ├── .lintr ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── configure_inset.R ├── coord_sf_inset.R ├── data.R ├── geom_inset_frame.R ├── geom_sf_inset.R ├── geom_sf_text_inset.R ├── ggmapinset-package.R ├── inset.R ├── inset_shape_circle.R ├── inset_shape_rectangle.R ├── inset_shape_sf.R ├── layer_helpers.R ├── stat_sf_coordinates_inset.R ├── stat_sf_inset.R └── transform_to_inset.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── data-raw └── mozzies_nsw2301.R ├── data └── mozzies_nsw2301.rda ├── ggmapinset.Rproj ├── inst └── COPYRIGHTS ├── man ├── build_sf_inset_layers.Rd ├── configure_inset.Rd ├── coord_sf_inset.Rd ├── figures │ └── README-example-1.png ├── geom_inset_frame.Rd ├── geom_sf_inset.Rd ├── get_inset_config.Rd ├── ggmapinset-package.Rd ├── mozzies_nsw2301.Rd ├── shape_circle.Rd ├── shape_rectangle.Rd ├── shape_sf.Rd ├── stat_sf_coordinates_inset.Rd └── transform_to_inset.Rd └── vignettes ├── .gitignore └── ggmapinset.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/.lintr -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: Carl Suster 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/configure_inset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/R/configure_inset.R -------------------------------------------------------------------------------- /R/coord_sf_inset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/R/coord_sf_inset.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/R/data.R -------------------------------------------------------------------------------- /R/geom_inset_frame.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/R/geom_inset_frame.R -------------------------------------------------------------------------------- /R/geom_sf_inset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/R/geom_sf_inset.R -------------------------------------------------------------------------------- /R/geom_sf_text_inset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/R/geom_sf_text_inset.R -------------------------------------------------------------------------------- /R/ggmapinset-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/R/ggmapinset-package.R -------------------------------------------------------------------------------- /R/inset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/R/inset.R -------------------------------------------------------------------------------- /R/inset_shape_circle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/R/inset_shape_circle.R -------------------------------------------------------------------------------- /R/inset_shape_rectangle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/R/inset_shape_rectangle.R -------------------------------------------------------------------------------- /R/inset_shape_sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/R/inset_shape_sf.R -------------------------------------------------------------------------------- /R/layer_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/R/layer_helpers.R -------------------------------------------------------------------------------- /R/stat_sf_coordinates_inset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/R/stat_sf_coordinates_inset.R -------------------------------------------------------------------------------- /R/stat_sf_inset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/R/stat_sf_inset.R -------------------------------------------------------------------------------- /R/transform_to_inset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/R/transform_to_inset.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/mozzies_nsw2301.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/data-raw/mozzies_nsw2301.R -------------------------------------------------------------------------------- /data/mozzies_nsw2301.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/data/mozzies_nsw2301.rda -------------------------------------------------------------------------------- /ggmapinset.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/ggmapinset.Rproj -------------------------------------------------------------------------------- /inst/COPYRIGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/inst/COPYRIGHTS -------------------------------------------------------------------------------- /man/build_sf_inset_layers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/man/build_sf_inset_layers.Rd -------------------------------------------------------------------------------- /man/configure_inset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/man/configure_inset.Rd -------------------------------------------------------------------------------- /man/coord_sf_inset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/man/coord_sf_inset.Rd -------------------------------------------------------------------------------- /man/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/man/figures/README-example-1.png -------------------------------------------------------------------------------- /man/geom_inset_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/man/geom_inset_frame.Rd -------------------------------------------------------------------------------- /man/geom_sf_inset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/man/geom_sf_inset.Rd -------------------------------------------------------------------------------- /man/get_inset_config.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/man/get_inset_config.Rd -------------------------------------------------------------------------------- /man/ggmapinset-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/man/ggmapinset-package.Rd -------------------------------------------------------------------------------- /man/mozzies_nsw2301.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/man/mozzies_nsw2301.Rd -------------------------------------------------------------------------------- /man/shape_circle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/man/shape_circle.Rd -------------------------------------------------------------------------------- /man/shape_rectangle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/man/shape_rectangle.Rd -------------------------------------------------------------------------------- /man/shape_sf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/man/shape_sf.Rd -------------------------------------------------------------------------------- /man/stat_sf_coordinates_inset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/man/stat_sf_coordinates_inset.Rd -------------------------------------------------------------------------------- /man/transform_to_inset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/man/transform_to_inset.Rd -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/ggmapinset.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cidm-ph/ggmapinset/HEAD/vignettes/ggmapinset.Rmd --------------------------------------------------------------------------------