├── .Rbuildignore ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── add_flowmap.R ├── add_flowmap_list.R ├── data.R ├── flowmap_sf.R ├── flowmapper-package.R ├── hca_flowdat.R └── prep_flowmap.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── data-raw ├── CH_migration_data.R ├── CH_migration_data.csv └── cantons.R ├── data ├── CH_migration_data.rda └── cantons.rda ├── flowmapper.Rproj ├── inst └── figures │ └── hex.png └── man ├── CH_migration_data.Rd ├── add_flowmap.Rd ├── add_flowmap_list.Rd ├── cantons.Rd ├── figures ├── README-c2-1.png ├── README-c3-1.png ├── README-c4-1.png ├── README-c5-1.png ├── README-pressure-1.png ├── README-t 15-1.png ├── README-t1-1.png ├── README-t10-1.png ├── README-t11-1.png ├── README-t12-1.png ├── README-t3-1.png ├── README-t4-1.png ├── README-t5-1.png ├── README-t6-1.png ├── README-t7-1.png ├── README-t7_5-1.png ├── README-unnamed-chunk-2-1.png ├── README-unnamed-chunk-2-2.png ├── README-unnamed-chunk-2-3.png ├── README-unnamed-chunk-3-1.png ├── README-unnamed-chunk-4-1.png ├── README-unnamed-chunk-5-1.png ├── README-unnamed-chunk-5-2.png ├── README-unnamed-chunk-6-1.png ├── README-unnamed-chunk-7-1.png ├── lifecycle-deprecated.svg ├── lifecycle-experimental.svg ├── lifecycle-stable.svg ├── lifecycle-superseded.svg └── plotly_example.PNG ├── flowmap_sf.Rd ├── flowmapper-package.Rd ├── get_circle_coords.Rd ├── hca_flowdat.Rd ├── prep_flowmap.Rd ├── short_scale.Rd └── util_data_flow_to_flowdat.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2024 2 | COPYRIGHT HOLDER: Johannes Mast 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/add_flowmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/R/add_flowmap.R -------------------------------------------------------------------------------- /R/add_flowmap_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/R/add_flowmap_list.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/R/data.R -------------------------------------------------------------------------------- /R/flowmap_sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/R/flowmap_sf.R -------------------------------------------------------------------------------- /R/flowmapper-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/R/flowmapper-package.R -------------------------------------------------------------------------------- /R/hca_flowdat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/R/hca_flowdat.R -------------------------------------------------------------------------------- /R/prep_flowmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/R/prep_flowmap.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/CH_migration_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/data-raw/CH_migration_data.R -------------------------------------------------------------------------------- /data-raw/CH_migration_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/data-raw/CH_migration_data.csv -------------------------------------------------------------------------------- /data-raw/cantons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/data-raw/cantons.R -------------------------------------------------------------------------------- /data/CH_migration_data.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/data/CH_migration_data.rda -------------------------------------------------------------------------------- /data/cantons.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/data/cantons.rda -------------------------------------------------------------------------------- /flowmapper.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/flowmapper.Rproj -------------------------------------------------------------------------------- /inst/figures/hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/inst/figures/hex.png -------------------------------------------------------------------------------- /man/CH_migration_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/CH_migration_data.Rd -------------------------------------------------------------------------------- /man/add_flowmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/add_flowmap.Rd -------------------------------------------------------------------------------- /man/add_flowmap_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/add_flowmap_list.Rd -------------------------------------------------------------------------------- /man/cantons.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/cantons.Rd -------------------------------------------------------------------------------- /man/figures/README-c2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-c2-1.png -------------------------------------------------------------------------------- /man/figures/README-c3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-c3-1.png -------------------------------------------------------------------------------- /man/figures/README-c4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-c4-1.png -------------------------------------------------------------------------------- /man/figures/README-c5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-c5-1.png -------------------------------------------------------------------------------- /man/figures/README-pressure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-pressure-1.png -------------------------------------------------------------------------------- /man/figures/README-t 15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-t 15-1.png -------------------------------------------------------------------------------- /man/figures/README-t1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-t1-1.png -------------------------------------------------------------------------------- /man/figures/README-t10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-t10-1.png -------------------------------------------------------------------------------- /man/figures/README-t11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-t11-1.png -------------------------------------------------------------------------------- /man/figures/README-t12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-t12-1.png -------------------------------------------------------------------------------- /man/figures/README-t3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-t3-1.png -------------------------------------------------------------------------------- /man/figures/README-t4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-t4-1.png -------------------------------------------------------------------------------- /man/figures/README-t5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-t5-1.png -------------------------------------------------------------------------------- /man/figures/README-t6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-t6-1.png -------------------------------------------------------------------------------- /man/figures/README-t7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-t7-1.png -------------------------------------------------------------------------------- /man/figures/README-t7_5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-t7_5-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-unnamed-chunk-2-2.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-unnamed-chunk-2-3.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-5-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-unnamed-chunk-5-2.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/README-unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/figures/plotly_example.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/figures/plotly_example.PNG -------------------------------------------------------------------------------- /man/flowmap_sf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/flowmap_sf.Rd -------------------------------------------------------------------------------- /man/flowmapper-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/flowmapper-package.Rd -------------------------------------------------------------------------------- /man/get_circle_coords.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/get_circle_coords.Rd -------------------------------------------------------------------------------- /man/hca_flowdat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/hca_flowdat.Rd -------------------------------------------------------------------------------- /man/prep_flowmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/prep_flowmap.Rd -------------------------------------------------------------------------------- /man/short_scale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/short_scale.Rd -------------------------------------------------------------------------------- /man/util_data_flow_to_flowdat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/flowmapper/HEAD/man/util_data_flow_to_flowdat.Rd --------------------------------------------------------------------------------