├── .Rbuildignore ├── .covrignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── recheck.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── check_fix.R ├── data.R ├── docs.R ├── global-variables.R ├── messages.R ├── messages_deprecated.R ├── messages_v4_v3.R ├── misc_comp.R ├── misc_crs.R ├── misc_datetime.R ├── misc_from_mapview.R ├── misc_options.R ├── misc_other.R ├── misc_pointLabel.R ├── misc_stars.R ├── misc_symbols.R ├── misc_text.R ├── misc_trans_data.R ├── pkg.R ├── print.R ├── process_breaks.R ├── process_color.R ├── process_legend_format.R ├── process_meta.R ├── qtm.R ├── shapeTM.R ├── shiny.R ├── shp_functions.R ├── spatial_non_supported.R ├── spatial_raster.R ├── spatial_sf.R ├── spatial_sp.R ├── spatial_stars.R ├── spatial_terra.R ├── step1_helper_facets.R ├── step1_helper_meta.R ├── step1_rearrange.R ├── step2_data.R ├── step2_helper_data.R ├── step2_helper_facets.R ├── step3_trans.R ├── step4_helper_legends.R ├── step4_plot.R ├── submit_symbol.R ├── sysdata.rda ├── theme_ps.R ├── tm_add_legend.R ├── tm_animate.R ├── tm_chart.R ├── tm_component_functions.R ├── tm_components.R ├── tm_crs.R ├── tm_element.R ├── tm_facets.R ├── tm_group.R ├── tm_inset.R ├── tm_label_format.R ├── tm_layers_aux.R ├── tm_layers_iso.R ├── tm_layers_lines.R ├── tm_layers_polygons.R ├── tm_layers_raster.R ├── tm_layers_rgb.R ├── tm_layers_sf.R ├── tm_layers_symbols.R ├── tm_layers_text.R ├── tm_layout.R ├── tm_legend.R ├── tm_options.R ├── tm_plot_order.R ├── tm_pos.R ├── tm_scale_.R ├── tm_scale_bivariate.R ├── tm_shape.R ├── tm_vars.R ├── tm_xylab.R ├── tmapChart.R ├── tmapGpar.R ├── tmapGridArrange.R ├── tmapGridAux.R ├── tmapGridAux_grid.R ├── tmapGridAux_tiles.R ├── tmapGridComp.R ├── tmapGridComp_charts.R ├── tmapGridComp_funs.R ├── tmapGridComp_leg_landscape.R ├── tmapGridComp_leg_portrait.R ├── tmapGridDataPlot.R ├── tmapGridDataPlot_lines.R ├── tmapGridDataPlot_polygons.R ├── tmapGridDataPlot_raster.R ├── tmapGridDataPlot_symbols.R ├── tmapGridDataPlot_text.R ├── tmapGridInit.R ├── tmapGridProviders.R ├── tmapGridRun.R ├── tmapGridShape.R ├── tmapGridWrap.R ├── tmapGridXYlab.R ├── tmapGrid_misc.R ├── tmapLeaflet.R ├── tmapLeafletArrange.R ├── tmapLeafletAux.R ├── tmapLeafletComp.R ├── tmapLeafletComp_funs.R ├── tmapLeafletComp_leg_portrait.R ├── tmapLeafletDataPlot_lines.R ├── tmapLeafletDataPlot_polygons.R ├── tmapLeafletDataPlot_raster.R ├── tmapLeafletDataPlot_symbols.R ├── tmapLeafletDataPlot_text.R ├── tmapLeafletInit.R ├── tmapLeafletProviders.R ├── tmapLeafletRun.R ├── tmapLeafletShape.R ├── tmapLeafletShiny.R ├── tmapLeafletXYlab.R ├── tmapLeaflet_layers.R ├── tmapOnLoad.R ├── tmapScaleAsIs.R ├── tmapScaleBivariate.R ├── tmapScaleCategorical.R ├── tmapScaleContinuous.R ├── tmapScaleDiscrete.R ├── tmapScaleIntervals.R ├── tmapScaleRGB.R ├── tmapScaleRank.R ├── tmapScale_.R ├── tmapScale_defaults.R ├── tmapScale_misc.R ├── tmapShape.R ├── tmapShape_misc.R ├── tmapShape_simplification.R ├── tmapSplitShp.R ├── tmapTrans.R ├── tmap_animation.R ├── tmap_arrange.R ├── tmap_export.R ├── tmap_format.R ├── tmap_icons.R ├── tmap_mode.R ├── tmap_options.R ├── tmap_options_defaults.R ├── tmap_overview.R ├── tmap_palettes.R ├── tmap_providers.R ├── tmap_save.R ├── tmap_style.R ├── tmap_style_catalogue.R ├── tmap_tip.R ├── tme_graphics.R ├── view_format_popups.R └── view_functions.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── data-raw ├── NLD.R ├── World.R ├── World_rivers.R ├── compass_png.R ├── land.R ├── metro.R └── sysdata.R ├── data ├── NLD_dist.rda ├── NLD_muni.rda ├── NLD_prov.rda ├── World.rda ├── World_rivers.rda ├── land.rda └── metro.rda ├── examples ├── qtm.R ├── tm_add_legend.R ├── tm_animate.R ├── tm_basemap.R ├── tm_chart.R ├── tm_compass.R ├── tm_credits.R ├── tm_crs.R ├── tm_facets.R ├── tm_grid.R ├── tm_inset.R ├── tm_layout.R ├── tm_legend.R ├── tm_lines.R ├── tm_logo.R ├── tm_polygons.R ├── tm_raster.R ├── tm_rgb.R ├── tm_scale_continuous.R ├── tm_scale_rgb.R ├── tm_sf.R ├── tm_shape.R ├── tm_symbols.R ├── tm_text.R ├── tmapOutput.R ├── tmap_animation.R ├── tmap_arrange.R ├── tmap_mode.R ├── tmap_options.R ├── tmap_save.R └── tmap_style.R ├── inst ├── CITATION ├── ieee.csl ├── img │ ├── airplane.png │ ├── city.png │ ├── compass_4star.png │ ├── compass_8star.png │ ├── compass_arrow.png │ ├── compass_radar.png │ └── compass_rose.png └── tmap.bib ├── man ├── Netherlands.Rd ├── World.Rd ├── World_rivers.Rd ├── figures │ ├── README-unnamed-chunk-3-1.png │ ├── README-unnamed-chunk-4-1.png │ ├── README-unnamed-chunk-5-1.png │ ├── logo.png │ ├── shiny_plot.jpg │ └── shiny_view.jpg ├── get_fact_levels_na.Rd ├── get_scale_defaults.Rd ├── land.Rd ├── make_by_vars.Rd ├── metro.Rd ├── print.tm_element.Rd ├── print.tmap.Rd ├── qtm.Rd ├── renderTmap.Rd ├── shapeTM.Rd ├── theme_ps.Rd ├── tm_add_legend.Rd ├── tm_animate.Rd ├── tm_basemap.Rd ├── tm_chart.Rd ├── tm_compass.Rd ├── tm_components.Rd ├── tm_const.Rd ├── tm_credits.Rd ├── tm_crs.Rd ├── tm_extra_innner_margin.Rd ├── tm_facets.Rd ├── tm_grid.Rd ├── tm_group.Rd ├── tm_inset.Rd ├── tm_iso.Rd ├── tm_label_format.Rd ├── tm_layout.Rd ├── tm_legend.Rd ├── tm_lines.Rd ├── tm_logo.Rd ├── tm_minimap.Rd ├── tm_mouse_coordinates.Rd ├── tm_options.Rd ├── tm_plot.Rd ├── tm_plot_order.Rd ├── tm_polygons.Rd ├── tm_pos.Rd ├── tm_raster.Rd ├── tm_rgb.Rd ├── tm_scale.Rd ├── tm_scale_asis.Rd ├── tm_scale_bar.Rd ├── tm_scale_bivariate.Rd ├── tm_scale_categorical.Rd ├── tm_scale_continuous.Rd ├── tm_scale_discrete.Rd ├── tm_scale_intervals.Rd ├── tm_scale_rank.Rd ├── tm_scale_rgb.Rd ├── tm_scalebar.Rd ├── tm_seq.Rd ├── tm_sf.Rd ├── tm_shape.Rd ├── tm_symbols.Rd ├── tm_text.Rd ├── tm_title.Rd ├── tm_vars.Rd ├── tm_view.Rd ├── tm_xlab.Rd ├── tmap-deprecated.Rd ├── tmap-element.Rd ├── tmap-package.Rd ├── tmapAddLayerOptions.Rd ├── tmapGetShapeMeta1.Rd ├── tmapGetShapeMeta2.Rd ├── tmapGridLeaflet.Rd ├── tmapMode.Rd ├── tmapShape.Rd ├── tmapSplitShp.Rd ├── tmapSubmitOptions.Rd ├── tmapSubsetShp.Rd ├── tmap_animation.Rd ├── tmap_arrange.Rd ├── tmap_design_mode.Rd ├── tmap_devel_mode.Rd ├── tmap_icons.Rd ├── tmap_internal.Rd ├── tmap_last.Rd ├── tmap_leaflet.Rd ├── tmap_mode.Rd ├── tmap_options.Rd ├── tmap_overview.Rd ├── tmap_providers.Rd ├── tmap_save.Rd ├── tmap_style.Rd ├── tmap_style_catalogue.Rd └── tmap_tip.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── sandbox ├── color_blind_check.R ├── grid_design.R ├── grid_design.svg ├── issues.R ├── issues2.R ├── leaflegend.R ├── load_test_data.R ├── main.R ├── main2.R ├── palette_selection.R ├── palette_selection_old.R ├── test_data.R ├── test_grid.R ├── test_legend.R ├── test_scaling.qmd ├── testing_tmapVars.R ├── tests.R ├── todo-list.txt └── vv2.R ├── tests ├── helper_functions │ ├── facet_test_functions.R │ └── manual_traceback.R ├── testing_aux_layers.Rmd ├── testing_facet_vars.Rmd ├── testing_facetting.Rmd ├── testing_legends.Rmd ├── testing_panels.Rmd ├── testing_scales.Rmd ├── testing_stars.Rmd ├── testthat.R └── testthat │ ├── _snaps │ └── terra-stars.md │ ├── test-terra-stars.R │ ├── test-tm_components.R │ ├── test-tm_layers_aux.R │ ├── test-tm_layers_polygons.R │ ├── test-tm_lines.R │ ├── test-tm_scale.R │ ├── test-tmap_mode.R │ └── test-v3.R ├── tmap.Rproj └── vignettes ├── .gitignore ├── adv_animations.Rmd ├── adv_comp_group.Rmd ├── adv_extensions.Rmd ├── adv_ggplot2.Rmd ├── adv_groups.Rmd ├── adv_inset_maps.Rmd ├── adv_legends.Rmd ├── adv_margins.Rmd ├── adv_multivariate.Rmd ├── adv_options.Rmd ├── adv_positions.Rmd ├── adv_shiny.Rmd ├── basics_basemaps.Rmd ├── basics_charts.Rmd ├── basics_components.Rmd ├── basics_exporting.Rmd ├── basics_facets.Rmd ├── basics_layout.Rmd ├── basics_legends.Rmd ├── basics_modes.Rmd ├── basics_scales.Rmd ├── basics_vv.Rmd ├── examples_biv_choro.Rmd ├── examples_bubble.Rmd ├── examples_choro_NLD.Rmd ├── examples_choro_World.Rmd ├── examples_gridmaps.Rmd ├── examples_raster.Rmd ├── examples_terrain.Rmd ├── examples_topo_Africa.Rmd ├── ext_cartogram.Rmd ├── ext_glyphs.Rmd ├── ext_mapgl.Rmd ├── ext_networks.Rmd ├── figures ├── shiny_plot.png └── shiny_view.png ├── foundations_crs.Rmd ├── foundations_gg.Rmd ├── versus_ggplot2.Rmd ├── versus_mapsf.Rmd └── versus_mapview.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.covrignore: -------------------------------------------------------------------------------- 1 | onLoad.R 2 | docs.R 3 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/recheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/.github/workflows/recheck.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/check_fix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/check_fix.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/data.R -------------------------------------------------------------------------------- /R/docs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/docs.R -------------------------------------------------------------------------------- /R/global-variables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/global-variables.R -------------------------------------------------------------------------------- /R/messages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/messages.R -------------------------------------------------------------------------------- /R/messages_deprecated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/messages_deprecated.R -------------------------------------------------------------------------------- /R/messages_v4_v3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/messages_v4_v3.R -------------------------------------------------------------------------------- /R/misc_comp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/misc_comp.R -------------------------------------------------------------------------------- /R/misc_crs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/misc_crs.R -------------------------------------------------------------------------------- /R/misc_datetime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/misc_datetime.R -------------------------------------------------------------------------------- /R/misc_from_mapview.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/misc_from_mapview.R -------------------------------------------------------------------------------- /R/misc_options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/misc_options.R -------------------------------------------------------------------------------- /R/misc_other.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/misc_other.R -------------------------------------------------------------------------------- /R/misc_pointLabel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/misc_pointLabel.R -------------------------------------------------------------------------------- /R/misc_stars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/misc_stars.R -------------------------------------------------------------------------------- /R/misc_symbols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/misc_symbols.R -------------------------------------------------------------------------------- /R/misc_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/misc_text.R -------------------------------------------------------------------------------- /R/misc_trans_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/misc_trans_data.R -------------------------------------------------------------------------------- /R/pkg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/pkg.R -------------------------------------------------------------------------------- /R/print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/print.R -------------------------------------------------------------------------------- /R/process_breaks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/process_breaks.R -------------------------------------------------------------------------------- /R/process_color.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/process_color.R -------------------------------------------------------------------------------- /R/process_legend_format.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/process_legend_format.R -------------------------------------------------------------------------------- /R/process_meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/process_meta.R -------------------------------------------------------------------------------- /R/qtm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/qtm.R -------------------------------------------------------------------------------- /R/shapeTM.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/shapeTM.R -------------------------------------------------------------------------------- /R/shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/shiny.R -------------------------------------------------------------------------------- /R/shp_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/shp_functions.R -------------------------------------------------------------------------------- /R/spatial_non_supported.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/spatial_non_supported.R -------------------------------------------------------------------------------- /R/spatial_raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/spatial_raster.R -------------------------------------------------------------------------------- /R/spatial_sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/spatial_sf.R -------------------------------------------------------------------------------- /R/spatial_sp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/spatial_sp.R -------------------------------------------------------------------------------- /R/spatial_stars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/spatial_stars.R -------------------------------------------------------------------------------- /R/spatial_terra.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/spatial_terra.R -------------------------------------------------------------------------------- /R/step1_helper_facets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/step1_helper_facets.R -------------------------------------------------------------------------------- /R/step1_helper_meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/step1_helper_meta.R -------------------------------------------------------------------------------- /R/step1_rearrange.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/step1_rearrange.R -------------------------------------------------------------------------------- /R/step2_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/step2_data.R -------------------------------------------------------------------------------- /R/step2_helper_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/step2_helper_data.R -------------------------------------------------------------------------------- /R/step2_helper_facets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/step2_helper_facets.R -------------------------------------------------------------------------------- /R/step3_trans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/step3_trans.R -------------------------------------------------------------------------------- /R/step4_helper_legends.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/step4_helper_legends.R -------------------------------------------------------------------------------- /R/step4_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/step4_plot.R -------------------------------------------------------------------------------- /R/submit_symbol.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/submit_symbol.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/theme_ps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/theme_ps.R -------------------------------------------------------------------------------- /R/tm_add_legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_add_legend.R -------------------------------------------------------------------------------- /R/tm_animate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_animate.R -------------------------------------------------------------------------------- /R/tm_chart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_chart.R -------------------------------------------------------------------------------- /R/tm_component_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_component_functions.R -------------------------------------------------------------------------------- /R/tm_components.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_components.R -------------------------------------------------------------------------------- /R/tm_crs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_crs.R -------------------------------------------------------------------------------- /R/tm_element.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_element.R -------------------------------------------------------------------------------- /R/tm_facets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_facets.R -------------------------------------------------------------------------------- /R/tm_group.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_group.R -------------------------------------------------------------------------------- /R/tm_inset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_inset.R -------------------------------------------------------------------------------- /R/tm_label_format.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_label_format.R -------------------------------------------------------------------------------- /R/tm_layers_aux.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_layers_aux.R -------------------------------------------------------------------------------- /R/tm_layers_iso.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_layers_iso.R -------------------------------------------------------------------------------- /R/tm_layers_lines.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_layers_lines.R -------------------------------------------------------------------------------- /R/tm_layers_polygons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_layers_polygons.R -------------------------------------------------------------------------------- /R/tm_layers_raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_layers_raster.R -------------------------------------------------------------------------------- /R/tm_layers_rgb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_layers_rgb.R -------------------------------------------------------------------------------- /R/tm_layers_sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_layers_sf.R -------------------------------------------------------------------------------- /R/tm_layers_symbols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_layers_symbols.R -------------------------------------------------------------------------------- /R/tm_layers_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_layers_text.R -------------------------------------------------------------------------------- /R/tm_layout.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_layout.R -------------------------------------------------------------------------------- /R/tm_legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_legend.R -------------------------------------------------------------------------------- /R/tm_options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_options.R -------------------------------------------------------------------------------- /R/tm_plot_order.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_plot_order.R -------------------------------------------------------------------------------- /R/tm_pos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_pos.R -------------------------------------------------------------------------------- /R/tm_scale_.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_scale_.R -------------------------------------------------------------------------------- /R/tm_scale_bivariate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_scale_bivariate.R -------------------------------------------------------------------------------- /R/tm_shape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_shape.R -------------------------------------------------------------------------------- /R/tm_vars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_vars.R -------------------------------------------------------------------------------- /R/tm_xylab.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tm_xylab.R -------------------------------------------------------------------------------- /R/tmapChart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapChart.R -------------------------------------------------------------------------------- /R/tmapGpar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGpar.R -------------------------------------------------------------------------------- /R/tmapGridArrange.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridArrange.R -------------------------------------------------------------------------------- /R/tmapGridAux.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridAux.R -------------------------------------------------------------------------------- /R/tmapGridAux_grid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridAux_grid.R -------------------------------------------------------------------------------- /R/tmapGridAux_tiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridAux_tiles.R -------------------------------------------------------------------------------- /R/tmapGridComp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridComp.R -------------------------------------------------------------------------------- /R/tmapGridComp_charts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridComp_charts.R -------------------------------------------------------------------------------- /R/tmapGridComp_funs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridComp_funs.R -------------------------------------------------------------------------------- /R/tmapGridComp_leg_landscape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridComp_leg_landscape.R -------------------------------------------------------------------------------- /R/tmapGridComp_leg_portrait.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridComp_leg_portrait.R -------------------------------------------------------------------------------- /R/tmapGridDataPlot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridDataPlot.R -------------------------------------------------------------------------------- /R/tmapGridDataPlot_lines.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridDataPlot_lines.R -------------------------------------------------------------------------------- /R/tmapGridDataPlot_polygons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridDataPlot_polygons.R -------------------------------------------------------------------------------- /R/tmapGridDataPlot_raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridDataPlot_raster.R -------------------------------------------------------------------------------- /R/tmapGridDataPlot_symbols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridDataPlot_symbols.R -------------------------------------------------------------------------------- /R/tmapGridDataPlot_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridDataPlot_text.R -------------------------------------------------------------------------------- /R/tmapGridInit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridInit.R -------------------------------------------------------------------------------- /R/tmapGridProviders.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridProviders.R -------------------------------------------------------------------------------- /R/tmapGridRun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridRun.R -------------------------------------------------------------------------------- /R/tmapGridShape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridShape.R -------------------------------------------------------------------------------- /R/tmapGridWrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridWrap.R -------------------------------------------------------------------------------- /R/tmapGridXYlab.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGridXYlab.R -------------------------------------------------------------------------------- /R/tmapGrid_misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapGrid_misc.R -------------------------------------------------------------------------------- /R/tmapLeaflet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeaflet.R -------------------------------------------------------------------------------- /R/tmapLeafletArrange.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletArrange.R -------------------------------------------------------------------------------- /R/tmapLeafletAux.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletAux.R -------------------------------------------------------------------------------- /R/tmapLeafletComp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletComp.R -------------------------------------------------------------------------------- /R/tmapLeafletComp_funs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletComp_funs.R -------------------------------------------------------------------------------- /R/tmapLeafletComp_leg_portrait.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletComp_leg_portrait.R -------------------------------------------------------------------------------- /R/tmapLeafletDataPlot_lines.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletDataPlot_lines.R -------------------------------------------------------------------------------- /R/tmapLeafletDataPlot_polygons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletDataPlot_polygons.R -------------------------------------------------------------------------------- /R/tmapLeafletDataPlot_raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletDataPlot_raster.R -------------------------------------------------------------------------------- /R/tmapLeafletDataPlot_symbols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletDataPlot_symbols.R -------------------------------------------------------------------------------- /R/tmapLeafletDataPlot_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletDataPlot_text.R -------------------------------------------------------------------------------- /R/tmapLeafletInit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletInit.R -------------------------------------------------------------------------------- /R/tmapLeafletProviders.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletProviders.R -------------------------------------------------------------------------------- /R/tmapLeafletRun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletRun.R -------------------------------------------------------------------------------- /R/tmapLeafletShape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletShape.R -------------------------------------------------------------------------------- /R/tmapLeafletShiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletShiny.R -------------------------------------------------------------------------------- /R/tmapLeafletXYlab.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeafletXYlab.R -------------------------------------------------------------------------------- /R/tmapLeaflet_layers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapLeaflet_layers.R -------------------------------------------------------------------------------- /R/tmapOnLoad.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapOnLoad.R -------------------------------------------------------------------------------- /R/tmapScaleAsIs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapScaleAsIs.R -------------------------------------------------------------------------------- /R/tmapScaleBivariate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapScaleBivariate.R -------------------------------------------------------------------------------- /R/tmapScaleCategorical.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapScaleCategorical.R -------------------------------------------------------------------------------- /R/tmapScaleContinuous.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapScaleContinuous.R -------------------------------------------------------------------------------- /R/tmapScaleDiscrete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapScaleDiscrete.R -------------------------------------------------------------------------------- /R/tmapScaleIntervals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapScaleIntervals.R -------------------------------------------------------------------------------- /R/tmapScaleRGB.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapScaleRGB.R -------------------------------------------------------------------------------- /R/tmapScaleRank.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapScaleRank.R -------------------------------------------------------------------------------- /R/tmapScale_.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapScale_.R -------------------------------------------------------------------------------- /R/tmapScale_defaults.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapScale_defaults.R -------------------------------------------------------------------------------- /R/tmapScale_misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapScale_misc.R -------------------------------------------------------------------------------- /R/tmapShape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapShape.R -------------------------------------------------------------------------------- /R/tmapShape_misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapShape_misc.R -------------------------------------------------------------------------------- /R/tmapShape_simplification.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapShape_simplification.R -------------------------------------------------------------------------------- /R/tmapSplitShp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapSplitShp.R -------------------------------------------------------------------------------- /R/tmapTrans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmapTrans.R -------------------------------------------------------------------------------- /R/tmap_animation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmap_animation.R -------------------------------------------------------------------------------- /R/tmap_arrange.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmap_arrange.R -------------------------------------------------------------------------------- /R/tmap_export.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmap_export.R -------------------------------------------------------------------------------- /R/tmap_format.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmap_format.R -------------------------------------------------------------------------------- /R/tmap_icons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmap_icons.R -------------------------------------------------------------------------------- /R/tmap_mode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmap_mode.R -------------------------------------------------------------------------------- /R/tmap_options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmap_options.R -------------------------------------------------------------------------------- /R/tmap_options_defaults.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmap_options_defaults.R -------------------------------------------------------------------------------- /R/tmap_overview.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmap_overview.R -------------------------------------------------------------------------------- /R/tmap_palettes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmap_palettes.R -------------------------------------------------------------------------------- /R/tmap_providers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmap_providers.R -------------------------------------------------------------------------------- /R/tmap_save.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmap_save.R -------------------------------------------------------------------------------- /R/tmap_style.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmap_style.R -------------------------------------------------------------------------------- /R/tmap_style_catalogue.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmap_style_catalogue.R -------------------------------------------------------------------------------- /R/tmap_tip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tmap_tip.R -------------------------------------------------------------------------------- /R/tme_graphics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/tme_graphics.R -------------------------------------------------------------------------------- /R/view_format_popups.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/view_format_popups.R -------------------------------------------------------------------------------- /R/view_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/R/view_functions.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/NLD.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/data-raw/NLD.R -------------------------------------------------------------------------------- /data-raw/World.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/data-raw/World.R -------------------------------------------------------------------------------- /data-raw/World_rivers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/data-raw/World_rivers.R -------------------------------------------------------------------------------- /data-raw/compass_png.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/data-raw/compass_png.R -------------------------------------------------------------------------------- /data-raw/land.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/data-raw/land.R -------------------------------------------------------------------------------- /data-raw/metro.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/data-raw/metro.R -------------------------------------------------------------------------------- /data-raw/sysdata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/data-raw/sysdata.R -------------------------------------------------------------------------------- /data/NLD_dist.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/data/NLD_dist.rda -------------------------------------------------------------------------------- /data/NLD_muni.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/data/NLD_muni.rda -------------------------------------------------------------------------------- /data/NLD_prov.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/data/NLD_prov.rda -------------------------------------------------------------------------------- /data/World.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/data/World.rda -------------------------------------------------------------------------------- /data/World_rivers.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/data/World_rivers.rda -------------------------------------------------------------------------------- /data/land.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/data/land.rda -------------------------------------------------------------------------------- /data/metro.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/data/metro.rda -------------------------------------------------------------------------------- /examples/qtm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/qtm.R -------------------------------------------------------------------------------- /examples/tm_add_legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_add_legend.R -------------------------------------------------------------------------------- /examples/tm_animate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_animate.R -------------------------------------------------------------------------------- /examples/tm_basemap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_basemap.R -------------------------------------------------------------------------------- /examples/tm_chart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_chart.R -------------------------------------------------------------------------------- /examples/tm_compass.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_compass.R -------------------------------------------------------------------------------- /examples/tm_credits.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_credits.R -------------------------------------------------------------------------------- /examples/tm_crs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_crs.R -------------------------------------------------------------------------------- /examples/tm_facets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_facets.R -------------------------------------------------------------------------------- /examples/tm_grid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_grid.R -------------------------------------------------------------------------------- /examples/tm_inset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_inset.R -------------------------------------------------------------------------------- /examples/tm_layout.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_layout.R -------------------------------------------------------------------------------- /examples/tm_legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_legend.R -------------------------------------------------------------------------------- /examples/tm_lines.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_lines.R -------------------------------------------------------------------------------- /examples/tm_logo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_logo.R -------------------------------------------------------------------------------- /examples/tm_polygons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_polygons.R -------------------------------------------------------------------------------- /examples/tm_raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_raster.R -------------------------------------------------------------------------------- /examples/tm_rgb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_rgb.R -------------------------------------------------------------------------------- /examples/tm_scale_continuous.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_scale_continuous.R -------------------------------------------------------------------------------- /examples/tm_scale_rgb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_scale_rgb.R -------------------------------------------------------------------------------- /examples/tm_sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_sf.R -------------------------------------------------------------------------------- /examples/tm_shape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_shape.R -------------------------------------------------------------------------------- /examples/tm_symbols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_symbols.R -------------------------------------------------------------------------------- /examples/tm_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tm_text.R -------------------------------------------------------------------------------- /examples/tmapOutput.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tmapOutput.R -------------------------------------------------------------------------------- /examples/tmap_animation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tmap_animation.R -------------------------------------------------------------------------------- /examples/tmap_arrange.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tmap_arrange.R -------------------------------------------------------------------------------- /examples/tmap_mode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tmap_mode.R -------------------------------------------------------------------------------- /examples/tmap_options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tmap_options.R -------------------------------------------------------------------------------- /examples/tmap_save.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tmap_save.R -------------------------------------------------------------------------------- /examples/tmap_style.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/examples/tmap_style.R -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/ieee.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/inst/ieee.csl -------------------------------------------------------------------------------- /inst/img/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/inst/img/airplane.png -------------------------------------------------------------------------------- /inst/img/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/inst/img/city.png -------------------------------------------------------------------------------- /inst/img/compass_4star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/inst/img/compass_4star.png -------------------------------------------------------------------------------- /inst/img/compass_8star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/inst/img/compass_8star.png -------------------------------------------------------------------------------- /inst/img/compass_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/inst/img/compass_arrow.png -------------------------------------------------------------------------------- /inst/img/compass_radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/inst/img/compass_radar.png -------------------------------------------------------------------------------- /inst/img/compass_rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/inst/img/compass_rose.png -------------------------------------------------------------------------------- /inst/tmap.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/inst/tmap.bib -------------------------------------------------------------------------------- /man/Netherlands.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/Netherlands.Rd -------------------------------------------------------------------------------- /man/World.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/World.Rd -------------------------------------------------------------------------------- /man/World_rivers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/World_rivers.Rd -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/figures/README-unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/figures/README-unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/figures/README-unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/shiny_plot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/figures/shiny_plot.jpg -------------------------------------------------------------------------------- /man/figures/shiny_view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/figures/shiny_view.jpg -------------------------------------------------------------------------------- /man/get_fact_levels_na.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/get_fact_levels_na.Rd -------------------------------------------------------------------------------- /man/get_scale_defaults.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/get_scale_defaults.Rd -------------------------------------------------------------------------------- /man/land.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/land.Rd -------------------------------------------------------------------------------- /man/make_by_vars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/make_by_vars.Rd -------------------------------------------------------------------------------- /man/metro.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/metro.Rd -------------------------------------------------------------------------------- /man/print.tm_element.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/print.tm_element.Rd -------------------------------------------------------------------------------- /man/print.tmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/print.tmap.Rd -------------------------------------------------------------------------------- /man/qtm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/qtm.Rd -------------------------------------------------------------------------------- /man/renderTmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/renderTmap.Rd -------------------------------------------------------------------------------- /man/shapeTM.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/shapeTM.Rd -------------------------------------------------------------------------------- /man/theme_ps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/theme_ps.Rd -------------------------------------------------------------------------------- /man/tm_add_legend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_add_legend.Rd -------------------------------------------------------------------------------- /man/tm_animate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_animate.Rd -------------------------------------------------------------------------------- /man/tm_basemap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_basemap.Rd -------------------------------------------------------------------------------- /man/tm_chart.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_chart.Rd -------------------------------------------------------------------------------- /man/tm_compass.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_compass.Rd -------------------------------------------------------------------------------- /man/tm_components.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_components.Rd -------------------------------------------------------------------------------- /man/tm_const.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_const.Rd -------------------------------------------------------------------------------- /man/tm_credits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_credits.Rd -------------------------------------------------------------------------------- /man/tm_crs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_crs.Rd -------------------------------------------------------------------------------- /man/tm_extra_innner_margin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_extra_innner_margin.Rd -------------------------------------------------------------------------------- /man/tm_facets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_facets.Rd -------------------------------------------------------------------------------- /man/tm_grid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_grid.Rd -------------------------------------------------------------------------------- /man/tm_group.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_group.Rd -------------------------------------------------------------------------------- /man/tm_inset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_inset.Rd -------------------------------------------------------------------------------- /man/tm_iso.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_iso.Rd -------------------------------------------------------------------------------- /man/tm_label_format.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_label_format.Rd -------------------------------------------------------------------------------- /man/tm_layout.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_layout.Rd -------------------------------------------------------------------------------- /man/tm_legend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_legend.Rd -------------------------------------------------------------------------------- /man/tm_lines.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_lines.Rd -------------------------------------------------------------------------------- /man/tm_logo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_logo.Rd -------------------------------------------------------------------------------- /man/tm_minimap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_minimap.Rd -------------------------------------------------------------------------------- /man/tm_mouse_coordinates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_mouse_coordinates.Rd -------------------------------------------------------------------------------- /man/tm_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_options.Rd -------------------------------------------------------------------------------- /man/tm_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_plot.Rd -------------------------------------------------------------------------------- /man/tm_plot_order.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_plot_order.Rd -------------------------------------------------------------------------------- /man/tm_polygons.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_polygons.Rd -------------------------------------------------------------------------------- /man/tm_pos.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_pos.Rd -------------------------------------------------------------------------------- /man/tm_raster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_raster.Rd -------------------------------------------------------------------------------- /man/tm_rgb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_rgb.Rd -------------------------------------------------------------------------------- /man/tm_scale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_scale.Rd -------------------------------------------------------------------------------- /man/tm_scale_asis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_scale_asis.Rd -------------------------------------------------------------------------------- /man/tm_scale_bar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_scale_bar.Rd -------------------------------------------------------------------------------- /man/tm_scale_bivariate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_scale_bivariate.Rd -------------------------------------------------------------------------------- /man/tm_scale_categorical.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_scale_categorical.Rd -------------------------------------------------------------------------------- /man/tm_scale_continuous.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_scale_continuous.Rd -------------------------------------------------------------------------------- /man/tm_scale_discrete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_scale_discrete.Rd -------------------------------------------------------------------------------- /man/tm_scale_intervals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_scale_intervals.Rd -------------------------------------------------------------------------------- /man/tm_scale_rank.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_scale_rank.Rd -------------------------------------------------------------------------------- /man/tm_scale_rgb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_scale_rgb.Rd -------------------------------------------------------------------------------- /man/tm_scalebar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_scalebar.Rd -------------------------------------------------------------------------------- /man/tm_seq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_seq.Rd -------------------------------------------------------------------------------- /man/tm_sf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_sf.Rd -------------------------------------------------------------------------------- /man/tm_shape.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_shape.Rd -------------------------------------------------------------------------------- /man/tm_symbols.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_symbols.Rd -------------------------------------------------------------------------------- /man/tm_text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_text.Rd -------------------------------------------------------------------------------- /man/tm_title.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_title.Rd -------------------------------------------------------------------------------- /man/tm_vars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_vars.Rd -------------------------------------------------------------------------------- /man/tm_view.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_view.Rd -------------------------------------------------------------------------------- /man/tm_xlab.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tm_xlab.Rd -------------------------------------------------------------------------------- /man/tmap-deprecated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap-deprecated.Rd -------------------------------------------------------------------------------- /man/tmap-element.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap-element.Rd -------------------------------------------------------------------------------- /man/tmap-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap-package.Rd -------------------------------------------------------------------------------- /man/tmapAddLayerOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmapAddLayerOptions.Rd -------------------------------------------------------------------------------- /man/tmapGetShapeMeta1.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmapGetShapeMeta1.Rd -------------------------------------------------------------------------------- /man/tmapGetShapeMeta2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmapGetShapeMeta2.Rd -------------------------------------------------------------------------------- /man/tmapGridLeaflet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmapGridLeaflet.Rd -------------------------------------------------------------------------------- /man/tmapMode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmapMode.Rd -------------------------------------------------------------------------------- /man/tmapShape.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmapShape.Rd -------------------------------------------------------------------------------- /man/tmapSplitShp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmapSplitShp.Rd -------------------------------------------------------------------------------- /man/tmapSubmitOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmapSubmitOptions.Rd -------------------------------------------------------------------------------- /man/tmapSubsetShp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmapSubsetShp.Rd -------------------------------------------------------------------------------- /man/tmap_animation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_animation.Rd -------------------------------------------------------------------------------- /man/tmap_arrange.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_arrange.Rd -------------------------------------------------------------------------------- /man/tmap_design_mode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_design_mode.Rd -------------------------------------------------------------------------------- /man/tmap_devel_mode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_devel_mode.Rd -------------------------------------------------------------------------------- /man/tmap_icons.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_icons.Rd -------------------------------------------------------------------------------- /man/tmap_internal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_internal.Rd -------------------------------------------------------------------------------- /man/tmap_last.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_last.Rd -------------------------------------------------------------------------------- /man/tmap_leaflet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_leaflet.Rd -------------------------------------------------------------------------------- /man/tmap_mode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_mode.Rd -------------------------------------------------------------------------------- /man/tmap_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_options.Rd -------------------------------------------------------------------------------- /man/tmap_overview.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_overview.Rd -------------------------------------------------------------------------------- /man/tmap_providers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_providers.Rd -------------------------------------------------------------------------------- /man/tmap_save.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_save.Rd -------------------------------------------------------------------------------- /man/tmap_style.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_style.Rd -------------------------------------------------------------------------------- /man/tmap_style_catalogue.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_style_catalogue.Rd -------------------------------------------------------------------------------- /man/tmap_tip.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/man/tmap_tip.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /sandbox/color_blind_check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/color_blind_check.R -------------------------------------------------------------------------------- /sandbox/grid_design.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/grid_design.R -------------------------------------------------------------------------------- /sandbox/grid_design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/grid_design.svg -------------------------------------------------------------------------------- /sandbox/issues.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/issues.R -------------------------------------------------------------------------------- /sandbox/issues2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/issues2.R -------------------------------------------------------------------------------- /sandbox/leaflegend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/leaflegend.R -------------------------------------------------------------------------------- /sandbox/load_test_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/load_test_data.R -------------------------------------------------------------------------------- /sandbox/main.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/main.R -------------------------------------------------------------------------------- /sandbox/main2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/main2.R -------------------------------------------------------------------------------- /sandbox/palette_selection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/palette_selection.R -------------------------------------------------------------------------------- /sandbox/palette_selection_old.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/palette_selection_old.R -------------------------------------------------------------------------------- /sandbox/test_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/test_data.R -------------------------------------------------------------------------------- /sandbox/test_grid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/test_grid.R -------------------------------------------------------------------------------- /sandbox/test_legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/test_legend.R -------------------------------------------------------------------------------- /sandbox/test_scaling.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/test_scaling.qmd -------------------------------------------------------------------------------- /sandbox/testing_tmapVars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/testing_tmapVars.R -------------------------------------------------------------------------------- /sandbox/tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/tests.R -------------------------------------------------------------------------------- /sandbox/todo-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/todo-list.txt -------------------------------------------------------------------------------- /sandbox/vv2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/sandbox/vv2.R -------------------------------------------------------------------------------- /tests/helper_functions/facet_test_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/helper_functions/facet_test_functions.R -------------------------------------------------------------------------------- /tests/helper_functions/manual_traceback.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/helper_functions/manual_traceback.R -------------------------------------------------------------------------------- /tests/testing_aux_layers.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testing_aux_layers.Rmd -------------------------------------------------------------------------------- /tests/testing_facet_vars.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testing_facet_vars.Rmd -------------------------------------------------------------------------------- /tests/testing_facetting.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testing_facetting.Rmd -------------------------------------------------------------------------------- /tests/testing_legends.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testing_legends.Rmd -------------------------------------------------------------------------------- /tests/testing_panels.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testing_panels.Rmd -------------------------------------------------------------------------------- /tests/testing_scales.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testing_scales.Rmd -------------------------------------------------------------------------------- /tests/testing_stars.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testing_stars.Rmd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/terra-stars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testthat/_snaps/terra-stars.md -------------------------------------------------------------------------------- /tests/testthat/test-terra-stars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testthat/test-terra-stars.R -------------------------------------------------------------------------------- /tests/testthat/test-tm_components.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testthat/test-tm_components.R -------------------------------------------------------------------------------- /tests/testthat/test-tm_layers_aux.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testthat/test-tm_layers_aux.R -------------------------------------------------------------------------------- /tests/testthat/test-tm_layers_polygons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testthat/test-tm_layers_polygons.R -------------------------------------------------------------------------------- /tests/testthat/test-tm_lines.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testthat/test-tm_lines.R -------------------------------------------------------------------------------- /tests/testthat/test-tm_scale.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testthat/test-tm_scale.R -------------------------------------------------------------------------------- /tests/testthat/test-tmap_mode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testthat/test-tmap_mode.R -------------------------------------------------------------------------------- /tests/testthat/test-v3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tests/testthat/test-v3.R -------------------------------------------------------------------------------- /tmap.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/tmap.Rproj -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/adv_animations.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/adv_animations.Rmd -------------------------------------------------------------------------------- /vignettes/adv_comp_group.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/adv_comp_group.Rmd -------------------------------------------------------------------------------- /vignettes/adv_extensions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/adv_extensions.Rmd -------------------------------------------------------------------------------- /vignettes/adv_ggplot2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/adv_ggplot2.Rmd -------------------------------------------------------------------------------- /vignettes/adv_groups.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/adv_groups.Rmd -------------------------------------------------------------------------------- /vignettes/adv_inset_maps.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/adv_inset_maps.Rmd -------------------------------------------------------------------------------- /vignettes/adv_legends.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/adv_legends.Rmd -------------------------------------------------------------------------------- /vignettes/adv_margins.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/adv_margins.Rmd -------------------------------------------------------------------------------- /vignettes/adv_multivariate.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/adv_multivariate.Rmd -------------------------------------------------------------------------------- /vignettes/adv_options.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/adv_options.Rmd -------------------------------------------------------------------------------- /vignettes/adv_positions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/adv_positions.Rmd -------------------------------------------------------------------------------- /vignettes/adv_shiny.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/adv_shiny.Rmd -------------------------------------------------------------------------------- /vignettes/basics_basemaps.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/basics_basemaps.Rmd -------------------------------------------------------------------------------- /vignettes/basics_charts.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/basics_charts.Rmd -------------------------------------------------------------------------------- /vignettes/basics_components.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/basics_components.Rmd -------------------------------------------------------------------------------- /vignettes/basics_exporting.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/basics_exporting.Rmd -------------------------------------------------------------------------------- /vignettes/basics_facets.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/basics_facets.Rmd -------------------------------------------------------------------------------- /vignettes/basics_layout.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/basics_layout.Rmd -------------------------------------------------------------------------------- /vignettes/basics_legends.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/basics_legends.Rmd -------------------------------------------------------------------------------- /vignettes/basics_modes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/basics_modes.Rmd -------------------------------------------------------------------------------- /vignettes/basics_scales.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/basics_scales.Rmd -------------------------------------------------------------------------------- /vignettes/basics_vv.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/basics_vv.Rmd -------------------------------------------------------------------------------- /vignettes/examples_biv_choro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/examples_biv_choro.Rmd -------------------------------------------------------------------------------- /vignettes/examples_bubble.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/examples_bubble.Rmd -------------------------------------------------------------------------------- /vignettes/examples_choro_NLD.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/examples_choro_NLD.Rmd -------------------------------------------------------------------------------- /vignettes/examples_choro_World.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/examples_choro_World.Rmd -------------------------------------------------------------------------------- /vignettes/examples_gridmaps.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/examples_gridmaps.Rmd -------------------------------------------------------------------------------- /vignettes/examples_raster.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/examples_raster.Rmd -------------------------------------------------------------------------------- /vignettes/examples_terrain.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/examples_terrain.Rmd -------------------------------------------------------------------------------- /vignettes/examples_topo_Africa.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/examples_topo_Africa.Rmd -------------------------------------------------------------------------------- /vignettes/ext_cartogram.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/ext_cartogram.Rmd -------------------------------------------------------------------------------- /vignettes/ext_glyphs.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/ext_glyphs.Rmd -------------------------------------------------------------------------------- /vignettes/ext_mapgl.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/ext_mapgl.Rmd -------------------------------------------------------------------------------- /vignettes/ext_networks.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/ext_networks.Rmd -------------------------------------------------------------------------------- /vignettes/figures/shiny_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/figures/shiny_plot.png -------------------------------------------------------------------------------- /vignettes/figures/shiny_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/figures/shiny_view.png -------------------------------------------------------------------------------- /vignettes/foundations_crs.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/foundations_crs.Rmd -------------------------------------------------------------------------------- /vignettes/foundations_gg.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/foundations_gg.Rmd -------------------------------------------------------------------------------- /vignettes/versus_ggplot2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/versus_ggplot2.Rmd -------------------------------------------------------------------------------- /vignettes/versus_mapsf.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/versus_mapsf.Rmd -------------------------------------------------------------------------------- /vignettes/versus_mapview.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-tmap/tmap/HEAD/vignettes/versus_mapview.Rmd --------------------------------------------------------------------------------