Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CYGNSS soil moisture observation reader #76

Merged
merged 25 commits into from
Jan 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
62886d8
manual merge with update_exports_to_M21C_filespecs
amfox37 Dec 20, 2024
791b346
read_obs_sm_CYGNSS stub
amfox37 Jan 9, 2025
9ffc47a
edit description
amfox37 Jan 9, 2025
1b8bda5
Merge remote-tracking branch 'origin/feature/amfox/LS_OLv8' into feat…
amfox37 Jan 9, 2025
05eb461
add a new type of obs
amfox37 Jan 9, 2025
7fa8180
fix number in ensupd.nml
amfox37 Jan 9, 2025
e6b1dc8
open and read netcdf file
amfox37 Jan 10, 2025
f3b15a0
read mask and fill temp arrays
amfox37 Jan 11, 2025
3f9a03c
add CYGNSS_SM_daily
amfox37 Jan 13, 2025
caf2d25
tile space
amfox37 Jan 13, 2025
8d1338b
Merge branch 'develop' into feature/amfox/cygnss_obs_reader
amfox37 Jan 14, 2025
2085488
comments and error units
amfox37 Jan 17, 2025
cb49cb0
todo: scaling
amfox37 Jan 17, 2025
9ca0f0f
Fixed typos and alignment in new CYGNSS soil moisture obs reader (cls…
gmao-rreichle Jan 20, 2025
9577504
Changed units of CYGNSS soil moisture obs to SI standard (LDASsa_DEFA…
gmao-rreichle Jan 20, 2025
6fe11e9
first pass at addressing review comments
amfox37 Jan 24, 2025
a27412e
bugfix in fname
amfox37 Jan 25, 2025
3638e93
further improvements after review
amfox37 Jan 28, 2025
4caa7d9
Merge branch 'develop' into feature/amfox/cygnss_obs_reader
gmao-rreichle Jan 30, 2025
a676245
Update CHANGELOG.md
gmao-rreichle Jan 30, 2025
0599e29
minimal cleanup of CYGNSS obs reader (clsm_ensupd_read_obs.F90)
gmao-rreichle Jan 30, 2025
d8665db
check that CYGNSS daily and subdaily sm obs are not both assimilated;…
gmao-rreichle Jan 30, 2025
220de4e
update obs file location
amfox37 Jan 30, 2025
e274718
update flag values and tolerance in float compare
amfox37 Jan 30, 2025
9a1d6ed
for CYGNSS sm obs, added call to scale_obs_sfmc_zscore() (clsm_ensupd…
gmao-rreichle Jan 31, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- New update_type for joint 3d soil moisture and 1d snow analysis (Tb+sfmc+sfds+SCF obs).
- Use M21C surface met forcing.
- Added CYGNSS soil moisture reader.
- Added M21C surface met forcing.

### Changed

Expand Down
2 changes: 1 addition & 1 deletion GEOSlandassim_GridComp/clsm_ensupd_glob_param.F90
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module clsm_ensupd_glob_param
! total number of all obs species defined in "ensupd" namelist file
! (regardless of whether "assim" flag is true or false)

integer, parameter :: N_obs_species_nml = 53
integer, parameter :: N_obs_species_nml = 55

! ----------------------------------------------------------------------
!
Expand Down
Loading