diff --git a/geomagio/pcdcp/PCDCPFactory.py b/geomagio/pcdcp/PCDCPFactory.py
index 7f30568c296530f735fc00e382345f9425207af0..a42f8095de3b4600d027cc9ae67cd3121766de3e 100644
--- a/geomagio/pcdcp/PCDCPFactory.py
+++ b/geomagio/pcdcp/PCDCPFactory.py
@@ -138,11 +138,11 @@ class PCDCPFactory(TimeseriesFactory):
         yearday = parser.header['yearday']
 
         begin = int(parser.times[0])
-        startHour = str(int(begin/60.0))
-        startMinute = str(int(begin%60.0))
+        startHour = str(int(begin / 60.0))
+        startMinute = str(int(begin % 60.0))
         ending = int(parser.times[-1])
-        endHour = str(int(ending/60.0))
-        endMinute = str(int(ending%60.0))
+        endHour = str(int(ending / 60.0))
+        endMinute = str(int(ending % 60.0))
 
         start = year + yearday + "T" + startHour + ":" + \
                 startMinute + ":" + "00.0"
@@ -196,16 +196,16 @@ class PCDCPFactory(TimeseriesFactory):
             If type or interval are not supported.
         """
         return self.urlTemplate % {
-                'i': self._get_interval_abbreviation(interval),
-                'interval': self._get_interval_name(interval),
-                'julian': date.strftime("%j"),
-                'obs': observatory.lower(),
-                'OBS': observatory.upper(),
-                't': self._get_type_abbreviation(type),
-                'type': self._get_type_name(type),
-                'year': date.strftime("%Y"),
-                'ymd': date.strftime("%Y%m%d")
-                }
+                                'i': self._get_interval_abbreviation(interval),
+                                'interval': self._get_interval_name(interval),
+                                'julian': date.strftime("%j"),
+                                'obs': observatory.lower(),
+                                'OBS': observatory.upper(),
+                                't': self._get_type_abbreviation(type),
+                                'type': self._get_type_name(type),
+                                'year': date.strftime("%Y"),
+                                'ymd': date.strftime("%Y%m%d")
+                                  }
 
     def _get_interval_abbreviation(self, interval):
         """Get abbreviation for a data interval.
diff --git a/geomagio/pcdcp/PCDCPWriter.py b/geomagio/pcdcp/PCDCPWriter.py
index facb92d78c40b241cc0312015b01cb63588cd2fd..88f3b2b443fb8da91ba5ada20da9becd86696a88 100644
--- a/geomagio/pcdcp/PCDCPWriter.py
+++ b/geomagio/pcdcp/PCDCPWriter.py
@@ -74,11 +74,16 @@ class PCDCPWriter(object):
         # Use a copy of the trace so that we don't modify the original.
         timeseriesLocal = timeseries.copy()
 
-        # move the int(round(val*100)) into here, numpy.round(numpy.multiply(trace, 100))
         if timeseriesLocal.select(channel='D'):
             d = timeseriesLocal.select(channel='D')
             d[0].data = ChannelConverter.get_minutes_from_radians(d[0].data)
 
+        # TODO - is this doing anything?
+        i = 0
+        for trace in timeseriesLocal:
+            timeseriesLocal[i].trace = numpy.round(numpy.multiply(trace, 100))
+            i += 1
+
         traces = [timeseriesLocal.select(channel=c)[0] for c in channels]
         starttime = float(traces[0].stats.starttime)
         delta = traces[0].stats.delta