Quick Look data, Not for Publication
- HFR spectra - Electric Wave Spectra from 10 kHz to 490 kHz from Quick Look CDFs
- Magnetometer - Magnetic field vector in spacecraft coordinates, from Quick Look CDFs
- WFR spectral-matrix B-Power - WFR Total power in B, the Sum of BuBu, BvBv and BwBw from Quick Look CDFs
- WFR spectral-matrix BuBu - WFR Autocorrelation of the Search Coil U Axis from Quick Look CDFs
- WFR spectral-matrix BvBv - WFR Autocorrelation of the Search Coil V Axis from Quick Look CDFs
- WFR spectral-matrix BwBw - WFR Autocorrelation of the Search Coil W Axis from Quick Look CDFs
- WFR spectral-matrix EuEu - WFR Autocorrelation of the Electric Field U Axis from Quick Look CDFs
- WFR spectral-matrix EvEv - WFR Autocorrelation of the Electric Field V Axis from Quick Look CDFs
- WFR spectral-matrix EwEw - WFR Autocorrelation of the Electric Field W Axis from Quick Look CDFs
- WFR waveform-continuous-burst psd - Long duration waveforms for any antenna from Level 2 CDF files
Catalog Path: tag:das2.org,2012:site:/uiowa/van_allen_probes/a/emfisis/quicklook
Read From: https://das2.org/catalog/das/site/uiowa/van_allen_probes/a/emfisis/quicklook.json
import json import das2 node = das2.get_node("site:/uiowa/van_allen_probes/a/emfisis/quicklook") # 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['hfr_spectra']
#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/van_allen_probes/a/emfisis/quicklook", NULL, NULL); DasJdo* pJdo = DasNode_getJdo(pNode, NULL); size_t uLen; const char* sOut = DasJdo_writePretty(pJdo, " ", "\n", &uLen); fputs(sOut, stdout);