Station Service (Inventory, Metadata)
This webservice provides access to full metadata from all of our EIDA stations. Some examples:
Display a brief list for all stations belonging to networks GR,SX,TH,RN,BQ:
https://eida.bgr.de/fdsnws/station/1/query?format=text&level=station&network=GR,SX,TH,RN,BQ
Show channel-level info for station GRA1:
https://eida.bgr.de/fdsnws/station/1/query?format=text&level=channel&station=GRA1
Download a FDSNStationXML inventory file for station GEC2:
https://eida.bgr.de/fdsnws/station/1/query?formatted=true&level=channel&network=GR&station=GEC2
Fetch a full inventory for station RETH in Seiscomp3-XML format:
https://eida.bgr.de/fdsnws/station/1/query?formatted=true&format=sc3ml&level=response&network=GR&station=RETH
DataSelect Service (mseed Waveforms)
This webservice provides access to waveform data of our node. Networks GR, SX and TH are archived at BGR. Some examples:
Download Geress-Array data for a certain timewindow:
https://eida.bgr.de/fdsnws/dataselect/1/query?station=GE??&channel=SHZ&starttime=2014-01-01T12:00:00&endtime=2014-01-01T12:10:00
Download some days of LH? data for station GRA2:
https://eida.bgr.de/fdsnws/dataselect/1/query?station=GRA2&channel=LH?&starttime=2015-11-27T00:00:00&endtime=2015-12-05T01:00:00
Example for using wget with POST method. We need an input file -- please save similar lines to file: request.txt
GR GRA1 * BHZ 2019-03-17T00:00:00 2019-03-17T03:00:00
GR GEC2 * BH? 2019-03-17T00:00:00 2019-03-17T03:00:00
GR RETH * BH? 2019-03-17T00:00:00 2019-03-17T03:00:00
SX NEUB * BHZ 2019-03-17T00:00:00 2019-03-17T03:00:00
TH ZEU * BHZ 2019-03-17T00:00:00 2019-03-17T03:00:00
Enter this at the command line prompt:
wget -O out.mseed --post-file request.txt 'https://eida.bgr.de/fdsnws/dataselect/1/query'
Remember your Web-Proxy settings, if necessary:
export http_proxy=https://USER:PASSWORD@PROXY-SERVER-IP:PORT
There is a complete description of IRIS FDSN webservice:
FDSN Webservice at Iris
Other data centers supporting FDSN web services:
FDSNWS at Datacenters
Software
Obspy supports fdsnws queries and so offers another easy way to access the waveforms and the metadata of our archive.
fdsnws_fetch allows distributed data requests querying all EIDA nodes. It is using the EIDA routing service.