Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonmcalder/planetary
:earth_africa: planetary is an htmlwidget interface to the Planetary.js chart library
https://github.com/jonmcalder/planetary
htmlwidget javascript-library r
Last synced: 3 months ago
JSON representation
:earth_africa: planetary is an htmlwidget interface to the Planetary.js chart library
- Host: GitHub
- URL: https://github.com/jonmcalder/planetary
- Owner: jonmcalder
- License: other
- Created: 2017-03-07T21:27:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-21T10:11:31.000Z (over 7 years ago)
- Last Synced: 2024-06-11T18:28:19.445Z (5 months ago)
- Topics: htmlwidget, javascript-library, r
- Language: JavaScript
- Homepage: http://planetaryjs.com/
- Size: 354 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- awesome-shiny-extensions - planetary - HTML widget for the planetary.js library for creating interactive globes. (Visualization / Maps and Spatial Data)
README
---
output: github_document
always_allow_html: yes
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```# planetary
[![Project Status: WIP ? Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](http://www.repostatus.org/badges/latest/wip.svg)](http://www.repostatus.org/#wip)
[![Build Status](https://travis-ci.org/jonmcalder/planetary.svg?branch=master)](https://travis-ci.org/jonmcalder/planetary)
[![codecov](https://codecov.io/gh/jonmcalder/planetary/branch/master/graph/badge.svg)](https://codecov.io/gh/jonmcalder/planetary)planetary is an htmlwidget for the `planetary.js` library, which facilitates the creation of "awesome interactive globes for the web". Check out http://planetaryjs.com/ for more info.
![](img/ex-rotating.png)
![](img/ex-quake.png)## Installation
You can install planetary from GitHub with:
```{r gh-installation, eval = FALSE}
# install.packages("devtools")
devtools::install_github("jonmcalder/planetary")
```## Examples
Simple rotating planet example with random pings - also draggable and zoomable.
```{r example, eval=FALSE}
library(planetary)
planetary(rotate = 10)
```