Skip to content
Open
2 changes: 2 additions & 0 deletions docs/sphinx/source/reference/iotools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ Satellite-derived irradiance and weather data for the Americas.
iotools.get_nsrdb_psm4_tmy
iotools.get_nsrdb_psm4_conus
iotools.get_nsrdb_psm4_full_disc
iotools.get_nsrdb_psm4_polar
iotools.get_nsrdb_psm4_polar_tmy
iotools.read_nsrdb_psm4


Expand Down
7 changes: 7 additions & 0 deletions docs/sphinx/source/whatsnew/v0.15.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ Bug fixes

Enhancements
~~~~~~~~~~~~
* Add iotools functions to retrieve irradiance and weather data from NSRDB PSM4 Polar,
which provides satellite-derived irradiance data above 60 degree latitude.
:py:func:`~pvlib.iotools.get_nsrdb_psm4_polar` and
:py:func:`~pvlib.iotools.get_nsrdb_psm4_polar_tmy`.
(:issue:`2639`, :pull:`2807`)
* Ensure all timezones are available in all OSs. (:issue:`2795`, :pull:`2809`)


Expand Down Expand Up @@ -48,6 +53,8 @@ Maintenance

Contributors
~~~~~~~~~~~~
* Adam R. Jensen (:ghuser:`AdamRJensen`)
* Erin Tonita (:ghuser:`etoni044`)
* Eesh Saxena (:ghuser:`eeshsaxena`)
* Karl Hill (:ghuser:`karlhillx`)
* Mathias Aschwanden (:ghuser:`maschwanden`)
Expand Down
2 changes: 2 additions & 0 deletions pvlib/iotools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
from pvlib.iotools.psm4 import get_nsrdb_psm4_tmy # noqa: F401
from pvlib.iotools.psm4 import get_nsrdb_psm4_conus # noqa: F401
from pvlib.iotools.psm4 import get_nsrdb_psm4_full_disc # noqa: F401
from pvlib.iotools.psm4 import get_nsrdb_psm4_polar # noqa: F401
from pvlib.iotools.psm4 import get_nsrdb_psm4_polar_tmy # noqa: F401
from pvlib.iotools.psm4 import read_nsrdb_psm4 # noqa: F401
from pvlib.iotools.pvgis import get_pvgis_tmy, read_pvgis_tmy # noqa: F401
from pvlib.iotools.pvgis import read_pvgis_hourly # noqa: F401
Expand Down
Loading
Loading