<HTML> <BODY BGCOLOR=#ccccdd LINK=#0000aa VLINK=#0000ff ALINK=#ff0000 ><BASE TARGET="bottom_target"><PRE>
<A NAME='DA_METAR'><A href='../../html_code/metar/da_metar.f90.html#DA_METAR' TARGET='top_target'><IMG SRC="../../gif/bar_purple.gif" border=0></A>
module da_metar 3,10
use module_domain, only : domain
use da_control
, only : obs_qc_pointer,max_ob_levels,missing_r, &
v_interp_p, v_interp_h, check_max_iv_print, &
missing, max_error_uv, max_error_t, rootproc, &
max_error_p,max_error_q, check_max_iv_unit,check_max_iv, fails_error_max, &
max_stheight_diff,missing_data,max_error_bq,max_error_slp, &
max_error_bt, max_error_buv, metar,max_error_thickness, &
sfc_assi_options, trace_use_dull, anal_type_verify, kts,kte, &
kms,kme,sfc_assi_options_1,sfc_assi_options_2, max_ext_its, &
qcstat_conv_unit,ob_vars, &
convert_fd2uv, convert_uv2fd, max_error_spd, max_error_dir, &
max_omb_spd, max_omb_dir, pi, qc_rej_both, &
wind_sd_metar, wind_stats_sd
use da_grid_definitions
, only : da_ffdduv, da_ffdduv_model, da_ffdduv_diagnose
use da_define_structures
, only : maxmin_type, iv_type, y_type, jo_type, &
bad_data_type, x_type, number_type, bad_data_type, &
maxmin_type
use da_interpolation
, only : da_to_zk,da_interp_lin_2d, &
da_interp_lin_3d,da_interp_lin_3d_adj,da_interp_lin_2d_adj
use da_par_util
, only : da_proc_stats_combine
use da_par_util1
, only : da_proc_sum_int
use da_physics
, only : da_sfc_pre,da_transform_xtopsfc_adj, &
da_transform_xtopsfc, da_uv_to_sd_lin, da_uv_to_sd_adj
use da_statistics
, only : da_stats_calculate
use da_tools
, only : da_max_error_qc, da_residual,da_obs_sfc_correction, da_convert_zk
use da_tracing
, only : da_trace_entry, da_trace_exit
! The "stats_metar_type" is ONLY used locally in da_metar:
type residual_metar1_type
real :: u ! u-wind.
real :: v ! v-wind.
real :: t ! temperature
real :: p ! pressure
real :: q ! specific humidity
end type residual_metar1_type
type maxmin_metar_stats_type
type (maxmin_type) :: u, v, t, p, q
end type maxmin_metar_stats_type
type stats_metar_type
type (maxmin_metar_stats_type) :: maximum, minimum
type (residual_metar1_type) :: average, rms_err
end type stats_metar_type
contains
#include "da_ao_stats_metar.inc"
#include "da_jo_and_grady_metar.inc"
#include "da_residual_metar.inc"
#include "da_oi_stats_metar.inc"
#include "da_print_stats_metar.inc"
#include "da_transform_xtoy_metar.inc"
#include "da_transform_xtoy_metar_adj.inc"
#include "da_check_max_iv_metar.inc"
#include "da_get_innov_vector_metar.inc"
#include "da_calculate_grady_metar.inc"
end module da_metar