Skip to content

Commit

Permalink
Per #2769, change default regrdding method from NEAREST to BILIN.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Dec 28, 2023
1 parent c9e66c2 commit 0a564a6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions data/config/TCDiagConfig_default
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
6 changes: 3 additions & 3 deletions docs/Users_Guide/tc-diag.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand Down
4 changes: 2 additions & 2 deletions internal/test_unit/config/TCDiagConfig_ian
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 0a564a6

Please sign in to comment.