-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ECC-2010: Merge changes from branch feature/ECC-2010-grib2-activate-t…
- Loading branch information
Showing
16 changed files
with
101 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
# (C) Copyright 2005- ECMWF. | ||
|
||
# See ECC-1846 | ||
if (centre is "ecmf" or datasetForLocal is "era6") { | ||
concept modelName(unknown, "modelNameConcept.def", conceptsMasterDir, conceptsLocalDirAll): no_copy, dump, read_only; | ||
# This is only read when centre=ecmf, so can remove if statement that was here | ||
# This is ecmf local so we shouldnt use MasterDir. Instead we look for pseudocentre (conceptsDir2) then centre (conceptsLocalDirAll) | ||
|
||
if (modelName isnot "unknown") { | ||
concept modelVersion(unknown, "modelVersionConcept_[modelName].def", conceptsMasterDir, conceptsLocalDirAll): no_copy, dump, read_only; | ||
# alias ls.model = modelName; | ||
# alias mars.model = modelName; | ||
} | ||
concept modelName(unknown, "modelNameConcept.def", conceptsDir2, conceptsLocalDirAll): no_copy, dump, read_only; | ||
|
||
if (modelName isnot "unknown") { | ||
concept modelVersion(unknown, "modelVersionConcept.[modelName].def", conceptsDir2, conceptsLocalDirAll): no_copy, dump, read_only; | ||
if ( defined(marsClass) && (marsClass is "ai" || marsClass is "ml") ) { | ||
alias ls.model = modelName; | ||
alias mars.model = modelName; | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
definitions/grib2/localConcepts/destine/modelNameConcept.def
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,18 @@ | ||
'IFS' = { | ||
backgroundProcess = 255; | ||
} | ||
'AIFS' = { | ||
backgroundProcess = 1; | ||
} | ||
'ICON' = { | ||
backgroundProcess = 2; | ||
} | ||
'ALARO' = { | ||
backgroundProcess = 3; | ||
} | ||
'AROME' = { | ||
backgroundProcess = 4; | ||
} | ||
'HARMONIE-AROME' = { | ||
backgroundProcess = 5; | ||
} |
File renamed without changes.
3 changes: 3 additions & 0 deletions
3
definitions/grib2/localConcepts/destine/modelVersionConcept.ALARO.def
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,3 @@ | ||
'cy49t2' = { generatingProcessIdentifier = 3; } | ||
'cy48t3' = { generatingProcessIdentifier = 2; } | ||
'cy46h1' = { generatingProcessIdentifier = 1; } |
3 changes: 3 additions & 0 deletions
3
definitions/grib2/localConcepts/destine/modelVersionConcept.AROME.def
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,3 @@ | ||
'cy49t2' = { generatingProcessIdentifier = 3; } | ||
'cy48t3' = { generatingProcessIdentifier = 2; } | ||
'cy46h1' = { generatingProcessIdentifier = 1; } |
3 changes: 3 additions & 0 deletions
3
definitions/grib2/localConcepts/destine/modelVersionConcept.HARMONIE-AROME.def
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,3 @@ | ||
'cy49t2' = { generatingProcessIdentifier = 3; } | ||
'cy48t3' = { generatingProcessIdentifier = 2; } | ||
'cy46h1' = { generatingProcessIdentifier = 1; } |
18 changes: 18 additions & 0 deletions
18
definitions/grib2/localConcepts/destine/modelVersionConcept.IFS.def
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,18 @@ | ||
'cy50r3' = { generatingProcessIdentifier = 163; } | ||
'cy50r2' = { generatingProcessIdentifier = 162; } | ||
'cy50r1' = { generatingProcessIdentifier = 161; } | ||
'cy49r3' = { generatingProcessIdentifier = 160; } | ||
'cy49r2' = { generatingProcessIdentifier = 159; } | ||
'cy49r1' = { generatingProcessIdentifier = 158; } | ||
'cy48r3' = { generatingProcessIdentifier = 157; } | ||
'climatedt' = { generatingProcessIdentifier = 156; } | ||
'cy48r2' = { generatingProcessIdentifier = 155; } | ||
'cy48r1' = { generatingProcessIdentifier = 154; } | ||
'cy47r3' = { generatingProcessIdentifier = 153; } | ||
'cy47r2' = { generatingProcessIdentifier = 152; } | ||
'cy47r1' = { generatingProcessIdentifier = 151; } | ||
'cy46r1' = { generatingProcessIdentifier = 150; } | ||
'cy45r1' = { generatingProcessIdentifier = 149; } | ||
'cy43r3' = { generatingProcessIdentifier = 148; } | ||
'cy43r1' = { generatingProcessIdentifier = 147; } | ||
'cy41r2' = { generatingProcessIdentifier = 146; } |
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 |
---|---|---|
@@ -1,6 +1,12 @@ | ||
'IFS' = { | ||
backgroundProcess = 255; | ||
} | ||
'AIFS' = { | ||
'aifs-single-mse' = { | ||
backgroundProcess = 1; | ||
} | ||
'aifs-ens-crps' = { | ||
backgroundProcess = 2; | ||
} | ||
'aifs-ens-diff' = { | ||
backgroundProcess = 3; | ||
} |
18 changes: 18 additions & 0 deletions
18
definitions/grib2/localConcepts/ecmf/modelVersionConcept.IFS.def
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,18 @@ | ||
'cy50r3' = { generatingProcessIdentifier = 163; } | ||
'cy50r2' = { generatingProcessIdentifier = 162; } | ||
'cy50r1' = { generatingProcessIdentifier = 161; } | ||
'cy49r3' = { generatingProcessIdentifier = 160; } | ||
'cy49r2' = { generatingProcessIdentifier = 159; } | ||
'cy49r1' = { generatingProcessIdentifier = 158; } | ||
'cy48r3' = { generatingProcessIdentifier = 157; } | ||
'climatedt' = { generatingProcessIdentifier = 156; } | ||
'cy48r2' = { generatingProcessIdentifier = 155; } | ||
'cy48r1' = { generatingProcessIdentifier = 154; } | ||
'cy47r3' = { generatingProcessIdentifier = 153; } | ||
'cy47r2' = { generatingProcessIdentifier = 152; } | ||
'cy47r1' = { generatingProcessIdentifier = 151; } | ||
'cy46r1' = { generatingProcessIdentifier = 150; } | ||
'cy45r1' = { generatingProcessIdentifier = 149; } | ||
'cy43r3' = { generatingProcessIdentifier = 148; } | ||
'cy43r1' = { generatingProcessIdentifier = 147; } | ||
'cy41r2' = { generatingProcessIdentifier = 146; } |
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
definitions/grib2/localConcepts/ecmf/modelVersionConcept.aifs-ens-diff.def
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,2 @@ | ||
'v1' = { generatingProcessIdentifier = 1; } | ||
'v2' = { generatingProcessIdentifier = 2; } |
2 changes: 2 additions & 0 deletions
2
definitions/grib2/localConcepts/ecmf/modelVersionConcept.aifs-single-mse.def
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,2 @@ | ||
'v1' = { generatingProcessIdentifier = 1; } | ||
'v2' = { generatingProcessIdentifier = 2; } |
10 changes: 0 additions & 10 deletions
10
definitions/grib2/localConcepts/ecmf/modelVersionConcept_IFS.def
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
definitions/grib2/localConcepts/era6/modelVersionConcept.AIFS.def
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,2 @@ | ||
'v1' = { generatingProcessIdentifier = 1; } | ||
'v2' = { generatingProcessIdentifier = 2; } |
File renamed without changes.
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