Skip to content

Commit

Permalink
Per #3006, switch from using global 0.5 degree reference grid to 0.1 …
Browse files Browse the repository at this point in the history
…degree. This still isn't good enough though. Instead, we need to get rid of the reference grid altogether and keep track of the grid information separately for each mask.
  • Loading branch information
JohnHalleyGotway committed Jan 21, 2025
1 parent ac9f85a commit 67bc7dd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/tools/core/pair_stat/pair_stat_conf_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@

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

// Reference global grid
static Grid grid("G004");
// Reference global 1/10-th degree grid
static const LatLonData GlobalTenthData =
{ "GlobalTenthDegree", -90.0, -0.0, 0.1, 0.1, 1801, 3601 };
static Grid grid(GlobalTenthData);

// Indices for the output flag types in the configuration file
static const int i_fho = 0;
Expand Down

0 comments on commit 67bc7dd

Please sign in to comment.