Skip to content

Commit

Permalink
Update develop-ref after #2310 (#2313)
Browse files Browse the repository at this point in the history
Co-authored-by: j-opatz <[email protected]>
Co-authored-by: Randy Bullock <[email protected]>
Co-authored-by: davidfillmore <[email protected]>
Co-authored-by: rgbullock <[email protected]>
Co-authored-by: John Halley Gotway <[email protected]>
Co-authored-by: Howard Soh <[email protected]>
Co-authored-by: johnhg <[email protected]>
Co-authored-by: John Halley Gotway <[email protected]>
Co-authored-by: Seth Linden <[email protected]>
Co-authored-by: George McCabe <[email protected]>
Co-authored-by: Julie Prestopnik <[email protected]>
Co-authored-by: Seth Linden <[email protected]>
Co-authored-by: Howard Soh <[email protected]>
Co-authored-by: jprestop <[email protected]>
Co-authored-by: Seth Linden <[email protected]>
Co-authored-by: hsoh-u <[email protected]>
Co-authored-by: John Halley Gotway <[email protected]>
Co-authored-by: MET Tools Test Account <[email protected]>
Co-authored-by: mo-mglover <[email protected]>
Co-authored-by: davidalbo <[email protected]>
Co-authored-by: lisagoodrich <[email protected]>
Co-authored-by: Dan Adriaansen <[email protected]>
Co-authored-by: Dave Albo <[email protected]>
Co-authored-by: Lisa Goodrich <[email protected]>
Co-authored-by: Molly Smith <[email protected]>
Co-authored-by: Jonathan Vigh <[email protected]>
Co-authored-by: bikegeek <[email protected]>
  • Loading branch information
26 people authored Oct 19, 2022
1 parent 18c4804 commit 97454c0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
1 change: 1 addition & 0 deletions docs/Users_Guide/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ The National Center for Atmospheric Research (NCAR) is sponsored by NSF. The DTC
:numbered: 4

overview
release-notes
installation
data_io
config_options
Expand Down
4 changes: 0 additions & 4 deletions docs/Users_Guide/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,6 @@ Tropical cyclone forecasts and observations are quite different than numerical m

The following sections of this MET User's Guide contain usage statements for each tool, which may be viewed if you type the name of the tool. Alternatively, the user can also type the name of the tool followed by **-help** to obtain the usage statement. Each tool also has a **-version** command line option associated with it so that the user can determine what version of the tool they are using.

.. _release-notes:

.. include:: release-notes.rst

Future development plans
========================

Expand Down
9 changes: 9 additions & 0 deletions docs/Users_Guide/release-notes.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
***********************
MET Release Information
***********************

MET Release Notes
=================

Expand Down Expand Up @@ -83,3 +87,8 @@ MET Version 11.0.0-beta1 release notes (20220622)
* Enhance Gen-Vx-Mask by adding a new poly_xy masking type option (`#2152 <https://github.com/dtcenter/MET/issues/2152>`_).
* Add M_to_KFT and KM_to_KFT functions to ConfigConstants (`#2180 <https://github.com/dtcenter/MET/issues/2180>`_).
* MET: Replace fixed length character arrays with strings (`dtcenter/METplus-Internal#14 <https://github.com/dtcenter/METplus-Internal/issues/14>`_).

MET Upgrade Instructions
========================

Upgrade instructions will be listed here if they are applicable for this release.
2 changes: 1 addition & 1 deletion src/libcode/vx_tc_util/track_pair_info.cc
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ void TrackPairInfo::add(const TCStatLine &l) {
cs << cs_erase << deck[i] << "SPEED";
tp->set_speed(atof(l.get_item(cs.c_str())));
cs << cs_erase << deck[i] << "DEPTH";
tp->set_eye(string_to_systemsdepth(l.get_item(cs.c_str())));
tp->set_depth(string_to_systemsdepth(l.get_item(cs.c_str())));
tp->set_watch_warn(string_to_watchwarntype(l.get_item("WATCH_WARN")));

// Loop over the winds
Expand Down

0 comments on commit 97454c0

Please sign in to comment.