Authors

Shannon White

Certificate Student 18-19

Topics

Tags

Natural Hazards
Remote Sensing

Sifting through the clouds to analyze the recent Kilauea Eruption

An Exploding Rock in the Pacific

The Neverending Eruption 

The first time Kilauea erupted was in 1790. Since then, the volcano has been continuously 'active,' though the eruption rate diminished until 1924 when it began to increase again. Nevertheless, it has been no secret that Kilauea is, and has been since 1790, an active volcano that poses a threat to those around it. The recent eruption that began on May 3, 2018 should not have come as such a surprise as the media made it out to be.

The purpose of my study was to add some truth the to hype that media was creating by using satellite imagery to assess and quantify vegetation change before and after the eruption.

Look at the Entire Picture & Examine the Full Story:

When studying a rock that is exploding in the pacific, there will be a lot of cloud disturbance resulting in a lot of data uncertainty. Multiple data sources should be incorporated.

This lead me to also analyze pollution as another measure of the impact from the eruption, something the media probably should have placed more focus on in their coverage.

Another data set that would be interesting to incorporate into a study of volcanic impact, is elevation change. Synthetic Aperture Radar (SAR) data would be helpful for this, though it is not widely distributed at this time.

import os
import pandas as pd
import geopandas as gpd
import rasterio as rio
import matplotlib.pyplot as plt
import matplotlib as mpl

pre_nir_landsat_path = '/Users/shannonwhite/git/data/Landsat/outputsL/landsat_pre_nir.tif'
with rio.open(pre_nir_landsat_path) as scene1:
    landsat_pre = scene1.read()
fig,ax1=plt.subplots(figsize=(8,8))
im=ax1.imshow(landsat_pre[0])
plt.suptitle('Landsat - NIR Image -  April 12/19, 2018 - Pre Eruption ', fontsize=16)
plt.show()

Landsat NIR Image pre-eruption

Sattelite Imagery (Landsat 8)

The above image has a lot of cloud cover which can alter values for vegetation change and analysis. In addition, the complete image is a composite of two images from two seperate dates : April 12 and April 19. Landsat satellite did not capture a complete scene for the area that was most affected by the eruption. As a result, I had to mosaic two images from two seperate dates to create a complete scene.

Sattelite Imagery and Pollution Data Collide

Exploring sulfure dioxide emmissions prior to selecting a date for satellite imagery might be useful to find a scene that has the least amount of vog disturbance.

What is interesting in the pre-eruption satellite image is that some of the clouds are clear and concise, while the area to the east of the image is more a representation of vog that is created from the volcano. Vog is a reaction that occurs when the sulfure dioxide emitted from the volcano reacts with the atmosphere and sunlight, creating volcanic fog, or "vog".

This image correlates directly with the graph below showing the peak sulfur dioxide emissions in 2018 for Hawaii.

so2_datetime = pd.read_csv("/Users/shannonwhite/git/data/so22_ad_viz_plotval_data.csv",
                             parse_dates = ['Date'],
                             index_col = ['Date'])

fig,ax=plt.subplots(figsize=(8,8))

# add the x-axis and the y-axis to the plot
ax.plot(so2_datetime.index.values,
        so2_datetime['Daily Max 1-hour SO2 Concentration'],
        color = 'red')
ax.axhline(y=75.0, color='k', linestyle='-')
# rotate tick labels
plt.setp(ax.get_xticklabels(), rotation=45)

# set title and labels for axes
ax.set(xlabel="Date",
       ylabel="Daily Max 1-hour SO2 Concentration (ppb)",
       title="Sulfur Dioxide Concentration\nKilauea, Hawaii in 2018");

Sulfur dioxide concentration

There was a slight peak in sulfur dioxide in April 2018 before the extreme peak beginning in May, when the eruption took place. The first peak in April matches with the vog that is visible in the satellite image of the scene.

There is very little sulfur dioxide emitted in December of 2018, and the satellite image (below) for the post-scene is a much clearer image.

post_nir_landsat_path = '/Users/shannonwhite/git/data/Landsat/outputsL/landsat_post_nir.tif'
with rio.open(post_nir_landsat_path) as scene2:
    landsat_post = scene2.read()
   

fig,ax1=plt.subplots(figsize=(8,8))

im=ax1.imshow(landsat_post[0])
plt.suptitle('Landsat - NIR Image -  December 8/15, 2018 - Post Eruption ', fontsize=16)
plt.show()

Landsat NIR Image post-eruption

Pollution Data:

The air people were breathing was more hazardous than the flow of lava

In addition to determining appropriate dates for satellite images, sulfure dioxide is a major pollutant that is dangerous for human health.

