Populate Station Table

This script is responsible for rapidly scanning the data archive, identifying the Networks/Stations and inserting them in the stations table in the database.

The data_folder (as defined in the config) is scanned following the data_structure. Possible values for the data_structure are defined in data_structures.py:

data_structure['SDS'] = "YEAR/NET/STA/CHAN.TYPE/NET.STA.LOC.CHAN.TYPE.YEAR.DAY"
data_structure['BUD'] = "NET/STA/STA.NET.LOC.CHAN.YEAR.DAY"
data_structure['IDDS'] = "YEAR/NET/STA/CHAN.TYPE/DAY/NET.STA.LOC.CHAN.TYPE.YEAR.DAY.HOUR"
data_structure['PDF'] = "YEAR/STA/CHAN.TYPE/NET.STA.LOC.CHAN.TYPE.YEAR.DAY"

If your data structure corresponds to one of these 4 structures, you need to select the corresponding acronym (SDS, BUD, IDDS or PDF) for the data_structure field.

More info on the recommended SDS (“SeisComP Data Structure”) can be found here: https://www.seiscomp3.org/wiki/doc/applications/slarchive/SDS For other simple structures, one has to edit the data_structure configuration (see below).

By default, station coordinates are initialized at 0.

To run this script:

$ msnoise populate

Custom data structure & station table population

If one’s data structure does not belong to the pre-defined ones, it can be defined directly in the data_structure configuration field using forward slashes, e.g.:

data_structure = “NET/STA/YEAR/NET.STA.YEAR.DAY.MSEED”

MSNoise expects to find a file named custom.py in the current folder. This python file will contain a function called populate wich will accept one argument and return a station dictionary with keys of the format NET.STA , and fields for the stations table in the database: Net,Sta,X,Y,Altitude, Coordinates(UTM/DEG),Instrument.

import os, glob
def populate(data_folder):
    datalist = sorted(glob.glob(os.path.join(data_folder, "*", "*")))
    stationdict = {}
    for di in datalist:
        tmp = os.path.split(di)
        sta = tmp[1]
        net = os.path.split(tmp[0])[1]
        stationdict[net+"_"+sta]=[net,sta,0.0,0.0,0.0,'UTM','N/A']
    return stationdict

Expert (lazy) mode:

If the DataAvailability has already been filled in by another process, for example using the “scan from path” procedure, the network/station names can be “populated” from the DataAvailability table automatically. To do this, simply run:

msnoise populate --fromDA

and MSNoise will insert the unique NET.STA in the Stations table.