Jovian Auroral Distribution Experiment - Southwest Research Institute (David McComas)
- ElectronPitchAngle - Electron counts per second and pitch angle from JADE detectors 60 and 180.
- Electrons L2 - Electron Abundance from JADE Level 2 data
- Ions L2 - Ion Abundance from JADE Level 2 data
- OmniDirectionalElectronSpec - JADE Omnidirectional Electron data
- OmniDirectionalElectronSpecHR - JADE High-Rate Electron Energy Spectra, Average over Look Direction
- OmniDirectionalIonSpec - JADE Omnidirectional Ion data
Catalog Path: tag:das2.org,2012:site:/uiowa/juno/jad
Read From: https://das2.org/catalog/das/site/uiowa/juno/jad.json
import json import das2 node = das2.get_node("site:/uiowa/juno/jad") # 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['electronpitchangle']
#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/jad", NULL, NULL); DasJdo* pJdo = DasNode_getJdo(pNode, NULL); size_t uLen; const char* sOut = DasJdo_writePretty(pJdo, " ", "\n", &uLen); fputs(sOut, stdout);