Skip to content

Commit

Permalink
Rerender iceflow example notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
trey-stafford committed Oct 22, 2024
1 parent da12291 commit 27d164c
Show file tree
Hide file tree
Showing 2 changed files with 382 additions and 382 deletions.
758 changes: 379 additions & 379 deletions docs/iceflow-example.ipynb

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions notebooks/iceflow-example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"import datetime as dt\n",
"\n",
"from nsidc.iceflow.api import fetch_iceflow_df\n",
"from nsidc.iceflow.data.models import DatasetSearchParameters, BoundingBox, ATM1BDataset\n",
"from nsidc.iceflow.data.models import DatasetSearchParameters, BoundingBox, ILATM1BDataset\n",
"\n",
"# Downloaded data will go here.\n",
"data_path = Path(\"./downloaded-data/\")\n",
Expand All @@ -35,8 +35,8 @@
"# ILATM1B data can be very large, so for the purposes of this example we will focus on just a small area with a manageable amount of data.\n",
"BBOX = BoundingBox(lower_left_lon=-103.125559, lower_left_lat=-75.180563, upper_right_lon=-102.677327, upper_right_lat=-74.798063)\n",
"\n",
"# Define the dataset that we want to search for. ATM1B version 1 is the only version available at the time of writing.\n",
"atm1b_v1_dataset = ATM1BDataset(version=\"1\")\n",
"# Define the dataset that we want to search for.\n",
"atm1b_v1_dataset = ILATM1BDataset(version=\"1\")\n",
"\n",
"# We will define a short date range in 2009 to search for data. Again, we choose this primarily to keep the amount of data manageable.\n",
"date_range = (dt.date(2009, 11, 1), dt.date(2009, 12, 31))\n",
Expand Down

0 comments on commit 27d164c

Please sign in to comment.