eq_map: Create Map

Description Usage Arguments Value Examples

View source: R/eq_map.R

Description

This function plots a straightforward map using circles to determine the eartquake location. The radius of the circle is according to the magnitude (in Richter Scale) of the earthquake.

Usage

1
eq_map(filtered_data, annot_col = "DATE")

Arguments

filtered_data

A DataFrame with DATE, LONGITUDE, LATITUDE, and EQ_PRIMARY columns.

annot_col

The information to be displayed inside of the popup.

Value

A leaflet object representing the map of earthquake points

Examples

1
2
3
4
5
6
7
## Not run: readr::read_delim("./inst/extdata/dataset.txt", delim = "\t") %>%
  eq_clean_data() %>%
  eq_location_clean() %>%
  filter(COUNTRY == "MEXICO" & lubridate::year(DATE) >= 2000) %>%
  mutate(popup_text = eq_create_label(.)) %>%
  eq_map(annot_col = "popup_text")
## End(Not run)

hsuzero/Rcapstone_w6 documentation built on Dec. 20, 2021, 4:50 p.m.