Skip to content
Snippets Groups Projects
Commit 6f0e3feb authored by Eddie McWhirter's avatar Eddie McWhirter
Browse files

Use numpy int instead of numpy floats for dead values.

parent 7d10200a
No related branches found
No related tags found
No related merge requests found
...@@ -5,9 +5,9 @@ import numpy ...@@ -5,9 +5,9 @@ import numpy
from datetime import datetime from datetime import datetime
# values that represent missing data points in PCDCP # values that represent missing data points in PCDCP
NINES = numpy.float64('9999999') NINES = numpy.int('9999999')
NINES_RAW = numpy.float64('99999990') NINES_RAW = numpy.int('99999990')
NINES_DEG = numpy.float64('9999') NINES_DEG = numpy.int('9999')
class PCDCPParser(object): class PCDCPParser(object):
"""PCDCP parser. """PCDCP parser.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment