NDA-JunoN datasets
- junon tag1 dp - Nancay/NDA/JunoN medium resolution dataset - Differential polarization (LL-RR)/(LL+RR)
- junon tag1 lh - Nancay/NDA/JunoN medium resolution dataset - LH polarized power
- junon tag1 rh - Nancay/NDA/JunoN medium resolution dataset - RH polarized power
- junon tag1 xa - Nancay/NDA/JunoN medium resolution dataset - Amplitude of LHxRH
- junon tag1 xi - Nancay/NDA/JunoN medium resolution dataset - Imaginary part of LHxRH
- junon tag1 xp - Nancay/NDA/JunoN medium resolution dataset - Phase of LHxRH
- junon tag1 xr - Nancay/NDA/JunoN medium resolution dataset - Real part of LHxRH
- junon tag2 dp - Nancay/NDA/JunoN high resolution dataset - Differential polarization (LL-RR)/(LL+RR)
- junon tag2 lh - Nancay/NDA/JunoN high resolution dataset - LH polarized power
- junon tag2 rh - Nancay/NDA/JunoN high resolution dataset - RH polarized power
- junon tag2 xa - Nancay/NDA/JunoN high resolution dataset - Amplitude of LHxRH
- junon tag2 xi - Nancay/NDA/JunoN high resolution dataset - Imaginary part of LHxRH
- junon tag2 xp - Nancay/NDA/JunoN high resolution dataset - Phase of LHxRH
- junon tag2 xr - Nancay/NDA/JunoN high resolution dataset - Real part of LHxRH
Catalog Path: tag:das2.org,2012:site:/voparis/nancay/nda/junon
Read From: https://das2.org/catalog/das/site/voparis/nancay/nda/junon.json
import json import das2 node = das2.get_node("site:/voparis/nancay/nda/junon") # 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['junon_tag1_dp']
#include <stdio.h> #include <das2/core.h> DasNode* pRoot = new_RootNode(NULL, NULL, NULL); DasNode* pNode = DasNode_subNode(pRoot, "tag:das2.org,2012:site:/voparis/nancay/nda/junon", NULL, NULL); DasJdo* pJdo = DasNode_getJdo(pNode, NULL); size_t uLen; const char* sOut = DasJdo_writePretty(pJdo, " ", "\n", &uLen); fputs(sOut, stdout);