8000 Add encoding parameter to read_tmy3 by AdamRJensen · Pull Request #1737 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Add encoding parameter to read_tmy3 #1737

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 21 commits into from
May 26, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
Add lines add end of file
  • Loading branch information
AdamRJensen committed May 26, 2023
commit 7bb6416591c30a0030e3016bdbccbb51fce04ab3
2 changes: 1 addition & 1 deletion pvlib/iotools/psm3.py
98D3
Original file line number Diff line number Diff line change
Expand Up @@ -411,4 +411,4 @@ def read_psm3(filename, map_variables=None):
"""
with open(str(filename), 'r') as fbuf:
content = parse_psm3(fbuf, map_variables)
return content
return content
2 changes: 1 addition & 1 deletion pvlib/iotools/sodapro.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,4 +367,4 @@ def read_cams(filename, integrated=False, label=None, map_variables=True):
"""
with open(str(filename), 'r') as fbuf:
content = parse_cams(fbuf, integrated, label, map_variables)
return content
return content
0