Browse Source

Merge branch 'hotfix/1.0.1'

main
Bill Ladwig 8 years ago
parent
commit
eae8aca40f
  1. 8
      doc/source/new.rst
  2. 6
      src/wrf/projection.py
  3. 2
      src/wrf/version.py

8
doc/source/new.rst

@ -4,6 +4,14 @@ What's New @@ -4,6 +4,14 @@ What's New
Releases
-------------
v1.0.1
^^^^^^^^^^^^^
- Release 1.0.1
- Fixed issue with initialization of PolarStereographic and LatLon map
projection objects.
v1.0.0
^^^^^^^^^^^^^

6
src/wrf/projection.py

@ -675,8 +675,7 @@ class PolarStereographic(WrfProj): @@ -675,8 +675,7 @@ class PolarStereographic(WrfProj):
- 'POLE_LON': Pole longitude.
"""
super(PolarStereographic, self).__init__(bottom_left,
top_right, lats, lons, **proj_params)
super(PolarStereographic, self).__init__(**proj_params)
self._hemi = -90. if self.truelat1 < 0 else 90.
self._lat_ts = (None
if _ismissing(self.truelat1)
@ -792,8 +791,7 @@ class LatLon(WrfProj): @@ -792,8 +791,7 @@ class LatLon(WrfProj):
- 'POLE_LON': Pole longitude.
"""
super(LatLon, self).__init__(bottom_left, top_right,
lats, lons, **proj_params)
super(LatLon, self).__init__(**proj_params)
def _cf_params(self):

2
src/wrf/version.py

@ -1,2 +1,2 @@ @@ -1,2 +1,2 @@
__version__ = "1.0.0"
__version__ = "1.0.1"

Loading…
Cancel
Save