mirror of https://github.com/ecmwf/eccodes.git
removed ecmwf local paramids with srcsink in if clause
This commit is contained in:
parent
f11e63fda8
commit
63fd8ac2f9
|
@ -33,7 +33,7 @@ if (tablesVersion >= 31 ) {
|
||||||
concept chemShortName (unknown,"chemShortName.def",conceptsDir2,conceptsDir1): no_copy,dump;
|
concept chemShortName (unknown,"chemShortName.def",conceptsDir2,conceptsDir1): no_copy,dump;
|
||||||
concept chemFormula (unknown,"chemFormula.def",conceptsDir2,conceptsDir1): no_copy,dump;
|
concept chemFormula (unknown,"chemFormula.def",conceptsDir2,conceptsDir1): no_copy,dump;
|
||||||
|
|
||||||
if ( !(chemId is minus_one) ) {
|
if ( chemId != -1 ) {
|
||||||
alias mars.chem = chemId;
|
alias mars.chem = chemId;
|
||||||
alias parameter.chemId = chemId;
|
alias parameter.chemId = chemId;
|
||||||
alias ls.chemShortName = chemShortName;
|
alias ls.chemShortName = chemShortName;
|
||||||
|
@ -47,7 +47,7 @@ if (tablesVersion >= 31 ) {
|
||||||
concept srcSinkName (unknown,"srcSinkName.def",conceptsDir2,conceptsDir1): no_copy,dump;
|
concept srcSinkName (unknown,"srcSinkName.def",conceptsDir2,conceptsDir1): no_copy,dump;
|
||||||
concept srcSinkShortName (unknown,"srcSinkShortName.def",conceptsDir2,conceptsDir1): no_copy,dump;
|
concept srcSinkShortName (unknown,"srcSinkShortName.def",conceptsDir2,conceptsDir1): no_copy,dump;
|
||||||
|
|
||||||
if ( !(srcSinkId is minus_one) ) {
|
if ( srcSinkId != -1 ) {
|
||||||
alias mars.srcSink = srcSinkId;
|
alias mars.srcSink = srcSinkId;
|
||||||
alias parameter.srcSinkId = srcSinkId;
|
alias parameter.srcSinkId = srcSinkId;
|
||||||
alias ls.srcSinkShortName = srcSinkShortName;
|
alias ls.srcSinkShortName = srcSinkShortName;
|
||||||
|
|
Loading…
Reference in New Issue