eq_map: Map earthquak data to a leaflet tile

Description Usage Arguments Value Examples

Description

Map earthquak data to a leaflet tile

Usage

1
eq_map(df, annot_col = NULL)

Arguments

df

A data.frame such as this obtainded from NOAA.

Value

A graph with markers for specified earthquaks and popups with info; location, magnitude and deaths.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
## Not run: 
# load and clean data
file_path <- system.file("extdata", "signif.tsv", package = "MSDR")
signif <- read_tsv(file_path) %>%
  eq_clean_date %>%
  eq_clean_location

# make graph
signif %>%
filter(COUNTRY == 'MEXICO' & year(date) >= 2000) %>%
  mutate(popup_text = eq_create_label(.)) %>%
  eq_map()

## End(Not run)

galen211/msdr-capstone documentation built on May 15, 2019, 1:40 p.m.