8000 add pvgis to iotools by mikofski · Pull Request #845 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

add pvgis to iotools #845

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 20 commits into from
Jan 10, 2020
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix reference links
  • Loading branch information
mikofski committed Jan 9, 2020
commit 5bea928c6a5a0ae057d137e28fa6e941f657fbbc
5 changes: 2 additions & 3 deletions pvlib/iotools/pvgis.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,9 @@ def get_pvgis_tmy(lat, lon, outputformat='json', usehorizon=True,
the error message in the response will be raised as an exception,
otherwise raise whatever ``HTTP/1.1`` error occurred

.. [1] 'PVGIS <https://ec.europa.eu/jrc/en/pvgis>`_
.. [1] `PVGIS <https://ec.europa.eu/jrc/en/pvgis>`_
.. [2] `PVGIS TMY tool <https://ec.europa.eu/jrc/en/PVGIS/tools/tmy>`_
.. [3] `PVGIS horizon profile tool
<https://ec.europa.eu/jrc/en/PVGIS/tools/horizon>`_
.. [3] `PVGIS horizon profile tool <https://ec.europa.eu/jrc/en/PVGIS/tools/horizon>`_
"""
# use requests to format the query string by passing params dictionary
params = {'lat': lat, 'lon': lon, 'outputformat': outputformat}
Expand Down
0