Skip to content
Snippets Groups Projects

Convert output mseed to float32

All threads resolved!
2 files
+ 5
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -664,7 +664,7 @@ class MiniSeedFactory(TimeseriesFactory):
@@ -664,7 +664,7 @@ class MiniSeedFactory(TimeseriesFactory):
to_write = timeseries.select(channel=channel)
to_write = timeseries.select(channel=channel)
to_write = TimeseriesUtility.mask_stream(to_write)
to_write = TimeseriesUtility.mask_stream(to_write)
to_write = to_write.split()
to_write = to_write.split()
to_write = TimeseriesUtility.unmask_stream(to_write)
to_write = TimeseriesUtility.unmask_stream(to_write, float_type=numpy.float32)
# relabel channels from internal to edge conventions
# relabel channels from internal to edge conventions
station = self._get_edge_station(observatory, channel, type, interval)
station = self._get_edge_station(observatory, channel, type, interval)
location = self._get_edge_location(observatory, channel, type, interval)
location = self._get_edge_location(observatory, channel, type, interval)
Loading