Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@ convert_gpsro_bufr
SMAP_L2_to_obs
convert_sat_chl
ssec_satwnd
gts_to_dart
littler_tf_dart
rad_3dvar_to_dart

# Test programs built by developer_tests
rttov_test
Expand Down
1 change: 1 addition & 0 deletions observations/obs_converters/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,7 @@ converters) include:
- ``text_GITM``: See ``./text_GITM``
- ``tpw``: :doc:`./tpw/tpw`
- ``Tropical Cyclones``: :doc:`./tropical_cyclone/tc_to_obs`
- ``3DVAR/4DVAR``: :doc:`./var/var`
- ``Var (little-r)``: :doc:`./var/littler_tf_dart`
- ``Var (radar)``: :doc:`./var/rad_3dvar_to_dart`

Expand Down
10 changes: 5 additions & 5 deletions observations/obs_converters/var/3DVAR_OBSPROC/README
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

Before building the executables in the work directory you
will need to copy some of the WRF distribution files into
this directory. The files listed below are what is needed
with WRFDA v3.2.1 (the current release at this time).
this directory (DART/observations/obs_converters/var/3DVAR_OBSPROC). The files listed below are what is needed
with WRFDA v3.2.1 (the current release at this time). The files can be found here: [](https://github.com/wrf-model/WRF/tree/master/var/obsproc/MAP_plot)

From WRFDA/var/obsproc/MAP_plot/Dir_map, copy to here:
From WRF/var/obsproc/MAP_plot/Dir_map, copy to here:

DA_Constants.f90
DA_Define_Structures.f90
Expand All @@ -18,15 +18,15 @@ DA_Read_Obs_Info.inc
DA_Setup_Obs_Structures.inc
module_obs.F90

As well as from WRFDA/var/obsproc/MAP_plot/include, copy to here:
As well as from WRF/var/obsproc/MAP_plot/include, copy to here:

maps.incl
nestdmn.incl


See here for more info on this code:

http://www.mmm.ucar.edu/wrf/WG4/wrfvar/3dvar_obsproc.htm
https://github.com/wrf-model/WRF/releases

# <next few lines under version control, do not edit>
# $URL$
Expand Down
7 changes: 4 additions & 3 deletions observations/obs_converters/var/var.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
Overview
--------

The programs in this directory help convert data which is
The programs in the ``obs_converters/var`` directory help convert data which is
formatted for input into the 3DVAR/4DVAR programs into DART
obs_seq observation files.

This directory contains conversion programs for various
The directory contains conversion programs for various
obs formats related to 3D-Var, WRF-Var, and MM5:

- :doc:`./littler_tf_dart` to and back from little-r format, temperature and winds only.
Expand All @@ -17,7 +17,8 @@ obs formats related to 3D-Var, WRF-Var, and MM5:

You need to add some WRF-Var source files to the 3DVAR_OBSPROC
directory, and then you can go into the work directory and
run the 'quickbuild.sh' script.
run the 'quickbuild.sh' script. The required WRF-Var source files are
listed in ``3DVAR_OBSPROC/README``.

The little-r converter may need changes to the code to convert
from the original quality control flags into QC flags compatible
Expand Down
3 changes: 2 additions & 1 deletion observations/obs_converters/var/work/quickbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ source "$DART"/build_templates/buildconvfunctions.sh
CONVERTER=var
LOCATION=threed_sphere
EXTRA="$DART/models/wrf/model_mod.f90 \
$DART/models/wrf/module_map_utils.f90"
$DART/models/wrf/module_map_utils.f90 \
$DART/observations/obs_converters/var/3DVAR_OBSPROC"


programs=(
Expand Down