From 6f0e3feb63ef357e48d38012d9bb981aca588730 Mon Sep 17 00:00:00 2001
From: Eddie McWhirter <emcwhirter@usgs.gov>
Date: Tue, 23 Jun 2015 15:17:08 -0600
Subject: [PATCH] Use numpy int instead of numpy floats for dead values.

---
 geomagio/pcdcp/PCDCPParser.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/geomagio/pcdcp/PCDCPParser.py b/geomagio/pcdcp/PCDCPParser.py
index ed27010b6..b6dd6206a 100644
--- a/geomagio/pcdcp/PCDCPParser.py
+++ b/geomagio/pcdcp/PCDCPParser.py
@@ -5,9 +5,9 @@ import numpy
 from datetime import datetime
 
 # values that represent missing data points in PCDCP
-NINES = numpy.float64('9999999')
-NINES_RAW = numpy.float64('99999990')
-NINES_DEG = numpy.float64('9999')
+NINES = numpy.int('9999999')
+NINES_RAW = numpy.int('99999990')
+NINES_DEG = numpy.int('9999')
 
 class PCDCPParser(object):
     """PCDCP parser.
-- 
GitLab