├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── calculate_dimensions.R ├── convert_color.R ├── create_bounding_box.R ├── create_geography.R ├── create_palette.R ├── create_theme.R ├── expand_bounding_box.R ├── get_bounding_box_ranges.R ├── list_member_states.R ├── make_map.R ├── make_template.R ├── prepare_plot_data.R ├── run_quietly.R ├── simulate_data.R └── sysdata.rda ├── README.md ├── examples ├── aspect-ratio-1.png ├── aspect-ratio-2.png ├── insets-1.png ├── insets-2.png ├── main-1.png ├── main-2.png ├── member-states-1.png ├── member-states-2.png ├── member-states-3.png ├── member-states-4.png ├── non-member-states-1.png ├── non-member-states-2.png ├── palette-1.png ├── palette-2.png ├── projection-1.png ├── quick-start.png ├── resolution-1.png ├── resolution-2.png ├── theme-1.png ├── theme-2.png ├── zoom-1.png └── zoom-2.png └── man ├── convert_color.Rd ├── create_geography.Rd ├── create_palette.Rd ├── create_theme.Rd ├── hello.Rd ├── list_member_states.Rd ├── make_map.Rd └── simulate_data.Rd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: Joshua C. Fjelstul, Ph.D. 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/calculate_dimensions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/R/calculate_dimensions.R -------------------------------------------------------------------------------- /R/convert_color.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/R/convert_color.R -------------------------------------------------------------------------------- /R/create_bounding_box.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/R/create_bounding_box.R -------------------------------------------------------------------------------- /R/create_geography.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/R/create_geography.R -------------------------------------------------------------------------------- /R/create_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/R/create_palette.R -------------------------------------------------------------------------------- /R/create_theme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/R/create_theme.R -------------------------------------------------------------------------------- /R/expand_bounding_box.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/R/expand_bounding_box.R -------------------------------------------------------------------------------- /R/get_bounding_box_ranges.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/R/get_bounding_box_ranges.R -------------------------------------------------------------------------------- /R/list_member_states.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/R/list_member_states.R -------------------------------------------------------------------------------- /R/make_map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/R/make_map.R -------------------------------------------------------------------------------- /R/make_template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/R/make_template.R -------------------------------------------------------------------------------- /R/prepare_plot_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/R/prepare_plot_data.R -------------------------------------------------------------------------------- /R/run_quietly.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/R/run_quietly.R -------------------------------------------------------------------------------- /R/simulate_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/R/simulate_data.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/README.md -------------------------------------------------------------------------------- /examples/aspect-ratio-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/aspect-ratio-1.png -------------------------------------------------------------------------------- /examples/aspect-ratio-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/aspect-ratio-2.png -------------------------------------------------------------------------------- /examples/insets-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/insets-1.png -------------------------------------------------------------------------------- /examples/insets-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/insets-2.png -------------------------------------------------------------------------------- /examples/main-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/main-1.png -------------------------------------------------------------------------------- /examples/main-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/main-2.png -------------------------------------------------------------------------------- /examples/member-states-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/member-states-1.png -------------------------------------------------------------------------------- /examples/member-states-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/member-states-2.png -------------------------------------------------------------------------------- /examples/member-states-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/member-states-3.png -------------------------------------------------------------------------------- /examples/member-states-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/member-states-4.png -------------------------------------------------------------------------------- /examples/non-member-states-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/non-member-states-1.png -------------------------------------------------------------------------------- /examples/non-member-states-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/non-member-states-2.png -------------------------------------------------------------------------------- /examples/palette-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/palette-1.png -------------------------------------------------------------------------------- /examples/palette-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/palette-2.png -------------------------------------------------------------------------------- /examples/projection-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/projection-1.png -------------------------------------------------------------------------------- /examples/quick-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/quick-start.png -------------------------------------------------------------------------------- /examples/resolution-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/resolution-1.png -------------------------------------------------------------------------------- /examples/resolution-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/resolution-2.png -------------------------------------------------------------------------------- /examples/theme-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/theme-1.png -------------------------------------------------------------------------------- /examples/theme-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/theme-2.png -------------------------------------------------------------------------------- /examples/zoom-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/zoom-1.png -------------------------------------------------------------------------------- /examples/zoom-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/examples/zoom-2.png -------------------------------------------------------------------------------- /man/convert_color.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/man/convert_color.Rd -------------------------------------------------------------------------------- /man/create_geography.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/man/create_geography.Rd -------------------------------------------------------------------------------- /man/create_palette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/man/create_palette.Rd -------------------------------------------------------------------------------- /man/create_theme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/man/create_theme.Rd -------------------------------------------------------------------------------- /man/hello.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/man/hello.Rd -------------------------------------------------------------------------------- /man/list_member_states.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/man/list_member_states.Rd -------------------------------------------------------------------------------- /man/make_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/man/make_map.Rd -------------------------------------------------------------------------------- /man/simulate_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfjelstul/eumaps/HEAD/man/simulate_data.Rd --------------------------------------------------------------------------------