本文整理汇总了Python中gwpy.segments.DataQualityFlag.coalesce方法的典型用法代码示例。如果您正苦于以下问题:Python DataQualityFlag.coalesce方法的具体用法?Python DataQualityFlag.coalesce怎么用?Python DataQualityFlag.coalesce使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gwpy.segments.DataQualityFlag
的用法示例。
在下文中一共展示了DataQualityFlag.coalesce方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_coalesce
# 需要导入模块: from gwpy.segments import DataQualityFlag [as 别名]
# 或者: from gwpy.segments.DataQualityFlag import coalesce [as 别名]
def test_coalesce(self):
flag = DataQualityFlag(FLAG1, active=ACTIVE, known=KNOWN)
self.assertFalse(flag.regular,
'flag.regular test failed (should be False)')
flag.coalesce()
self.assertTrue(flag.known == KNOWN, 'flag.known changed by coalesce')
self.assertTrue(flag.active == KNOWNACTIVE,
'flag.active misset by coalesce')
self.assertTrue(flag.regular,
'flag.regular test failed (should be True)')
示例2: argwhere
# 需要导入模块: from gwpy.segments import DataQualityFlag [as 别名]
# 或者: from gwpy.segments.DataQualityFlag import coalesce [as 别名]
idxhighscat = argwhere(scatf2>=thresh)
highscatf2 = scatf2[idxhighscat]
highscattimes = times[idxhighscat]
highscattimesgps = highscattimes+start_time
# save text file with values above threshold [GPS f2 index]
outdata = hstack((highscattimesgps,highscatf2,idxhighscat))
savetxt('%s-ALL-TIMES-SCATTER-GT%dHZ-%d-%d.txt' % (ifo,thresh,start_time,dur),outdata,fmt='%f %f %i')
# save segments XML file with segments (based off code from Duncan Macleod)
from math import (floor, ceil)
from gwpy.segments import (Segment, DataQualityFlag)
flag = '%s:DCH-SCATTERED_LIGHT_GT%dHZ:1' % (ifo,thresh)
flag = DataQualityFlag(flag)
segs = []
append = segs.append
for gps in highscattimesgps:
if len(segs) and gps in segs[-1]:
continue
seg = Segment(floor(gps), ceil(gps))
append(seg)
flag.active = segs
flag.known = [Segment(start_time, end_time)]
flag.coalesce()
flag.write('%s-%s_%d-%d-%d.xml.gz' % (flag.ifo, flag.tag.replace('-', '_'), flag.version,start_time, dur))
#EOF