MSeed.Parser.Header (wsdataselect v1.4.0)

Copy Markdown View Source

A decoded 48-byte miniSEED fixed header.

start_time is a NaiveDateTime (fractional seconds are dropped); the raw sample bytes of a record are not part of the header.

Summary

Types

t()

@type t() :: %MSeed.Parser.Header{
  channel: String.t(),
  data_offset: non_neg_integer(),
  data_quality: binary(),
  first_blockette: non_neg_integer(),
  location: String.t(),
  nblocks: non_neg_integer(),
  network: String.t(),
  nsamples: non_neg_integer(),
  sample_rate: number() | nil,
  sequence_number: binary(),
  source_id: String.t(),
  start_time: NaiveDateTime.t(),
  station: String.t()
}