Skip to content

Commit

Permalink
Merging latest from develop into feature_1749_hss for #1749.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Jun 13, 2021
2 parents 6fc2947 + 79fcae4 commit f81c5eb
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
15 changes: 13 additions & 2 deletions met/docs/Users_Guide/release-notes.rst
Expand Up @@ -5,8 +5,19 @@ When applicable, release notes are followed by the GitHub issue number which
describes the bugfix, enhancement, or new feature:
`MET GitHub issues. <https://github.com/dtcenter/MET/issues>`_

MET Version |version| release notes (|release_date|)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
MET Version 10.1.0-beta1 release notes (|release_date|)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* Add the HSS_EC statistic to the MCTS line type and a configurable option for its computation (`#1749 <http://github.com/dtcenter/MET/issues/1749>`_).
* Implement a common API for reading and writing the common NetCDF point observation file format (`#1402 <http://github.com/dtcenter/MET/issues/1402>`_ and `#1581 <http://github.com/dtcenter/MET/issues/1581>`_).
* Change -type for gen_vx_mask from an optional argument to a required one (`#1792 <http://github.com/dtcenter/MET/issues/1792>`_).
* Fix python embedding when using a named grid with MET_PYTHON_EXE set (`#1798 <http://github.com/dtcenter/MET/issues/1798>`_).
* Fix Fortify High finding for src/libcode/vx_data2d_nccf/nccf_file.cc (`#1795 <http://github.com/dtcenter/MET/issues/1795>`_).
* Modify plot_tcmpr.R script to support plotting of extra-tropical cyclone tracks not verified against BEST tracks (`#1801 <http://github.com/dtcenter/MET/issues/1801>`_).
* Add anchors to link directly to configuration items in the MET User's Guide (`#1811 <http://github.com/dtcenter/MET/issues/1811>`_).

MET Version 10.0.0 release notes (20210510)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* Repository and build:

Expand Down
4 changes: 2 additions & 2 deletions met/docs/conf.py
Expand Up @@ -20,11 +20,11 @@
project = 'MET'
author = 'UCAR/NCAR, NOAA, CSU/CIRA, and CU/CIRES'
author_list = 'Halley Gotway, J., K. Newman, H. Soh, J. Opatz, T. Jensen, J. Prestopnik, L. Goodrich, D. Fillmore, B. Brown, R. Bullock, T. Fowler'
version = 'develop'
version = '10.1.0-beta1'
verinfo = version
release = f'{version}'
release_year = '2021'
release_date = f'{release_year}-05-10'
release_date = f'{release_year}-06-11'
copyright = f'{release_year}, {author}'

# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions met/src/libcode/vx_stat_out/stat_columns.cc
Expand Up @@ -134,7 +134,7 @@ void write_mctc_header_row(int hdr_flag, int n_cat, AsciiTable &at,
at.set_entry(r, c+1, (string)mctc_columns[1]);

// Write Fi_Oj for each cell of the NxN table
for(i=0, col=c+2; i<n_cat; i++) {
for(i=0, col=c+3; i<n_cat; i++) {
for(j=0; j<n_cat; j++) {
cs.format("F%i_O%i", i+1, j+1);
at.set_entry(r, col, cs); // Fi_Oj
Expand Down Expand Up @@ -2658,7 +2658,7 @@ void write_mctc_cols(const MCTSInfo &mcts_info,
//
// Loop through the contingency table rows and columns
//
for(i=0, col=c+2; i<mcts_info.cts.nrows(); i++) {
for(i=0, col=c+3; i<mcts_info.cts.nrows(); i++) {
for(j=0; j<mcts_info.cts.ncols(); j++) {

at.set_entry(r, col, // Fi_Oj table counts
Expand Down
2 changes: 1 addition & 1 deletion scripts/fortify/run_nightly.sh
Expand Up @@ -20,7 +20,7 @@
#=======================================================================

# Constants
EMAIL_LIST="johnhg@ucar.edu bullock@ucar.edu hsoh@ucar.edu fillmore@ucar.edu"
EMAIL_LIST="johnhg@ucar.edu hsoh@ucar.edu jpresto@ucar.edu"
KEEP_DAYS=5

function usage {
Expand Down
2 changes: 1 addition & 1 deletion scripts/regression/test_nightly.sh
Expand Up @@ -21,7 +21,7 @@
#=======================================================================

# Constants
EMAIL_LIST="johnhg@ucar.edu bullock@ucar.edu hsoh@ucar.edu fillmore@ucar.edu"
EMAIL_LIST="johnhg@ucar.edu hsoh@ucar.edu jpresto@ucar.edu"
KEEP_DAYS=5

# Usage statement
Expand Down

0 comments on commit f81c5eb

Please sign in to comment.