In September 2021, a significant jump in seismic activity on the island of La Palma (Canary Islands, Spain) signaled the start of a volcanic crisis that still continues at the time of writing. Earthquake data is continually collected and published by the Instituto Geográphico Nacional (IGN). We have created an accessible dataset from this and completed preliminary data analysis which shows seismicity originating at two distinct depths, consistent with the model of a two reservoir system feeding the currently very active volcano.
The content of your notebook may be broken into any number of markdown or code cells. Markdown cells use Quarto markdown. Quarto markdown supports an extended version of the basic Markdown syntax originally created by John Gruber, which adds support for many common document elements including citations, figures, tables, admonitions, and more. Quarto markdown also supports the use of LaTeX for mathematical equations, advanced layout control, as well as other advanced formatting.
La Palma is one of the west most islands in the Volcanic Archipelago of the Canary Islands, a Spanish territory situated is the Atlantic Ocean where at their closest point are 100km from the African coast Figure 1. The island is one of the youngest, remains active and is still in the island forming stage.
Figures may be added to your notebook using markdown images or specifial markdown elements (‘fenced divs’). They may refer to images saved in your images/ folder (or other folders), images from the web, or generated directly using code cells. You may embed figures produced in other notebooks using the embed shortcode (this embed figures, tables, or any other content from Jupyter Notebooks). Refer to figures by their label (e.g. @fig-map).
La Palma has been constructed by various phases of volcanism, the most recent and currently active being the Cumbre Vieja volcano, a north-south volcanic ridge that constitutes the southern half of the island.
Eruption History
A number of eruptions were recorded since the colonization of the islands by Europeans in the late 1400s, these are summarised in Table 1.
Quarto supports a number of ways to create tables using both standard markdown tables (pipe tables) and more complex markdown tables using a grid style syntax (grid tables). In addition, Quarto provides the ability to control column width, caption position, create subtables, and more. See Quarto’s table document to learn more. Refer to tables in the text by their label (e.g. @tbl-history).
Table 1: Recent historic eruptions on La Palma
Name
Year
Current
2021
Teneguía
1971
Nambroque
1949
El Charco
1712
Volcán San Antonio
1677
Volcán San Martin
1646
Tajuya near El Paso
1585
Montaña Quemada
1492
This equates to an eruption on average every 79 years up until the 1971 event. The probability of a future eruption can be modeled by a Poisson distribution Equation 1.
Numbered equations may be defined using ‘dollar math’ by placing equations between matching pairs of dollar signs. Learn more about Quarto’s equation here: https://quarto.org/docs/authoring/cross-references.html#equations. Refer to equations in the text by their label (e.g. @eq-poisson).
Where \(\lambda\) is the number of eruptions per year, \(\lambda=\frac{1}{79}\) in this case. The probability of a future eruption in the next \(t\) years can be calculated by:
\[
p_e = 1-\mathrm{e}^{-t \lambda}
\tag{2}\]
So following the 1971 eruption the probability of an eruption in the following 50 years — the period ending this year — was 0.469. After the event, the number of eruptions per year moves to \(\lambda=\frac{1}{75}\) and the probability of a further eruption within the next 50 years (2022-2071) rises to 0.487 and in the next 100 years, this rises again to 0.736.
Magma Reservoirs
You may provide the bibliography directly as a bibtex, biblatex, CSL JSON, or CSL YAML file (defined in the document front matter or _quarto.yml project file) then embed the citation by citation key in your text using the [@cite] or @cite for parenthetical or textual citations, respectively. The following paragraph provides an example of this. Quarto’s documentation on citations provides more details on working with bibliographies and citations.
Studies of the magma systems feeding the volcano, such as Marrero et al. (2019) has proposed that there are two main magma reservoirs feeding the Cumbre Vieja volcano; one in the mantle (30-40km depth) which charges and in turn feeds a shallower crustal reservoir (10-20km depth).
In this paper, we look at recent seismicity data to see if we can see evidence of such a system action, see Figure 2.
Dataset
All data used in the notebook should be present in the data/ folder so notebooks may be executed in place with no additional input.
The earthquake dataset used in our analysis was generated from the IGN web portal this is public data released under a permissive license. Data recorded using the network of Seismic Monitoring Stations on the island. A web scraping script was developed to pull data into a machine-readable form for analysis. That code tool is available on GitHub along with a copy of recently updated data.
Main Timeline Figure
Code cells may be seamlessly interleaved with markdown cells. There are a variety of execution options to control the behavior of code cells - learn more in Quarto’s documentation on execution options.
In [1]:
library(tidyverse)
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr 1.1.2 ✔ readr 2.1.4
✔ forcats 1.0.0 ✔ stringr 1.5.0
✔ ggplot2 3.4.2 ✔ tibble 3.2.1
✔ lubridate 1.9.2 ✔ tidyr 1.3.0
✔ purrr 1.0.1
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag() masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(ggExtra)
Visualising Long term earthquake data
Data taken directly from the IGN Catalog
Supported cell outputs below include pandas dataframe, raw text output, matplotlib plot, and seaborn plot.
In [2]:
df_ign <-read_csv("data/lapalma_ign.csv")
Rows: 11347 Columns: 14
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
chr (3): Event, Intensity, Location
dbl (8): Latitude, Longitude, Depth(km), Magnitude, Type Mag, Timestamp, Sw...
dttm (1): DateTime
date (1): Date
time (1): Time
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
blue <-"#336699"p <- df_ign |>ggplot(aes(Magnitude, `Depth(km)`)) +geom_point(alpha =0.6, color = blue) +geom_density2d(color = blue, n =100, h =c(1, 8), bins =20) +scale_y_continuous(trans ="reverse") +coord_fixed(ratio =1/8) +labs(title ="Cumulative Events 01-01-2017 to 01-01-2022") +theme_bw() +theme(plot.title =element_text(hjust =0.5, margin =margin(t =20, b =20))) ggMarginal(p, type ="histogram", bins =20, fill = blue, color ="white")
Results
The dataset was loaded into this Jupyter notebook and filtered down to La Palma events only. This results in 5465 data points which we then visualized to understand their distributions spatially, by depth, by magnitude and in time.
From our analysis above, we can see 3 different systems in play.
Firstly, the shallow earthquake swarm leading up to the eruption on 19th September, related to significant surface deformation and shallow magma intrusion.
After the eruption, continuous shallow seismicity started at 10-15km corresponding to magma movement in the crustal reservoir.
Subsequently, high magnitude events begin occurring at 30-40km depths corresponding to changes in the mantle reservoir. These are also continuous but occur with a lower frequency than in the crustal reservoir.
Conclusions
From the analysis of the earthquake data collected and published by IGN for the period of 11 September through to 9 November 2021. Visualization of the earthquake events at different depths appears to confirm the presence of both mantle and crustal reservoirs as proposed by Marrero et al. (2019).
Data availability statement should be specified in a separate cell with metadata "part": "availability", similar to the abstract.
AGU requires an Availability Statement for the underlying data needed to understand, evaluate, and build upon the reported research at the time of peer review and publication.
A web scraping script was developed to pull data into a machine-readable form for analysis. That code tool is available on GitHub along with a copy of recently updated data.
References
Marrero, José, Alicia García, Manuel Berrocoso, Ángeles Llinares, Antonio Rodríguez-Losada, and R. Ortiz. 2019. “Strategies for the Development of Volcanic Hazard Maps in Monogenetic Volcanic Fields: The Example of LaPalma (CanaryIslands).”Journal of Applied Volcanology 8 (July). https://doi.org/10.1186/s13617-019-0085-5.