Skip to content

RIQ Datatypes (pynasonde.vipir.riq.datatypes)

This section documents the dataclasses that represent RIQ configuration tables.

Contents

  • sct.mdSctType: system configuration table with general, station, timing, frequency, receiver, exciter, and monitor sub-structs
  • pct.mdPctType: pulse configuration table

Example quick start

from pynasonde.vipir.riq.datatypes.sct import SctType

sct = SctType()
print(sct.station.rx_count)
sct.dump_sct()