Level 2 datasets, from raw RPWS instrument values
- HiRes MidFreq Waveform - Uncalibrated 27.8 kHz and 222 kHz sample rate waveforms from the WBR (PDS level 3 files)
- WBR - RPWS Uncalibrated wideband waveforms
- WFR Hi - RPWS Uncalibrated 5 channel 2.5 kHz waveforms
- WFR Lo - RPWS Uncalibrated 5 channel 26 Hz waveforms
Catalog Path: tag:das2.org,2012:site:/uiowa/cassini/rpws/uncalibrated
Read From: https://das2.org/catalog/das/site/uiowa/cassini/rpws/uncalibrated.json
import json import das2 node = das2.get_node("site:/uiowa/cassini/rpws/uncalibrated") # 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['hires_midfreq_waveform']
#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/uncalibrated", NULL, NULL); DasJdo* pJdo = DasNode_getJdo(pNode, NULL); size_t uLen; const char* sOut = DasJdo_writePretty(pJdo, " ", "\n", &uLen); fputs(sOut, stdout);