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 7b3fab5 commit 2d5b043Copy full SHA for 2d5b043
pvlib/iotools/surfrad.py
@@ -150,7 +150,7 @@ def read_surfrad(filename, map_variables=True):
150
header=None, names=SURFRAD_COLUMNS)
151
file_buffer.close()
152
153
- data = format_index(data)
+ data = _format_index(data)
154
missing = data == -9999.9
155
data = data.where(~missing, np.NaN)
156
@@ -159,7 +159,7 @@ def read_surfrad(filename, map_variables=True):
159
return data, metadata
160
161
162
-def format_index(data):
+def _format_index(data):
163
"""Create UTC localized DatetimeIndex for the dataframe.
164
165
Parameters
0 commit comments