Skip to content

SeismicData/asdf_validate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ASDF Format Validator

Landing page for all things ASDF: https://seismic-data.org

This is Adaptable Seismic Data Format - if you are looking for the Advanced Scientific Data Format, go here: https://asdf.readthedocs.io/en/latest/

This module serves to validate ASDF (Adaptable Seismic Data Format) files to ensure consistency and compatibility between implementations.

While being written in Python it is completely independent of any ASDF implementation.

Installation

It requires HDF5 in a recent version to be installed (in particular the h5dump and h5ls programs must be installed and in the PATH).

Python versions 2.7 and 3.4 have been tested; others might well work. Additional required Python modules are:

Cloning the repository is currently necessary:

$ git clone https://github.com/SeismicData/asdf_validate.git
$ cd asdf_validate
$ pip install -v -e .

Usage

The module will install a single command: asdf-validate.

$ asdf-validate seismo.h5
Valid ASDF File!

Any other output mean your file is not valid. The error messages should hopefully give hints how to fix it.

What Does it Do?

It performs a couple of validations:

  1. Checks if the file exists.
  2. Checks if its an HDF5 file.
  3. Checks if the file_format and file_format_version attributes are set and correspond to expected values.
  4. It transforms the structure of the file to a JSON respresentation which is then checked against a JSON Schema. This assures a number of things:
  • The general layout and naming scheme is enforced.
  • Data spaces and data types of attributes are enforced.
  • Waveform data can only be 32/64 bit, little/big endian, IEEE floats or two's complement integers.
  • Waveform data sets must have starttime and sampling_rate attributes of the correct data space and type.
  • Naming scheme of the auxiliary data is enforced.
  • XML files are stored in a consistent manner.
  1. It makes sure all waveforms are in the correct station group.
  2. It validates the QuakeML file against the QuakeML schema.
  3. It validates all found StationXML files against the StationXML schema.

Missing Checks

A number of checks that should be implemented in the future in no particular order:

  • The times in the data set names of the waveforms should correspond to the actual times of the data.
  • The various event resource identifiers on the waveform datasets are valid identifiers.
  • StationXML files only contain information about the current station.
  • Provenance is not yet validated (this has to wait until SEIS-PROV is done).

Releases

No releases published

Packages

No packages published

Languages