None
- B-Field Magnitude - B-Field magnitude from best available source
- B-Field Magnitude 4sec - B-Field magnitude from best available source and reduced to 4 second resolution for digitizing
- ElectronCyclotron - Fce and other magnetic-field derived parameters, based on the L3 CDFs
- ElectronCyclotron 4sec - Fce and other magnetic-field derived parameters at reduced to 4 second resolution for digitizing
Catalog Path: tag:das2.org,2012:site:/uiowa/van_allen_probes/a/emfisis/l3
Read From: https://das2.org/catalog/das/site/uiowa/van_allen_probes/a/emfisis/l3.json
import json import das2 node = das2.get_node("site:/uiowa/van_allen_probes/a/emfisis/l3") # 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['b-field_magnitude']
#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/l3", NULL, NULL); DasJdo* pJdo = DasNode_getJdo(pNode, NULL); size_t uLen; const char* sOut = DasJdo_writePretty(pJdo, " ", "\n", &uLen); fputs(sOut, stdout);