Waves: A Radio and Plasma Wave Receiver - University of Iowa (Bill Kurth)
- Burst above 3MHz - Burst mode calibrated spectra from downmixed wavefrom data
- Burst Spectra - Burst mode spectral density spectrograms generated from calibrated directly sampled waveform data
- Burst Waveforms - Burst Mode calibrated directly sampled waveform data
- Derived - Level 5 datasets produced by the Waves team using Waves and MAG data
- Housekeeping - Waves Housekeeping fixed fields
- Sequence - Datasets derived from Waves command sequence files
- Survey - Survey Mode Electric or Magnetic Spectral Densities
- Survey EBRatio - E/cB from Waves Survey
- Survey SpinFilter - Spin Filtered Survey Mode Electric Spectral Densities
- Uncalibrated - Level 2 datasets, from raw Waves instrument values
Catalog Path: tag:das2.org,2012:site:/uiowa/juno/wav
Read From: https://das2.org/catalog/das/site/uiowa/juno/wav.json
import json import das2 node = das2.get_node("site:/uiowa/juno/wav") # Pretty print node content s = json.dumps(node.props, ensure_ascii=False, indent=" ", sort_keys=True) print(s) # List and access sub-nodes node.keys() subnode = node['burst_above_3mhz']
#include <stdio.h> #include <das2/core.h> DasNode* pRoot = new_RootNode(NULL, NULL, NULL); DasNode* pNode = DasNode_subNode(pRoot, "tag:das2.org,2012:site:/uiowa/juno/wav", NULL, NULL); DasJdo* pJdo = DasNode_getJdo(pNode, NULL); size_t uLen; const char* sOut = DasJdo_writePretty(pJdo, " ", "\n", &uLen); fputs(sOut, stdout);