-
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.
Merge branch 'feature/ECC-1903-tablesVersion-switch-with-chem-param-s…
…plit' into feature/mtg2_switch_paramtype_timeproc
- Loading branch information
Showing
284 changed files
with
161,821 additions
and
76,200 deletions.
There are no files selected for viewing
37,670 changes: 19,378 additions & 18,292 deletions
37,670
definitions/grib2/localConcepts/ecmf/name.33.def
Large diffs are not rendered by default.
Oops, something went wrong.
37,686 changes: 19,386 additions & 18,300 deletions
37,686
definitions/grib2/localConcepts/ecmf/paramId.33.def
Large diffs are not rendered by default.
Oops, something went wrong.
36,976 changes: 19,031 additions & 17,945 deletions
36,976
definitions/grib2/localConcepts/ecmf/shortName.33.def
Large diffs are not rendered by default.
Oops, something went wrong.
36,006 changes: 18,546 additions & 17,460 deletions
36,006
definitions/grib2/localConcepts/ecmf/units.33.def
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,38 @@ | ||
! (C) Copyright 2005- ECMWF. | ||
! | ||
! This software is licensed under the terms of the Apache Licence Version 2.0 | ||
! which can be obtained at http://www.apache.org/licenses/LICENSECODES_INTERNAL_ERROR.0. | ||
! | ||
! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by | ||
! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. | ||
! | ||
program key_is_computed | ||
use eccodes | ||
implicit none | ||
integer :: ihandle, is_computed=0 | ||
|
||
CALL codes_grib_new_from_samples(ihandle, "regular_ll_sfc_grib2") | ||
|
||
CALL codes_key_is_computed(ihandle, 'edition', is_computed) | ||
IF (is_computed /= 0) THEN | ||
call codes_check(CODES_INTERNAL_ERROR, 'Error', 'key edition is coded') | ||
END IF | ||
|
||
CALL codes_key_is_computed(ihandle, 'longitudeOfLastGridPoint', is_computed) | ||
IF (is_computed /= 0) THEN | ||
call codes_check(CODES_INTERNAL_ERROR, 'Error', 'key longitudeOfLastGridPoint is coded') | ||
END IF | ||
|
||
CALL codes_key_is_computed(ihandle, 'longitudeOfLastGridPointInDegrees', is_computed) | ||
IF (is_computed /= 1) THEN | ||
call codes_check(CODES_INTERNAL_ERROR, 'Error', 'key longitudeOfLastGridPointInDegrees is computed') | ||
END IF | ||
|
||
CALL codes_key_is_computed(ihandle, 'gridType', is_computed) | ||
IF (is_computed /= 1) THEN | ||
call codes_check(CODES_INTERNAL_ERROR, 'Error', 'key gridType is computed') | ||
END IF | ||
|
||
CALL codes_release(ihandle) | ||
|
||
end program key_is_computed |
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,16 @@ | ||
#!/bin/sh | ||
# (C) Copyright 2005- ECMWF. | ||
# | ||
# This software is licensed under the terms of the Apache Licence Version 2.0 | ||
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. | ||
# | ||
# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by | ||
# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. | ||
# | ||
|
||
. ./include.ctest.sh | ||
|
||
label="f_key_is_computed" | ||
|
||
${examples_dir}/eccodes_f_key_is_computed | ||
|
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
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
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
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
Oops, something went wrong.