-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update da-utils hash to build ioda-stats (#1281)
NOAA-EMC/DA-utils#2 added in a basic executable to create intermediate statistic files This PR updates the hash to the latest for DA-Utils. But to do so, also requires inclusion of ESMF in the modulefiles, because of other code in DA-Utils (to support land DA) --------- Co-authored-by: Guillaume Vernieres <[email protected]>
- Loading branch information
1 parent
af67dc0
commit f49e2e6
Showing
6 changed files
with
6 additions
and
2 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
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
Submodule da-utils
updated
19 files
+2 −0 | .gitignore | |
+7 −3 | CMakeLists.txt | |
+9 −0 | README | |
+51 −0 | bundle/CMakeLists.txt | |
+135 −0 | cmake/Modules/FindESMF.cmake | |
+347 −0 | cmake/Modules/FindNetCDF.cmake | |
+7 −1 | src/CMakeLists.txt | |
+5 −0 | src/ioda-stats/CMakeLists.txt | |
+123 −0 | src/ioda-stats/calcstats.h | |
+12 −0 | src/ioda-stats/iodastats.cc | |
+237 −0 | src/ioda-stats/iodastats.h | |
+101 −0 | src/ioda-stats/statfile.h | |
+13 −0 | src/regridStates/CMakeLists.txt | |
+28 −0 | src/regridStates/README | |
+284 −0 | src/regridStates/fv3_grid.F90 | |
+247 −0 | src/regridStates/regridStates.F90 | |
+14 −0 | src/regridStates/tile2tile.nml | |
+54 −0 | src/regridStates/utils.F90 | |
+18 −6 | test/CMakeLists.txt |