Ignore parsing short TTAA readings
This commit is contained in:
parent
1602b447d2
commit
90187f9f4b
1 changed files with 1 additions and 1 deletions
|
@ -363,7 +363,7 @@ class RAOBObs():
|
||||||
#
|
#
|
||||||
# Return None if there is no station identifier.
|
# Return None if there is no station identifier.
|
||||||
#
|
#
|
||||||
if self.tokens[1][0:3] == 'NIL':
|
if self.tokens[1][0:3] == 'NIL' or len(self.tokens) < 5:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
timestamp = self.tokens[0]
|
timestamp = self.tokens[0]
|
||||||
|
|
Loading…
Add table
Reference in a new issue