You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To do parallel data transfers, use the `addprocs` function from the `Distributed` module:
52
51
```julia
53
52
using Distributed
54
53
addprocs()
55
-
ec2download(aws,bucket,filelist,"~/paralleldir")
54
+
ec2download(bucket,filelist,"~/paralleldir")
56
55
```
57
56
58
57
### Earthquake Catalog Requests
@@ -69,7 +68,6 @@ SCEDC.jl queries the SCSN earthquake catalog using these possible parameters:
69
68
70
69
```julia
71
70
julia> df = catalogquery(
72
-
aws,
73
71
starttime = DateTime(1937,1,1),
74
72
endtime=DateTime(1937,2,1),
75
73
minlatitude=33.,
@@ -92,7 +90,7 @@ julia> df = catalogquery(
92
90
SCEDC.jl can retrieve phase picks for an earthquake given the event's ID and date. Here is an example from the 1987 Elmore Ranch earthquake with data returned as a `SeisIO.SeisEvent`
93
91
94
92
```julia
95
-
julia> phasequery(aws,628016,Date(1987,11,24))
93
+
julia> phasequery(628016,Date(1987,11,24))
96
94
Event 628016: SeisEvent with 70 channels
97
95
98
96
(.hdr)
@@ -138,7 +136,7 @@ SCEDC.jl can stream waveforms (with associated phase picks) from earthquakes goi
138
136
139
137
Here is an example of an requesting events from 2019, returned as an `Array` of `SeisEvent`
0 commit comments