File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -82,16 +82,16 @@ def __str__(self):
82
82
83
83
s = f'''
84
84
Name: { self .name }
85
-
85
+
86
86
Start Date: { self .start_time }
87
87
End Date: { self .end_time }
88
-
88
+
89
89
Latitude: ({ self .min_latitude } , { self .max_latitude } )
90
90
Longitude: ({ self .min_longitude } , { self .max_longitude } )
91
-
91
+
92
92
Min Mw: { self .min_magnitude }
93
93
Max Mw: { self .max_magnitude }
94
-
94
+
95
95
Event Count: { self .event_count }
96
96
'''
97
97
return s
@@ -623,7 +623,7 @@ def compute_mct(t, m):
623
623
return self
624
624
625
625
# this is used to index the array, starting with accepting all events
626
- filter = numpy .ones (self .event_count , dtype = numpy . bool )
626
+ filter = numpy .ones (self .event_count , dtype = bool )
627
627
for i , (mw , time ) in enumerate (zip (mws , times )):
628
628
# we can break bc events are sorted in time
629
629
if time > t_crit_epoch :
You can’t perform that action at this time.
0 commit comments