Add an option to bypass the current requirement to use pytz.timezone-localized timestamps in the localization pipeline. This option can be used by folks who have trimmed or extended their audio to all start or end at the same time.
One suggested way to do this would be to add an argument to localize_detections, e.g., localized_timestamp=False, which would bypass the logic starting on this line:
|
if "start_timestamp" in detections.index.names: |
Add an option to bypass the current requirement to use
pytz.timezone-localized timestamps in the localization pipeline. This option can be used by folks who have trimmed or extended their audio to all start or end at the same time.One suggested way to do this would be to add an argument to
localize_detections, e.g.,localized_timestamp=False, which would bypass the logic starting on this line:opensoundscape/opensoundscape/localization/synchronized_recorder_array.py
Line 412 in 2f14a07