Raw PWS instrument values
- HighRate Spectrogram - Voyager 2 PWS Raw High-Rate Spectrogram
- InterferenceEvents - Event times for likely spacecraft noise sources within the PWS frequency range
- SpecAnalyzer-4s-Efield - Averages and peaks of raw data values from the Voyager 2 PWS Spectrum Analyzer
- SpecAnalyzer-Distogram - A series of 10-day histograms of raw data from a spectrum analyzer channel
- SpecAnalyzer-Histogram - Raw data histograms from a single spectrum analyzer channel
- Waveform - Voyager 2 PWS Raw Waveform
Catalog Path: tag:das2.org,2012:site:/uiowa/voyager/2/pws/uncalibrated
Read From: https://das2.org/catalog/das/site/uiowa/voyager/2/pws/uncalibrated.json
import json import das2 node = das2.get_node("site:/uiowa/voyager/2/pws/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['highrate_spectrogram']
#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/voyager/2/pws/uncalibrated", NULL, NULL); DasJdo* pJdo = DasNode_getJdo(pNode, NULL); size_t uLen; const char* sOut = DasJdo_writePretty(pJdo, " ", "\n", &uLen); fputs(sOut, stdout);