Skip to content

🌎 Interactive globe visualisations

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md
Notifications You must be signed in to change notification settings

JohnCoene/globe4r

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Travis build status Lifecycle: maturing AppVeyor build status

globe4r

Interactive globes for R via globe.gl.

Visit the website for more details.

  1. bars
  2. arcs
  3. polygons
  4. points
  5. hex bin

Visit the website for the full list of functions

Installation

You can install the globe4r from Github:

# install.packages("remotes")
remotes::install_github("JohnCoene/globe4r")

Example

library(globe4r)

data("population") # sample data

create_globe() %>% # initialise
  globe_bars(
    coords(lat, lon, altitude = value, color = value),
    data = population
  ) %>% 
  scale_bars_altitude() %>% 
  scale_bars_color()