We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4856552 commit abf071aCopy full SHA for abf071a
docs/sphinx/source/whatsnew/v0.7.2.rst
@@ -3,6 +3,12 @@
3
v0.7.2 (Month day, year)
4
-------------------------
5
6
+Enhancements
7
+~~~~~~~~~~~~
8
+* TMY3 dataframe returned by :py:func:`~pvlib.iotools.read_tmy3` now contains
9
+ the original ``Date (MM/DD/YYYY)`` and ``Time (HH:MM)`` columns that the
10
+ indices were parsed from (:pull:`866`)
11
+
12
Bug fixes
13
~~~~~~~~~
14
* Fix :py:func:`~pvlib.iotools.read_tmy3` parsing when February contains
pvlib/iotools/tmy.py
@@ -6,7 +6,6 @@
import io
import re
from urllib.request import urlopen, Request
-import numpy as np
import pandas as pd
0 commit comments