From f473bf7ca4ad5d0df43f7f5b50b48de433234631 Mon Sep 17 00:00:00 2001
From: pcain <pcain@usgs.gov>
Date: Thu, 14 Oct 2021 09:20:28 -0600
Subject: [PATCH] pad and trim trace when data exists

---
 geomagio/edge/MiniSeedFactory.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/geomagio/edge/MiniSeedFactory.py b/geomagio/edge/MiniSeedFactory.py
index bd2feb81d..ff03c0406 100644
--- a/geomagio/edge/MiniSeedFactory.py
+++ b/geomagio/edge/MiniSeedFactory.py
@@ -362,9 +362,6 @@ class MiniSeedFactory(TimeseriesFactory):
             sncl.network, sncl.station, sncl.location, sncl.channel, starttime, endtime
         )
         data.merge()
-        TimeseriesUtility.pad_and_trim_trace(
-            trace=data[0], starttime=starttime, endtime=endtime
-        )
         if data.count() == 0 and add_empty_channels:
             data += self._get_empty_trace(
                 starttime=starttime,
@@ -376,6 +373,10 @@ class MiniSeedFactory(TimeseriesFactory):
                 network=sncl.network,
                 location=sncl.location,
             )
+        if data.count() != 0:
+            TimeseriesUtility.pad_and_trim_trace(
+                trace=data[0], starttime=starttime, endtime=endtime
+            )
         self._set_metadata(data, observatory, channel, type, interval)
         return data
 
-- 
GitLab