mirror of https://github.com/ecmwf/eccodes.git
48 lines
1.2 KiB
Modula-2
48 lines
1.2 KiB
Modula-2
# author: Sebastien Villaume
|
|
# created: 14 Feb 2014
|
|
#
|
|
#########################
|
|
|
|
constant conceptsMasterMarsDir="mars" : hidden;
|
|
constant conceptsLocalMarsDirAll="mars/[centre:s]" : hidden;
|
|
|
|
##########################
|
|
# #
|
|
# Base MARS keywors #
|
|
# #
|
|
##########################
|
|
|
|
alias mars.class = marsClass;
|
|
alias mars.type = marsType;
|
|
alias mars.stream = marsStream;
|
|
alias mars.model = marsModel;
|
|
alias mars.expver = experimentVersionNumber;
|
|
alias mars.domain = globalDomain;
|
|
|
|
#########################
|
|
# #
|
|
# local section 82 #
|
|
# #
|
|
#########################
|
|
|
|
### nothing needed here...
|
|
|
|
#########################
|
|
# #
|
|
# local section 83 #
|
|
# #
|
|
#########################
|
|
|
|
if ( localDefinitionNumber == 83 ) {
|
|
|
|
alias mars.sort = matchSort;
|
|
alias mars.timerepres = matchTimeRepres;
|
|
alias mars.landtype = matchLandType;
|
|
alias mars.aerosolbinnumber = matchAerosolBinNumber;
|
|
|
|
concept_nofail matchAerosolPacking (unknown,"aerosolPackingConcept.def",conceptsLocalMarsDirAll,conceptsMasterMarsDir);
|
|
alias mars.aerosolpacking = matchAerosolPacking;
|
|
|
|
}
|
|
|