From 67bc7dd8ca5c3b8dfdc487294283fac427027dae Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Tue, 21 Jan 2025 21:47:43 +0000 Subject: [PATCH] Per #3006, switch from using global 0.5 degree reference grid to 0.1 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. --- src/tools/core/pair_stat/pair_stat_conf_info.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/tools/core/pair_stat/pair_stat_conf_info.h b/src/tools/core/pair_stat/pair_stat_conf_info.h index 6c88e21d04..51e1d9529b 100644 --- a/src/tools/core/pair_stat/pair_stat_conf_info.h +++ b/src/tools/core/pair_stat/pair_stat_conf_info.h @@ -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;