- Timestamp:
- 08/19/2015 08:38:41 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
SHX/trunk/SeismicHandler/modules/wx_.py
r933 r1031 598 598 _picks = [] 599 599 for t in self.traces: 600 try: 600 if 'picks' not in t.shx.keys(): 601 #continue 602 picks = [] 603 else: 601 604 picks = t.shx.picks 602 except KeyError: 603 continue 605 #try: 606 # picks = t.shx.picks 607 #except KeyError: 608 # continue 604 609 605 610 for mode in picks: … … 975 980 data = t.data 976 981 else: 977 data = t.get_datawindow(* timewindow)982 data = t.get_datawindow(*self._timewindow) #? KS 13-Aug-15 978 983 t_ampl = abs(data.max()) 979 984 if t_ampl > amplitude: … … 1013 1018 wx.Frame.__init__(self, parent, title=title, size=size, 1014 1019 style=wx.DEFAULT_FRAME_STYLE | wx.FULL_REPAINT_ON_RESIZE | 1015 wx. STAY_ON_TOP | wx.FRAME_FLOAT_ON_PARENT)1020 wx.FRAME_FLOAT_ON_PARENT) 1016 1021 1017 1022 self.SetPosition(position)
Note: See TracChangeset
for help on using the changeset viewer.