Merge branch 'develop' into bugfix/ECC-1433-CCSDS-encoding_small_numbers_fails

This commit is contained in:
Eugen Betke 2023-06-13 11:29:14 +00:00
commit 53276ae1cb
2 changed files with 13 additions and 1 deletions

View File

@ -0,0 +1,8 @@
# aliasing MARS date and time to the date and time defined in section 1
alias mars.date = dataDate;
alias mars.time = dataTime;
# dateOfAnalysis and timeOfAnalysis still exist in this stream but is not used in MARS
unalias mars.step;
alias mars.step = stepRange;

View File

@ -1 +1,5 @@
alias mars.step = endStep;
if (levtype is "o2d" || levtype is "o3d") {
alias mars.step = stepRange;
} else {
alias mars.step = endStep;
}