Cassini/RPWS/HFR SKR dataset.
- skr e lh 100 400 - Cassini/RPWS SKR emitted integrated power in Left-Hand Circular Polarization from 100 to 400 kHz
- skr e lh 10 1000 - Cassini/RPWS SKR emitted integrated power in Left-Hand Circular Polarization from 10 to 1000 kHz
- skr e rh 100 400 - Cassini/RPWS SKR emitted integrated power in Right-Hand Circular Polarization from 100 to 400 kHz
- skr e rh 10 1000 - Cassini/RPWS SKR emitted integrated power in Right-Hand Circular Polarization from 10 to 1000 kHz
- skr r lh 100 400 - Cassini/RPWS SKR received integrated power in Left-Hand Circular Polarization from 100 to 400 kHz
- skr r lh 10 1000 - Cassini/RPWS SKR received integrated power in Left-Hand Circular Polarization from 10 to 1000 kHz
- skr r rh 100 400 - Cassini/RPWS SKR received integrated power in Right-Hand Circular Polarization from 100 to 400 kHz
- skr r rh 10 1000 - Cassini/RPWS SKR received integrated power in Right-Hand Circular Polarization from 10 to 1000 kHz
- skr s lh - Cassini/RPWS SKR flux density in Left-Hand Circular Polarization
- skr s rh - Cassini/RPWS SKR flux density in Right-Hand Circular Polarization
- skr v lh - Cassini/RPWS Circular polarization degree of Left-Handed SKR
- skr v rh - Cassini/RPWS Circular polarization degree of Right-Handed SKR
Catalog Path: tag:das2.org,2012:site:/voparis/cassini-rpws-hfr/skr
Read From: https://das2.org/catalog/das/site/voparis/cassini-rpws-hfr/skr.json
import json import das2 node = das2.get_node("site:/voparis/cassini-rpws-hfr/skr") # 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['skr_e_lh_100_400']
#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/cassini-rpws-hfr/skr", NULL, NULL); DasJdo* pJdo = DasNode_getJdo(pNode, NULL); size_t uLen; const char* sOut = DasJdo_writePretty(pJdo, " ", "\n", &uLen); fputs(sOut, stdout);