Skip to content
Snippets Groups Projects

Draft: zero pad discontiguous segments for omega scans

Closed Deep Chatterjee requested to merge deep.chatterjee/gwcelery:fix-183 into main
2 unresolved threads

partly resolves #183 (closed)

(This will likely taking care of by a new version of gwpy)

Edited by Deep Chatterjee

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Deep Chatterjee added 1 commit

    added 1 commit

    • 1f7548bb - retry only when slightly discontiguous

    Compare with previous version

  • 138 ts = TimeSeries.read(cache, strain_name,
    139 start=long_start, end=long_end).astype('float64')
    139 try:
    140 ts = TimeSeries.read(
    141 cache, strain_name, start=long_start,
    142 end=long_end
    143 ).astype('float64')
    144 except ValueError as e:
    145 # retry with zero padding in case of minor discontiguous segments
    146 # Typical example involves number of nines at the end for first
    147 # timeseries. E.g.
    148 # Cannot append discontiguous TimeSeries
    149 # TimeSeries 1 span: [1388412795.5441284 ... 1388412795.999939)
    150 # TimeSeries 2 span: [1388412796.0 ... 1388412797.0)
    151 pattern = (
    152 r'.*\[([0-9]+\.[0-9]+) ... ([0-9]+\.9{2,}).*\n'
  • Deep Chatterjee added 1 commit

    added 1 commit

    • c752f935 - zero pad slightly discontiguous segments when creating omega scans

    Compare with previous version

  • Deep Chatterjee changed title from zero pad discontiguous segments for omega scans; fix #183 to zero pad discontiguous segments for omega scans

    changed title from zero pad discontiguous segments for omega scans; fix #183 to zero pad discontiguous segments for omega scans

  • Deep Chatterjee changed the description

    changed the description

  • Deep Chatterjee added 1 commit

    added 1 commit

    • 60e7e563 - zero pad slightly discontiguous segments when creating omega scans

    Compare with previous version

  • Deep Chatterjee marked this merge request as draft

    marked this merge request as draft

  • Deep Chatterjee changed the description

    changed the description

  • CLosing in favor of !1366 (merged)

  • Please register or sign in to reply
    Loading