-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Marine obs reorganization and more ... (#876)
Things done: - Assumes that the obs will be organized like something like this from now on: ```console └── gdas.20180415 └── 12 └── ocean ├── adt │ ├── rads_adt_3a_2018105.nc │ └── rads_adt_3b_2018105.nc ├── icec │ ├── AMSR2-SEAICE-NH_v2r2_GW1_s201804150835180_e201804151014170_c201804151052280.nc │ ├── AMSR2-SEAICE-NH_v2r2_GW1_s201804151014190_e201804151150170_c201804151309570.nc │ ├── AMSR2-SEAICE-SH_v2r2_GW1_s201804150835180_e201804151014170_c201804151052280.nc │ └── AMSR2-SEAICE-SH_v2r2_GW1_s201804151014190_e201804151150170_c201804151309570.nc ├── sss └── sst ├── 20180415095000-STAR-L3U_GHRSST-SSTsubskin-AVHRRF_MB-ACSPO_V2.80-v02.0-fv01.0.nc ├── 20180415114000-STAR-L3U_GHRSST-SSTsubskin-AVHRRF_MB-ACSPO_V2.80-v02.0-fv01.0.nc └── 20180415132000-STAR-L3U_GHRSST-SSTsubskin-AVHRRF_MB-ACSPO_V2.80-v02.0-fv01.0.nc ``` - Use of the `*` wildcard instead of `?` to simplify the obs file selection - Addition of binning for the sst retrieval - The `soca` # needs to be more recent. - This wasn't planned as part of this work, but the bump localization was having issues, so I replaced it with `diffusion` ### Issues addressed - fixes #869 - fixes #874
- Loading branch information
1 parent
9ba6bb9
commit 5549447
Showing
16 changed files
with
53 additions
and
92 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
observers: | ||
- !INC ${OBS_YAML_DIR}/adt_rads_all.yaml | ||
- !INC ${OBS_YAML_DIR}/sst_metopb_l3u.yaml | ||
#- !INC ${OBS_YAML_DIR}/sst_metopb_l3u.yaml | ||
- !INC ${OBS_YAML_DIR}/icec_amsr2_north.yaml | ||
- !INC ${OBS_YAML_DIR}/icec_amsr2_south.yaml |
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,41 +1,44 @@ | ||
observations: | ||
- obs space: | ||
name: sss_smap | ||
dmpdir subdir: SSS | ||
dmpdir regex: SMAP_L2B_SSS_NRT_?????_[AD]_????????T??????.h5 | ||
dmpdir subdir: ocean/sss | ||
dmpdir regex: SMAP_L2B_SSS_NRT_*.h5 | ||
provider: SMAP | ||
output file: sss_smap.ioda.nc | ||
- obs space: | ||
name: sss_smos | ||
provider: SMOS | ||
dmpdir subdir: SSS | ||
dmpdir subdir: ocean/sss | ||
output file: sss_smos.ioda.nc | ||
dmpdir regex: SM_OPER_MIR_OSUDP2_????????T??????_????????T??????_700_001_1.nc | ||
dmpdir regex: SM_OPER_MIR_OSUDP2_*.nc | ||
- obs space: | ||
name: adt_rads_all | ||
dmpdir subdir: ADT | ||
dmpdir regex: rads_adt_??_???????.nc | ||
dmpdir subdir: ocean/adt | ||
dmpdir regex: rads_adt_*.nc | ||
provider: RADS | ||
output file: adt_rads_all.nc4 | ||
- obs space: | ||
name: icec_amsr2_north | ||
provider: AMSR2 | ||
dmpdir subdir: icec | ||
dmpdir subdir: ocean/icec | ||
output file: icec_amsr2_north.ioda.nc | ||
dmpdir regex: AMSR2-SEAICE-NH_v2r2_GW1_s???????????????_e???????????????_c???????????????.nc | ||
dmpdir regex: AMSR2-SEAICE-NH_v2r2_GW1_s*.nc | ||
- obs space: | ||
name: icec_amsr2_south | ||
provider: AMSR2 | ||
dmpdir subdir: icec | ||
dmpdir subdir: ocean/icec | ||
output file: icec_amsr2_south.ioda.nc | ||
dmpdir regex: AMSR2-SEAICE-SH_v2r2_GW1_s???????????????_e???????????????_c???????????????.nc | ||
dmpdir regex: AMSR2-SEAICE-SH_v2r2_GW1_s*.nc | ||
- obs space: | ||
name: sst_metopb_l3u | ||
provider: GHRSST | ||
dmpdir subdir: 'sst' | ||
dmpdir subdir: 'ocean/sst' | ||
output file: sst_metopb_l3u.ioda.nc | ||
dmpdir regex: '??????????????-STAR-L3U_GHRSST-SSTsubskin-AVHRRF_MB-ACSPO_V2.80-v02.0-fv01.0.nc' | ||
dmpdir regex: '*-L3U_GHRSST-SSTsubskin-AVHRRF_MB-ACSPO_V*.nc' | ||
bounds: | ||
units: C | ||
min: -3.0 | ||
max: 50.0 | ||
binning: | ||
stride: 5 | ||
min number of obs: 10 |
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 fv3-jedi
updated
16 files
Submodule ioda
updated
9 files
Submodule iodaconv
updated
25 files
Submodule land-imsproc
updated
from 637381 to 2ac7c0
Submodule oops
updated
33 files
Submodule saber
updated
80 files
Submodule soca
updated
12 files
Submodule ufo
updated
26 files
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