-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0741a92
commit ca3d01f
Showing
6 changed files
with
22 additions
and
5 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 |
---|---|---|
|
@@ -7,3 +7,4 @@ find_package(soca REQUIRED) | |
|
||
add_subdirectory(soca) | ||
add_subdirectory(ioda_example) | ||
add_subdirectory(test) |
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,6 @@ | ||
ecbuild_add_executable( TARGET gdas_dumpioda.x | ||
SOURCES gdas_dumpioda.cc ) | ||
ecbuild_add_executable( TARGET gdas_meanioda.x | ||
SOURCES gdas_meanioda.cc ) | ||
|
||
target_compile_features( gdas_dumpioda.x PUBLIC cxx_std_17) | ||
target_link_libraries( gdas_dumpioda.x PUBLIC oops ioda) | ||
target_compile_features( gdas_meanioda.x PUBLIC cxx_std_17) | ||
target_link_libraries( gdas_meanioda.x PUBLIC oops ioda) | ||
|
2 changes: 1 addition & 1 deletion
2
utils/ioda_example/gdas_dumpioda.cc → utils/ioda_example/gdas_meanioda.cc
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Test example IODA utility that computes the mean of a variable | ||
ecbuild_add_test( TARGET test_gdasapp_util_ioda_example | ||
COMMAND ${CMAKE_BINARY_DIR}/bin/gdas_meanioda.x | ||
ARGS "testinput/gdas_meanioda.yaml" | ||
LIBS gdas-utils) |
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,11 @@ | ||
window begin: 2020-11-01T09:00:00Z | ||
window end: 2020-11-01T15:00:00Z | ||
obs space: | ||
name: amsua_n19 | ||
obsdatain: | ||
engine: | ||
type: H5File | ||
obsfile: Data/ufo/testinput_tier_1/instruments/radiance/amsua_n19_obs_2020110112_m.nc4 | ||
simulated variables: [brightnessTemperature] | ||
observed variables: [brightnessTemperature] | ||
channel: 6 |