Skip to content

Commit

Permalink
Merge pull request #478 from NCAR/fluxnet_converter
Browse files Browse the repository at this point in the history
Fluxnet observation converter
  • Loading branch information
mjs2369 authored Sep 18, 2023
2 parents 70e6af8 + 06c13cf commit 6eeb453
Show file tree
Hide file tree
Showing 10 changed files with 1,544 additions and 12 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,23 @@ individual files.

The changes are now listed with the most recent at the top.

**September 18 2023 :: Fluxnet observation converter and obs_def_rttov13_mod.f90 bug-fixes. Tag v10.8.4**

Fluxnet obs converter:

- Generates a new observation converter (Fluxnetfull_to_obs) for eddy
covariance flux tower data (carbon, water energy fluxes)
- Documentation changes made to the older, deprecated ameriflux
converter (level4_to_obs) and the broken links have been fixed
- New flux tower observation types added to accomodate the forward
operator approach for time aggregated fluxes (daily through monthly)

obs_def_rttov13_mod.f90 bug-fixes:

- Added public get_channel to obs_def_rttov13_mod.f90 to compile WRF
successfully with rttov13.
- Removed cloud_overlap (integer) from the function: get_rttov_option_logical

**August 21 2023 :: CAM-FV shell scripts. Tag v10.8.3**

Performance improvements for CAM-FV shell scripts:
Expand Down
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
author = 'Data Assimilation Research Section'

# The full version, including alpha/beta/rc tags
release = '10.8.3'
release = '10.8.4'
root_doc = 'index'

# -- General configuration ---------------------------------------------------
Expand Down
6 changes: 5 additions & 1 deletion guide/important-capabilities-dart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ is as follows:
+------------------------------------------------------------------------------------------------------+-------------------+-----------------------------------+
| `Aviso <https://www.aviso.altimetry.fr/en/home.html>`__: satellite derived sea surface height | Aviso | netCDF |
+------------------------------------------------------------------------------------------------------+-------------------+-----------------------------------+
| Level 4 Flux Tower data from `AmeriFlux <http://ameriflux.lbl.gov/>`__ | Ameriflux | Comma-separated text |
| Level 4 Flux Tower data | Ameriflux | Comma-separated text |
+------------------------------------------------------------------------------------------------------+-------------------+-----------------------------------+
| Ameriflux Fullset Flux Tower data from `AmeriFlux <https://ameriflux.lbl.gov/data/download-data>`__ | Ameriflux | Comma-separated text |
+------------------------------------------------------------------------------------------------------+-------------------+-----------------------------------+
| Level 2 soil moisture from `COSMOS <http://cosmos.hwr.arizona.edu/>`__ | COSMOS | Fixed-width text |
+------------------------------------------------------------------------------------------------------+-------------------+-----------------------------------+
Expand Down Expand Up @@ -104,6 +106,8 @@ is as follows:
+------------------------------------------------------------------------------------------------------+-------------------+-----------------------------------+
| Sea surface temperature | SST | netCDF |
+------------------------------------------------------------------------------------------------------+-------------------+-----------------------------------+
| Solar-Induced Fluorescence | SIF | netCDF |
+------------------------------------------------------------------------------------------------------+-------------------+-----------------------------------+
| Special Sensor Ultraviolet Spectrographic Imager `(SSUSI) <https://ssusi.jhuapl.edu/>`__ retrievals | SSUSI | netCDF |
+------------------------------------------------------------------------------------------------------+-------------------+-----------------------------------+
| World Ocean Database `(WOD) <http://www.nodc.noaa.gov/OC5/WOD09/pr_wod09.html>`__ | WOD | World Ocean Database packed ASCII |
Expand Down
5 changes: 2 additions & 3 deletions observations/forward_operators/obs_def_rttov13_mod.f90
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,8 @@ module obs_def_rttov_mod
write_rttov_metadata, &
interactive_rttov_metadata, &
get_expected_radiance, &
get_rttov_option_logical
get_rttov_option_logical, &
get_channel

! The rttov_test.f90 program uses these, but no one else should.

Expand Down Expand Up @@ -4238,8 +4239,6 @@ function get_rttov_option_logical(field_name) result(p)
p = USER_CLD_OPT_PARAM
case('GRID_BOX_AVG_CLOUD')
p = GRID_BOX_AVG_CLOUD
case('CLOUD_OVERLAP')
p = cloud_overlap
case('ADDPC')
p = ADDPC
case('ADDRADREC')
Expand Down
Loading

0 comments on commit 6eeb453

Please sign in to comment.