本文整理汇总了Python中pyasdf.ASDFDataSet.itertag方法的典型用法代码示例。如果您正苦于以下问题:Python ASDFDataSet.itertag方法的具体用法?Python ASDFDataSet.itertag怎么用?Python ASDFDataSet.itertag使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyasdf.ASDFDataSet
的用法示例。
在下文中一共展示了ASDFDataSet.itertag方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_tag_iterator
# 需要导入模块: from pyasdf import ASDFDataSet [as 别名]
# 或者: from pyasdf.ASDFDataSet import itertag [as 别名]
def test_tag_iterator(example_data_set):
"""
Tests the tag iterator.
"""
data_set = ASDFDataSet(example_data_set.filename)
expected_ids = ["AE.113A..BHE", "AE.113A..BHN", "AE.113A..BHZ", "TA.POKR..BHE", "TA.POKR..BHN", "TA.POKR..BHZ"]
for st, inv in data_set.itertag("raw_recording"):
for tr in st:
assert tr.id in expected_ids
expected_ids.remove(tr.id)
assert bool(
inv.select(
network=tr.stats.network,
station=tr.stats.station,
channel=tr.stats.channel,
location=tr.stats.location,
).networks
)
assert expected_ids == []
# It will only return matching tags.
count = 0
for _ in data_set.itertag("random"):
count += 1
assert count == 0