eq_map: Earthquakes Data in an Interactive Map.

Description Usage Arguments Value Note References Examples

View source: R/eq_map.R

Description

The Earthquakes will be mapped centered with their latitude and longitude "epicenter". The epicenter is annotated based on an annot_col which the user can specify. In addition, if the user specifies "popup_text" then a call to eq_create_label generates the appropriate text for the popup.

Usage

1
eq_map(eq_clean = NULL, annot_col = "DATE")

Arguments

eq_clean

The clean earthquake data in a tbl_df object.

annot_col

Column in the tbl_df object to be used for annotation.

Value

This function returns an interactive map.

Note

If an invalid column name is provided, the function provides a warning and uses the LOCATION_NAME column as the annotation column.

References

http://rstudio.github.io/leaflet/

Examples

1
2
3
4
5
6
7
## Not run: 

data_clean %>%
dplyr::filter(COUNTRY == "MEXICO" & lubridate::year(DATE) >= 2000) %>%
eq_map(annot_col = "DATE")

## End(Not run)

JulianTWolf/RCapstone documentation built on May 3, 2019, 4:02 p.m.