1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

# http://pyrocko.org - GPLv3 

# 

# The Pyrocko Developers, 21st Century 

# ---|P------/S----------~Lg---------- 

from __future__ import print_function, absolute_import 

import numpy as num 

 

from pyrocko.gui.snuffling import Param, Snuffling, Switch, Choice 

from pyrocko.gui.util import Marker 

from pyrocko import trace 

 

h = 3600. 

 

scalingmethods = ('[0-1]', '[-1/ratio,1]', '[-1/ratio,1] clipped to [0,1]') 

scalingmethod_map = dict([(m, i+1) for (i, m) in enumerate(scalingmethods)]) 

 

 

class DetectorSTALTA(Snuffling): 

 

''' 

<html> 

<head> 

<style type="text/css"> 

body { margin-left:10px }; 

</style> 

</head> 

<body> 

<h1 align="center">STA/LTA</h1> 

<p> 

Detect onsets automatically using the Short-Time-Average/Long-Time-Average 

ratio.<br/> 

This snuffling uses the method: 

<a href="http://emolch.github.io/pyrocko/v0.3/trace.html#pyrocko.trace.\ 

Trace.sta_lta_centered" style="text-decoration:none"> 

<pre>pyrocko.trace.Trace.sta_lta_centered</pre> 

</a></p> 

<p> 

<b>Parameters:</b><br /> 

<b>&middot; Highpass [Hz]</b> 

- Apply high pass filter before analysing.<br /> 

<b>&middot; Lowpass [Hz]</b> 

- Apply low pass filter before analysing.<br /> 

<b>&middot; Short Window [s]</b> 

- Window length of the short window.<br /> 

<b>&middot; Ratio</b> 

- Long window length is the short window length times the 

<b>Ratio</b>.<br /> 

<b>&middot; Level</b> 

- Define a trigger threshold. A marker is added where STA/LTA 

ratios exceed this threshold. <br /> 

<b>&middot; Processing Block length</b> 

- Subdivide dataset in blocks for analysis. <br /> 

<b>&middot; Show trigger level traces </b> 

- Add level traces showing the STA/LTA ration for each 

trace.<br /> 

<b>&middot; Apply to full dataset</b> 

- If marked entire loaded dataset will be analyzed. <br /> 

<b>&middot; Scaling/Normalization method</b> 

- Select how output of the STA/LTA should be scaled.</ br> 

</p> 

<p> 

A helpfull description of how to tune the STA/LTA's parameters can be found 

in the the following ebook chapter by Amadej Trnkoczy: <a 

href="http://ebooks.gfz-potsdam.de/pubman/item/escidoc:4097:3/component/\ 

escidoc:4098/IS_8.1_rev1.pdf">Understanding 

and parameter setting of STA/LTA trigger algorithm</a> 

</p> 

</body> 

</html> 

''' 

def setup(self): 

 

self.set_name('STA LTA') 

self.add_parameter(Param( 

'Short Window [s]', 'swin', 30., 0.01, 2*h)) 

self.add_parameter(Param( 

'Ratio', 'ratio', 3., 1.1, 20.)) 

self.add_parameter(Param( 

'Level', 'level', 0.5, 0., 1.)) 

self.add_parameter(Param( 

'Processing Block length (rel. to long window)', 'block_factor', 

10., 2., 100.,)) 

self.add_parameter(Switch( 

'Show trigger level traces', 'show_level_traces', False)) 

self.add_parameter(Switch( 

'Apply to full dataset', 'apply_to_all', False)) 

self.add_parameter(Choice( 

'Variant', 'variant', 'centered', ['centered', 'right'])) 

self.add_parameter(Choice( 

'Scaling/Normalization method', 'scalingmethod', '[0-1]', 

scalingmethods)) 

self.add_parameter( 

Switch('Detect on sum trace', 'apply_to_sum', False)) 

 

self.set_live_update(False) 

 

def call(self): 

'''Main work routine of the snuffling.''' 

 

self.cleanup() 

 

swin, ratio = self.swin, self.ratio 

lwin = swin * ratio 

tpad = lwin 

 

data_pile = self.get_pile() 

tmin, tmax = data_pile.get_tmin() + tpad, data_pile.get_tmax() - tpad 

viewer = self.get_viewer() 

 

if not self.apply_to_all: 

vtmin, vtmax = viewer.get_time_range() 

tmin = max(vtmin, tmin) 

tmax = min(vtmax, tmax) 

 

tinc = min(lwin * self.block_factor, tmax-tmin) 

 

show_level_traces = self.show_level_traces 

 

if show_level_traces and tmax-tmin > lwin * 150: 

self.error( 

'Processing time window is longer than 50 x LTA window. ' 

'Turning off display of level traces.') 

show_level_traces = False 

 

markers = [] 

for traces in data_pile.chopper( 

tmin=tmin, tmax=tmax, tinc=tinc, tpad=tpad, 

want_incomplete=False, 

trace_selector=lambda x: not (x.meta and x.meta.get( 

'tabu', False))): 

 

sumtrace = None 

isum = 0 

for tr in traces: 

if viewer.lowpass is not None: 

tr.lowpass(4, viewer.lowpass, nyquist_exception=True) 

 

if viewer.highpass is not None: 

tr.highpass(4, viewer.highpass, nyquist_exception=True) 

 

if self.variant == 'centered': 

tr.sta_lta_centered( 

swin, lwin, 

scalingmethod=scalingmethod_map[self.scalingmethod]) 

elif self.variant == 'right': 

tr.sta_lta_right( 

swin, lwin, 

scalingmethod=scalingmethod_map[self.scalingmethod]) 

 

tr.chop(tr.wmin, min(tr.wmax, tmax)) 

 

if not self.apply_to_sum: 

markers.extend(trace_to_pmarkers(tr, self.level, swin)) 

 

tr.set_codes(location='cg') 

tr.meta = {'tabu': True} 

 

if sumtrace is None: 

ny = int((tr.tmax - tr.tmin) / data_pile.deltatmin) 

sumtrace = trace.Trace( 

deltat=data_pile.deltatmin, 

tmin=tr.tmin, 

ydata=num.zeros(ny)) 

 

sumtrace.set_codes( 

network='', station='SUM', location='cg', channel='') 

sumtrace.meta = {'tabu': True} 

 

sumtrace.add(tr, left=None, right=None) 

isum += 1 

 

if sumtrace is not None: 

sumtrace.ydata /= float(isum) 

if self.apply_to_sum: 

markers.extend( 

trace_to_pmarkers(sumtrace, self.level, swin, 

[('*', '*', '*', '*')])) 

 

if show_level_traces: 

self.add_trace(sumtrace) 

 

self.add_markers(markers) 

 

if show_level_traces: 

self.add_traces(traces) 

 

 

def trace_to_pmarkers(tr, level, swin, nslc_ids=None): 

markers = [] 

tpeaks, apeaks = tr.peaks(level, swin) 

for t, a in zip(tpeaks, apeaks): 

ids = nslc_ids or [tr.nslc_id] 

mark = Marker(ids, t, t, ) 

print(mark, a) 

markers.append(mark) 

 

return markers 

 

 

def __snufflings__(): 

return [DetectorSTALTA()]