-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds variable rename maps when exporting to CDF
A new command line argument, '-m' can be used to map a dataset,dimension,role triplet to a CDF variable name without requiring a skeleton file.
- Loading branch information
Showing
6 changed files
with
413 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# This file provides a mapping between Juno/Waves survey data as | ||
# pulled from a das2 server into desired CDF variable names. To | ||
# use it run: | ||
# | ||
# BEGIN=2020-01-01 | ||
# END=2020-01-02 | ||
# | ||
# SERVER="https://jupiter.physics.uiowa.edu/das/server?server=dataset" | ||
# DATASET="&dataset=Juno/WAV/Survey" | ||
# START="&start_time=${BEGIN}" | ||
# STOP="&stop_time=${END}" | ||
# | ||
# INPUT="${SERVER}${DATASET}${START}${STOP}" | ||
# OUTPUT="./jno_wav_survey_${BEGIN}_v0.1.cdf" | ||
# | ||
# das3_cdf -r -i "${INPUT}" -m waves_survey_cdf_map.conf -o ${OUTPUT} | ||
# | ||
|
||
LFR_LO = 10 spec_dens | ||
LFR_LO_Epoch = 10 Time | ||
LFR_LO_Freq = 10 frequency | ||
|
||
LFR_HI = 20 spec_dens | ||
LFR_HI_Epoch = 20 Time | ||
LFR_HI_Freq = 20 frequency | ||
|
||
HFR_LO = 30 spec_dens | ||
HFR_LO_Epoch = 30 Time | ||
HFR_LO_Freq = 30 frequency | ||
|
||
HFR_HI = 40 spec_dens | ||
HFR_HI_Epoch = 40 Time | ||
HFR_HI_Freq = 40 frequency | ||
|
Oops, something went wrong.