8000 Add functionality for reading EPW weather files by roelloonen · Pull Request #677 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Add functionality for reading EPW weather files #677

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

Merged
merged 11 commits into from
Mar 29, 2019
Merged
Prev Previous commit
Minor change to default input for filename and update of What's New
  • Loading branch information
roelloonen committed Mar 27, 2019
commit aa2e7ccfa33809493ebfaf5cf59e1efc74974836
6 changes: 4 additions & 2 deletions docs/sphinx/source/whatsnew/v0.6.2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Enhancements
~~~~~~~~~~~~
* Add US CRN data reader to `pvlib.iotools`.
* Add SOLRAD data reader to `pvlib.iotools`.
* Add EPW data reader to `pvlib.iotools`. (:issue:`591`)

Bug fixes
~~~~~~~~~
Expand All @@ -32,5 +33,6 @@ Testing

Contributors
~~~~~~~~~~~~
* cwhanse
* wholmgren
* Cliff Hansen (:ghuser:`cwhanse`)
* Will Holmgren (:ghuser:`wholmgren`)
* Roel Loonen (:ghuser:`roelloonen`)
2 changes: 1 addition & 1 deletion pvlib/iotools/epw.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import pandas as pd


def read_epw(filename=None, coerce_year=None):
def read_epw(filename, coerce_year=None):
'''
Read an EPW file in to a pandas dataframe.

Expand Down
0