We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cf3d30 commit 71895d1Copy full SHA for 71895d1
pvlib/iotools/bsrn.py
@@ -103,7 +103,7 @@ def read_bsrn(filename):
103
tz='UTC') # BSRN timestamps are UTC
104
for num, line in enumerate(f):
105
if line.startswith('*'): # Find start of all logical records
106
- line_no_dict[line[2:6]] = num # key is 4 digit LR number
+ line_no_dict[line[2:6]] = num + 2 # key is 4 digit LR number
107
108
# Determine start and end line of logical record LR0100 to be parsed
109
start_row = line_no_dict['0100'] + 1 # Start line number
0 commit comments