Acoustic, Meteorological and Resonance Frequency Data Acquired at the Tête Noire Pillar in February 2025.
收藏资源简介:
This dataset comprises meteorological, resonance frequency and acoustic data acquired at the Tête Noire rock pillar in February 2025. Acoustic data was acquired in February 2025 at the Tête Noire rock pillar (file : TeteNoire_Feb2025_acoustic.nc) . The provided data are the reconstructed impulse responses. Below are exemple lines of code required to retrieve the acquisition date, time vector and impulse response in python: open file :import xarray as xrds = xr.load_dataset("file.nc") open date : ds.date open impulse response for the first trace: ds["corr"].isel(time=0) open time vector for the first trace: ds["time_data"].isel(time=0) Weather data was acquired in February 2025 at the Tête Noire rock pillar (file : TeteNoire_Feb2025_weather.csv) . The provided data are the date, the air temperature and rain. Below are exemple lines of code required to retrieve the data : import pandas as pddf_weather = pd.read_csv('path/TeteNoire_Feb2025_weather.csv')print(df_weather.head()) #allows you to use keywords to extract data Resonance frequency data was acquired in February 2025 at the Tête Noire rock pillar (file : TeteNoire_Feb2025_resonance_frequency.csv) . The provided data are the date and the fundamental resonance frequency of the pillar. Below are exemple lines of code required to retrieve the data : import pandas as pddf_freq = pd.read_csv('path/TeteNoire_Feb2025_resonance_frequency.csv')print(df_freq.head()) #allows you to use keywords to extract data This research was supported by the European Research Council (ERC) under the grant agreement no. 101142154 (Crack The Rock), and is part of the Labex OSUG "habitability"



