本文整理汇总了Python中obspy.core.Stats.update方法的典型用法代码示例。如果您正苦于以下问题:Python Stats.update方法的具体用法?Python Stats.update怎么用?Python Stats.update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类obspy.core.Stats
的用法示例。
在下文中一共展示了Stats.update方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_update
# 需要导入模块: from obspy.core import Stats [as 别名]
# 或者: from obspy.core.Stats import update [as 别名]
def test_update(self):
"""
Tests update method of Stats object.
"""
x = Stats({'a': 5})
self.assertTrue('a' in dir(x))
x.update({'b': 5})
self.assertTrue('b' in dir(x))
y = {'a': 5}
y.update({'b': 5})
x = Stats(y)
self.assertTrue('b' in dir(x))
示例2: test_setCalib
# 需要导入模块: from obspy.core import Stats [as 别名]
# 或者: from obspy.core.Stats import update [as 别名]
def test_setCalib(self):
"""
Test to prevent setting a calibration factor of 0
"""
x = Stats()
# this should work
x.update({'calib': 1.23})
self.assertTrue(x.calib, 1.23)
# this raises UserWarning
with warnings.catch_warnings(record=True):
warnings.simplefilter('error', UserWarning)
# 1
self.assertRaises(UserWarning, x.__setitem__, 'calib', 0)
# 2
self.assertRaises(UserWarning, x.update, {'calib': 0})
# calib value should nevertheless be set to 0
self.assertTrue(x.calib, 0)