Skip to content

Commit

Permalink
update getstarted
Browse files Browse the repository at this point in the history
  • Loading branch information
niyiyu committed Mar 15, 2024
1 parent 8c53854 commit eb9ccab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tutorials/get_started.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
"from noisepy.seis.io.asdfstore import ASDFRawDataStore, ASDFCCStore, ASDFStackStore\n",
"from noisepy.seis.io.datatypes import CCMethod, ConfigParameters, FreqNorm, RmResp, TimeNorm\n",
"from dateutil.parser import isoparse\n",
"from datetimerange import DateTimeRange\n",
"import os\n",
"import shutil\n",
"print(f\"Using NoisePy version {__version__}\")\n",
Expand Down Expand Up @@ -180,6 +181,7 @@
"config.channels = [\"BHE\",\"BHN\",\"BHZ\"]\n",
"config.start_date = isoparse(\"2019-02-01T00:00:00Z\")\n",
"config.end_date = isoparse(\"2019-02-02T00:00:00Z\")\n",
"timerange = DateTimeRange(config.start_date, config.end_date)\n",
"\n",
"# Download data locally. Enters raw data path, channel types, stations, config, and fdsn server.\n",
"download(raw_data_path, config)"
Expand Down

0 comments on commit eb9ccab

Please sign in to comment.