Update release notes and docs for 2.1 release
This commit is contained in:
20
NEWS
20
NEWS
@@ -2,13 +2,31 @@
|
|||||||
New Version Information for the Weather Utility
|
New Version Information for the Weather Utility
|
||||||
=================================================
|
=================================================
|
||||||
|
|
||||||
:Copyright: (c) 2006-2012 Jeremy Stanley <fungi@yuggoth.org>. Permission
|
:Copyright: (c) 2006-2016 Jeremy Stanley <fungi@yuggoth.org>. Permission
|
||||||
to use, copy, modify, and distribute this software is
|
to use, copy, modify, and distribute this software is
|
||||||
granted under terms provided in the LICENSE file distributed
|
granted under terms provided in the LICENSE file distributed
|
||||||
with this software.
|
with this software.
|
||||||
|
|
||||||
.. contents::
|
.. contents::
|
||||||
|
|
||||||
|
2.1 Release
|
||||||
|
-----------
|
||||||
|
The old http://weather.noaa.gov/pub site was deprecated and as of August
|
||||||
|
23 and subsequently removed from service. Correlation data files have
|
||||||
|
been updated to use the working http://tgftp.nws.noaa.gov URL instead.
|
||||||
|
|
||||||
|
Updated correlation data is included based on newer 2014 Census data.
|
||||||
|
|
||||||
|
The correlation data rebuilding process has been improved and more
|
||||||
|
thoroughly documented.
|
||||||
|
|
||||||
|
Radian floats in correlation data are now truncated to 7 decimal places,
|
||||||
|
significantly reducing rounding error fuzz against future data file
|
||||||
|
updates.
|
||||||
|
|
||||||
|
The /etc/weather/weatherrc file mentioned in documentation is now
|
||||||
|
properly read.
|
||||||
|
|
||||||
2.0 Release
|
2.0 Release
|
||||||
-----------
|
-----------
|
||||||
The 2.0 release involves a major rewrite of the underlying code and
|
The 2.0 release involves a major rewrite of the underlying code and
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
.TH weather 1 "2012\-06\-24" "2.0" \" -*- nroff -*-
|
.TH weather 1 "2016\-09\-13" "2.1" \" -*- nroff -*-
|
||||||
\" Copyright (c) 2006-2012 Jeremy Stanley <fungi@yuggoth.org>.
|
\" Copyright (c) 2006-2016 Jeremy Stanley <fungi@yuggoth.org>.
|
||||||
\" Permission to use, copy, modify, and distribute this software is
|
\" Permission to use, copy, modify, and distribute this software is
|
||||||
\" granted under terms provided in the LICENSE file distributed with
|
\" granted under terms provided in the LICENSE file distributed with
|
||||||
\" this software.
|
\" this software.
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
"""Contains various object definitions needed by the weather utility."""
|
"""Contains various object definitions needed by the weather utility."""
|
||||||
|
|
||||||
weather_copyright = """\
|
weather_copyright = """\
|
||||||
# Copyright (c) 2006-2014 Jeremy Stanley <fungi@yuggoth.org>. Permission to
|
# Copyright (c) 2006-2016 Jeremy Stanley <fungi@yuggoth.org>. Permission to
|
||||||
# use, copy, modify, and distribute this software is granted under terms
|
# use, copy, modify, and distribute this software is granted under terms
|
||||||
# provided in the LICENSE file distributed with this software.
|
# provided in the LICENSE file distributed with this software.
|
||||||
#"""
|
#"""
|
||||||
|
|
||||||
weather_version = "2.0"
|
weather_version = "2.1"
|
||||||
|
|
||||||
radian_to_km = 6372.795484
|
radian_to_km = 6372.795484
|
||||||
radian_to_mi = 3959.871528
|
radian_to_mi = 3959.871528
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
.TH weatherrc 5 "2012\-06\-24" "2.0" \" -*- nroff -*-
|
.TH weatherrc 5 "2016\-09\-13" "2.1" \" -*- nroff -*-
|
||||||
\" Copyright (c) 2006-2012 Jeremy Stanley <fungi@yuggoth.org>.
|
\" Copyright (c) 2006-2016 Jeremy Stanley <fungi@yuggoth.org>.
|
||||||
\" Permission to use, copy, modify, and distribute this software is
|
\" Permission to use, copy, modify, and distribute this software is
|
||||||
\" granted under terms provided in the LICENSE file distributed with
|
\" granted under terms provided in the LICENSE file distributed with
|
||||||
\" this software.
|
\" this software.
|
||||||
|
|||||||
Reference in New Issue
Block a user