IPGP UPC   EOST  CNRS   Résif

Stations and Data News

GEOSCOPE Stations

Search

GEOSCOPE Observatory

French Global Network of broad band seismic stations

DOI : 10.18715/GEOSCOPE.G


The GEOSCOPE Observatory is a Global Network of Broad Band Seismic Stations.

These stations are recording continuously the ground motion. Data of most of the stations are arriving in real-time to the IPGP Data Center and are archived after validation.
The GEOSCOPE Observatory provides data and informations for earthquakes with magnitudes larger than 5.5-6. Similar information may be provided for smaller earthquakes, for example those located in France or in the European-Mediterranean region.

 

geoscope-network

Download the map in PDF format pdf

 

Some examples using the ObsPy library:

 

Script 1

This script retrieve data for the BH channels for the TAM station, and display the waveforms:

 

from obspy.core import UTCDateTime
from obspy.arclink.client import Client

client = Client(host='eida.ipgp.fr', port=18001, user=This email address is being protected from spambots. You need JavaScript enabled to view it.', debug=False)
 client.status_delay=3
t = UTCDateTime("2011-01-10 18:36:59")
st = client.getWaveform("G", "RER", "00", "BH*", t, t + 60 * 60)
st.plot()