Skip to content

Commit

Permalink
update notebooks for io v0.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
niyiyu committed Mar 15, 2024
1 parent a8cdd51 commit 48b361b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies = [
"PyYAML==6.0",
"pydantic-yaml==1.0",
"psutil>=5.9.5,<6.0.0",
"noisepy-seis-io>=0.1.12",
"noisepy-seis-io>=0.1.13",
]


Expand Down
2 changes: 1 addition & 1 deletion tutorials/get_started.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@
"source": [
"pairs = stack_store.get_station_pairs()\n",
"print(f\"Found {len(pairs)} station pairs\")\n",
"sta_stacks = stack_store.read_bulk(None, pairs) # no timestamp used in ASDFStackStore"
"sta_stacks = stack_store.read_bulk(timerange, pairs) # no timestamp used in ASDFStackStore"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion tutorials/noisepy_compositestore_tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@
"source": [
"pairs = stack_store.get_station_pairs()\n",
"print(f\"Found {len(pairs)} station pairs\")\n",
"sta_stacks = stack_store.read_bulk(None, pairs) # no timestamp used in ASDFStackStore"
"sta_stacks = stack_store.read_bulk(timerange, pairs) # no timestamp used in ASDFStackStore"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion tutorials/noisepy_ncedc_tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@
"source": [
"pairs = stack_store.get_station_pairs()\n",
"print(f\"Found {len(pairs)} station pairs\")\n",
"sta_stacks = stack_store.read_bulk(None, pairs) # no timestamp used in ASDFStackStore"
"sta_stacks = stack_store.read_bulk(timerange, pairs) # no timestamp used in ASDFStackStore"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion tutorials/noisepy_pnwstore_tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@
"source": [
"pairs = stack_store.get_station_pairs()\n",
"print(f\"Found {len(pairs)} station pairs\")\n",
"sta_stacks = stack_store.read_bulk(None, pairs) # no timestamp used in ASDFStackStore"
"sta_stacks = stack_store.read_bulk(timerange, pairs) # no timestamp used in ASDFStackStore"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion tutorials/noisepy_scedc_tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@
"source": [
"pairs = stack_store.get_station_pairs()\n",
"print(f\"Found {len(pairs)} station pairs\")\n",
"sta_stacks = stack_store.read_bulk(None, pairs) # no timestamp used in ASDFStackStore"
"sta_stacks = stack_store.read_bulk(timerange, pairs) # no timestamp used in ASDFStackStore"
]
},
{
Expand Down

0 comments on commit 48b361b

Please sign in to comment.