From 0a564a6491128b1d4ff0c1f22c2c29968ea311a3 Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Thu, 28 Dec 2023 15:24:19 -0700 Subject: [PATCH] Per #2769, change default regrdding method from NEAREST to BILIN. --- data/config/TCDiagConfig_default | 4 ++-- docs/Users_Guide/tc-diag.rst | 6 +++--- internal/test_unit/config/TCDiagConfig_ian | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/data/config/TCDiagConfig_default b/data/config/TCDiagConfig_default index 323036f144..6f12ab09d2 100644 --- a/data/config/TCDiagConfig_default +++ b/data/config/TCDiagConfig_default @@ -85,8 +85,8 @@ domain_info = [ // May be set separately in each data "field" array entry // regrid = { - method = NEAREST; - width = 1; + method = BILIN; + width = 2; vld_thresh = 0.5; shape = SQUARE; } diff --git a/docs/Users_Guide/tc-diag.rst b/docs/Users_Guide/tc-diag.rst index 2438dbc050..d8343ca873 100644 --- a/docs/Users_Guide/tc-diag.rst +++ b/docs/Users_Guide/tc-diag.rst @@ -155,13 +155,13 @@ Configuring regridding options .. code-block:: none regrid = { - method = NEAREST; - width = 1; + method = BILIN; + width = 2; vld_thresh = 0.5; shape = SQUARE; } -The **regrid** dictionary is common to multiple MET tools and is described in :numref:`config_options`. It specifies how the input data should be regridded to cylindrical coordinates prior to compute diagnostics. It can be specified separately in each **data.field** array entry, described below. The default setting uses nearest neighbor interpolation for all fields. +The **regrid** dictionary is common to multiple MET tools and is described in :numref:`config_options`. It specifies how the input data should be regridded to cylindrical coordinates prior to compute diagnostics. It can be specified separately in each **data.field** array entry, described below. The default setting uses bilinear interpolation for all fields. Configuring Fields, Levels, and Domains ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/internal/test_unit/config/TCDiagConfig_ian b/internal/test_unit/config/TCDiagConfig_ian index 1c40873ef9..3ebf6a1a63 100644 --- a/internal/test_unit/config/TCDiagConfig_ian +++ b/internal/test_unit/config/TCDiagConfig_ian @@ -77,8 +77,8 @@ domain_info = [ // May be set separately in each data "field" array entry // regrid = { - method = NEAREST; - width = 1; + method = BILIN; + width = 2; vld_thresh = 0.5; shape = SQUARE; }