Skip to content

Binary style PAN file Reader #2516

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open
1 change: 1 addition & 0 deletions docs/sphinx/source/reference/iotools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ Functions for reading irradiance/weather data files.
iotools.read_epw
iotools.parse_epw
iotools.read_panond
iotools.read_pan_binary


A :py:class:`~pvlib.location.Location` object may be created from metadata
Expand Down
5 changes: 4 additions & 1 deletion docs/sphinx/source/whatsnew/v0.13.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Bug fixes

Enhancements
~~~~~~~~~~~~
* Add support for reading PAN binary files (PVsyst v6.39 and earlier) using :py:func:`pvlib.iotools.read_pan_binary`.
(:issue:`2504`)


Documentation
Expand Down Expand Up @@ -48,4 +50,5 @@ Contributors
~~~~~~~~~~~~
* Elijah Passmore (:ghuser:`eljpsm`)
* Rajiv Daxini (:ghuser:`RDaxini`)
* Omar Bahamida (:ghuser:`OmarBahamida`)
* Omar Bahamida (:ghuser:`OmarBahamida`)
* Kurt Rhee (:ghuser:`kurt-rhee`)
1 change: 1 addition & 0 deletions pvlib/iotools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
from pvlib.iotools.sodapro import read_cams # noqa: F401
from pvlib.iotools.sodapro import parse_cams # noqa: F401
from pvlib.iotools.panond import read_panond # noqa: F401
from pvlib.iotools.pan_binary import read_pan_binary # noqa: F401
from pvlib.iotools.acis import get_acis_prism # noqa: F401
from pvlib.iotools.acis import get_acis_nrcc # noqa: F401
from pvlib.iotools.acis import get_acis_mpe # noqa: F401
Expand Down
Loading
Loading