High concentrations of SO2 can cause inflammation and irritation of the respiratory system, and can affect lung function, worsen asthma attacks, and worsen existing heart disease.

In 2010, EPA revised the primary SO2 National Ambient Air Quality Standards (NAAQS) by establishing a new 1-hour standard at a level of 75 parts per billion (ppb), indicated in the black line in the graph above. The graph shows all of the peaks being way higher than this standard. In fact, during the eruption, the highest concentration was 1806 ppb on July 23, 2018 - 173% above the standard.

The graph below also showes that four of the top five instances were recorded during the eruption (May - August).

so2_datetime.sort_values(by="Daily Max 1-hour SO2 Concentration", ascending = False).head()

Date Daily Max 1hr SO2 Concentration Site Name AQS Parameter Description
2018-07-23 1806.0 ppb Hawaii Volcanoes NP - Kilauea Visitors Center Sulfur Dioxide
2018-02-05 1160.0 ppb Hawaii Volcanoes NP - Kilauea Visitors Center Sulfur Dioxide
2018-06-15 1123.0 ppb Hawaii Volcanoes NP - Kilauea Visitors Center Sulfur Dioxide
2018-06-02 1108.0 ppb Hawaii Volcanoes NP - Kilauea Visitors Center Sulfur Dioxide
2018-07-14 1055.0 ppb Hawaii Volcanoes NP - Kilauea Visitors Center Sulfur Dioxide

Another hazardous pollutant emitted by volcanoes is particulate matter (PM), which becomes more hazardous as the particles get smaller. Particulate matter of 2.5μg/m3 (PM2.5) cannot be seen with a naked eye yet can be dangerous to human health.

Studies have found a close link between exposure to fine particles (PM2.5) and premature death from heart and lung disease. Fine particles are also known to trigger or worsen chronic disease such as asthma, heart attacks, bronchitis and other respiratory problems. A study published in the Journal of the American Medical Association suggests that long-term exposure to PM2.5 may lead to plaque deposits in arteries, causing vascular inflammation and a hardening of the arteries which can eventually lead to heart attack and stroke.

The 24-hour concentration of PM2.5 is considered detrimental to health when it rises above 35.4 μg/m3, indicated by the black line on the graph below.

pm_datetime = pd.read_csv("/Users/shannonwhite/git/data/pm_ad_viz_plotval_data.csv",
                             parse_dates = ['Date'],
                             index_col = ['Date'])

fig,ax1=plt.subplots(figsize=(8,8))

# add the x-axis and the y-axis to the plot
ax1.plot(pm_datetime.index.values,
        pm_datetime['Daily Mean PM2.5 Concentration'],
        color = 'red')
ax1.axhline(y=35.0, color='k', linestyle='-')
# rotate tick labels
plt.setp(ax1.get_xticklabels(), rotation=45)

# set title and labels for axes
ax1.set(xlabel="Date",
       ylabel="Particulate Matter Concentration",
       title="Particulate Matter (2.5mm) Concentration\nKilauea, Hawaii in 2018");

particulate matter concentration spikes above healthy levels during the eruption

The American Heart Association states that :

“Exposure to PM greater than 2.5 μm in diameter (PM2.5) over a few hours to weeks can trigger cardiovascular disease-related mortality and nonfatal events; longer-term exposure (eg, a few years) increases the risk for cardiovascular mortality to an even greater extent than exposures over a few days and reduces life expectancy within more highly exposed segments of the population by several months to a few years.”

The timeline for Kilauea's eruption in terms of PM2.5 shows dangerous levels (above 35.4 μg/m3) from May until August, about 3 months. This could be the begining of a reduced life expectancy - a matter that should have been covered more by the media. If pollution was ever mentioned by the media, it was overshadowed by homes being destroyed - an important matter, but quite materialisitic. Homes can be rebuilt, particulate matter cannot simply be extracted from your lungs.

In conclusion, studying vegetation using satellite imagery can be difficult in areas that have a lot of cloud disturbance. This can be even more complicated when a volcano is erupting and spewing out sulfur dioxide that reacts with the atmosphere and creates volcanic fog. It could be helpful to first analyze pollution data in order to determine a date for the scene that would be the most clear. However, cloud disturbance can create data uncertainty.

In addition, pollution data is a great measurement for impact from volcanoes. I was able to find data for particulate matter and sulfur dioxide to analyze, however other important pollutants emitted from volcanoes include carbon dioxide, hydrogen sulfide, and hydrogen halides. This data is not only very impactful to human health, but also could add valuable insight into analysis of volcanic eruptions as a parallel to vegetation indexes—especially when data uncertainty exists.

Sources:

  • Info on SO2 (here)

  • More info on SO2 concentrations (here)

  • Info on Particulate Matter (here)

White presents her findings to her capstone class and professors.