Locations of Earthquakes off Fiji
The data set give the locations of 1000 seismic events of MB > 4.0. The events occurred in a cube near Fiji since 1964.There are two clear planes of seismic activity.
library(leaflet)
quake<-quakes
Generate the leaflet map.
leaflet(quake) %>% addTiles() %>% addCircleMarkers(
quake$long,
quake$lat,
radius = sqrt(quake$mag)*3,
popup = paste("Magnitude: ", as.character(quake$mag), "<BR>Depth: ", as.character(quake$depth), "km", "<BR>Stations Reporting: ", as.character(quake$stations)),
clusterOptions = markerClusterOptions() )