Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
8 changes: 7 additions & 1 deletion docs/sphinx/source/whatsnew/v0.15.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +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`)

Documentation
~~~~~~~~~~~~~
Expand All @@ -45,6 +49,8 @@ Maintenance

Contributors
~~~~~~~~~~~~
* Adam R. Jensen (:ghuser:`AdamRJensen`)
* Erin Tonita (:ghuser:`etoni044`)
* Eesh Saxena (:ghuser:`eeshsaxena`)
* Karl Hill (:ghuser:`karlhillx`)
* Yonry Zhu (:ghuser:`yonryzhu`)
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