Radio and Plasma Wave Science - University of Iowa (Donald Gurnett)
- Derived - None
- HiRes HiFreq Spectra - Frequency translated spectra from the WBR via the HFR (PDS level 3 files)
- HiRes LoFreq Gain - Wideband (WBR) or Waveform (WFR) calibrated reciever gain states
- HiRes LoFreq Spectra - 25 Hz and 2.5 kHz, correlated 5-Component spectral densities (PDS level 3 files)
- HiRes LoFreq Waveform - 100 Hz and 7.14 kHz sample rate, correlated 5-Component waveforms from the WFR (PDS level 3 files)
- HiRes MidFreq Spectra - 10 kHz and 80 kHz Spectra from the WBR (PDS level 3 files)
- HiRes MidFreq Waveform - 27.8 kHz and 222 kHz sample rate waveforms from the WBR (PDS level 3 files)
- HiRes MidHiFreq Gain - Wideband (WBR) or Waveform (WFR) calibrated reciever gain states
- Survey - Calibrated, full-resolution, low-rate electric survey data (PDS level 3 files)
- Survey Grid - Calibrated, gridded, low-rate survey data (CODMAC Level 4)
- Survey KeyParam - Calibrated, reduced resolution, low-rate survey data (CODMAC level 4)
- Survey Magnetic - Calibrated, full-resolution, low-rate magnetic survey data (PDS level 3 files)
- Uncalibrated - Level 2 datasets, from raw RPWS instrument values
Catalog Path: tag:das2.org,2012:site:/uiowa/cassini/rpws
Read From: https://das2.org/catalog/das/site/uiowa/cassini/rpws.json
import json import das2 node = das2.get_node("site:/uiowa/cassini/rpws") # 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['derived']
#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/cassini/rpws", NULL, NULL); DasJdo* pJdo = DasNode_getJdo(pNode, NULL); size_t uLen; const char* sOut = DasJdo_writePretty(pJdo, " ", "\n", &uLen); fputs(sOut, stdout);