A successful short-term volcanic eruption forecasting using seismic features: datasets and Sotware

From MaRDI portal
(Redirected from Dataset:6722763)




Successful Short-Term Volcanic Eruption Forecasting Using Seismic Features, Suplementary Material by Rey-Devesa (1,2), Bentez (3), Prudencio, Ligdamis Gutirrez (1,2), Corts (1,2), Titos (3), Koulakov (4,5), Zuccarello (6) and Ibez (1,2). Institutions associated: (1) Department of Theoretical Physics and Cosmos. Science Faculty. Avd. Fuentenueva s/n. University of Granada. 18071. Granada. Spain. (2) Andalusian Institute of Geophysiscs. Campus de Cartuja. University of Granada. C/Profesor Clavera 12. 18071. Granada. Spain. (3) Department of Signal Theory, Telematics and Communication. University of Granada. Informatics and Telecommunication School. 18071. Granada. Spain. (4) Trofimuk Institute of Petroleum Geology and Geophysics SB RAS, Prospekt Koptyuga, 3, 630090 Novosibirsk, Russia (5) Institute of the Earths Crust SB RAS, Lermontova 128, Irkutsk, Russia (6) Istituto Nazionale di Geofisica e Vulcanologia, Sezione di Pisa (INGV-Pisa), via Cesare Battisti, 53, 56125, Pisa, Italy. Acknowledgment: This study was partially supported by the Spanish FEMALE project (PID2019-106260GB-I00). P. Rey-Devesa was funded by the Ministerio de Ciencia e Innovacin del Gobierno de Espaa (MCIN), Agencia Estatal de Investigacin (AEI), Fondo Social Europeo (FSE), and Programa Estatal de Promocin del Talento y su Empleabilidad en I+D+I Ayudas para contratos predoctorales para la formacin de doctores 2020 (PRE2020-092719). Ivan Koulakov was supported by the Russian Science Foundation (Grant No. 20-17-00075). Luciano Zuccarello was supported by the INGV Pianeta Dinamico 2021 Tema 8 SOME project (grant no. CUP D53J1900017001) funded by the Italian Ministry of University and Research Fondo finalizzato al rilancio degli investimenti delle amministrazioni centrali dello Stato e allo sviluppo del Paese, legge 145/2018. English language editing was performed by Tornillo Scientific, UK. Data availability statement: 1.- Seismic data from Kilauea, Augustine, Bezymianny (2007), and Mount St. Helens are available from the IRIS data repository (http://ds.iris.edu/seismon/index.phtml). (An example of the Python code to access the data is described below.) 2.- Seismic data from Bezymianny (2017-2018) are available from Ivan Koulakov (ivan.science@gmail.com) upon request. 3.- Seismic data from Mt. Etna are available from INGV-Italy upon request (http://terremoti.ingv.it/en/help), also available from the Zenodo data repository (https://doi.org/10.5281/zenodo.6849621). Access code in Python to download the records of Kilauea, Augustine and Mount St. Helens volcanoes, from the IRIS data repository. To access the raw signals please first install ObsPy and then execute following commands in a python console: Example: from obspy.core import UTCDateTime from obspy.clients.fdsn import Client import obspy.io.mseed client = Client(IRIS) t1 = UTCDateTime(2006-01-10T00:00:00) t2 = UTCDateTime(2006-01-12T00:00:00) raw_data = client.get_waveforms( network=AV, station=AUH, location=, channel=HHZ, starttime=t1, endtime=t2) To further download station information execute: xml = client.get_stations(network=AV,station=AUH, channel=HHZ,starttime=t1,endtime=t2,level=response) To scale the data using the stations meta-data: data = raw_data.remove_response(inventory=xml) To filter, trim and plot the data execute: data.write(Augustine.mseed, format=MSEED) data.filter(bandpass,freqmin=1.0,freqmax=20) data.trim(t1+60,t2-60) data.plot() Contents: 6 different Matlab codes. The principal code is called FeatureExtraction. The codes rsac.m and ReadMSEEDFast.m are for reading different format of data. (Not developed by the group) Seismic Data from Mt. Etna for using as an example.











This page was built for dataset: A successful short-term volcanic eruption forecasting using seismic features: datasets and Sotware