Skip to content

Commit

Permalink
#1581 Use MetNcPointObsOut instead of MetNcPointObs2Write
Browse files Browse the repository at this point in the history
  • Loading branch information
Howard Soh committed May 20, 2021
1 parent a44afb7 commit 85fcd8f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions met/src/tools/other/ascii2nc/file_handler.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ using namespace netCDF;
#include "vx_summary.h"

#include "nc_obs_util.h"
#include "nc_point_obs.h"
#include "nc_point_obs_out.h"
#include "nc_summary.h"

////////////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -86,7 +86,7 @@ class FileHandler
// Variables for writing output NetCDF file

NcFile *_ncFile;
MetNcPointObs2Write nc_point_obs;
MetNcPointObsOut nc_point_obs;

long _nhdr;

Expand Down
4 changes: 2 additions & 2 deletions met/src/tools/other/ioda2nc/ioda2nc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ using namespace std;

#include "vx_summary.h"
#include "nc_obs_util.h"
#include "nc_point_obs.h"
#include "nc_point_obs_out.h"
#include "nc_summary.h"

////////////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -105,7 +105,7 @@ static IntArray filtered_times;
static bool do_summary;
static bool save_summary_only = false;
static SummaryObs *summary_obs;
static MetNcPointObs2Write nc_point_obs;
static MetNcPointObsOut nc_point_obs;


////////////////////////////////////////////////////////////////////////
Expand Down
4 changes: 2 additions & 2 deletions met/src/tools/other/lidar2nc/lidar2nc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ using namespace std;

#include "calipso_5km.h"
#include "nc_obs_util.h"
#include "nc_point_obs.h"
#include "nc_point_obs_out.h"

////////////////////////////////////////////////////////////////////////

Expand All @@ -73,7 +73,7 @@ static const int na_len = strlen(na_str);
static IntArray valid_times;

static NcFile *ncf;
static MetNcPointObs2Write nc_point_obs;
static MetNcPointObsOut nc_point_obs;

////////////////////////////////////////////////////////////////////////

Expand Down
4 changes: 2 additions & 2 deletions met/src/tools/other/madis2nc/madis2nc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ using namespace netCDF;
#include "vx_cal.h"
#include "vx_math.h"
#include "vx_log.h"
#include "nc_point_obs.h"
#include "nc_point_obs_out.h"

////////////////////////////////////////////////////////////////////////

Expand All @@ -71,7 +71,7 @@ static const int FIELD_COUNT = 50;
static const int BUFFER_SIZE = OBS_BUFFER_SIZE / FIELD_COUNT;

static int nc_buf_size;
static MetNcPointObs2Write nc_point_obs;
static MetNcPointObsOut nc_point_obs;
static vector< Observation > obs_vector;
static vector< ConcatString > md_files;

Expand Down
4 changes: 2 additions & 2 deletions met/src/tools/other/pb2nc/pb2nc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ using namespace std;

#include "vx_summary.h"
#include "nc_obs_util.h"
#include "nc_point_obs.h"
#include "nc_point_obs_out.h"
#include "nc_summary.h"

////////////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -200,7 +200,7 @@ static ConcatString ncfile;
// Input configuration file
static ConcatString config_file;
static PB2NCConfInfo conf_info;
static MetNcPointObs2Write nc_point_obs;
static MetNcPointObsOut nc_point_obs;

// Beginning and ending retention times
static unixtime valid_beg_ut, valid_end_ut;
Expand Down

0 comments on commit 85fcd8f

Please sign in to comment.