Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,586 changes: 1,586 additions & 0 deletions ph5/core/experiment_pn3.py

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion ph5/core/ph5api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1372,7 +1372,11 @@ def get_extent(self, das, component, sample_rate, start=None, end=None):
stop_epoch=end,
sample_rate=sample_rate)
if not das_t_t:
LOGGER.warning("No Das table found for " + das)
msg = ("No Das table found for %s chan %s sr %s"
% (das, component, sample_rate))
if start is not None:
msg += " in time [%s, %s]" % (start, end)
LOGGER.warning(msg)
return None, None

if not das_t_t:
Expand Down
Loading