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
Copy file name to clipboardExpand all lines: docs/notebooks/iceflow-with-icepyx.ipynb
+8-12Lines changed: 8 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -763,8 +763,6 @@
763
763
"import xarray as xr\n",
764
764
"\n",
765
765
"from nsidc.iceflow import (\n",
766
-
" BoundingBox,\n",
767
-
" DatasetSearchParameters,\n",
768
766
" IceflowDataFrame,\n",
769
767
" download_iceflow_results,\n",
770
768
" find_iceflow_data,\n",
@@ -804,11 +802,11 @@
804
802
"ICESAT2_ITRF = \"ITRF2014\"\n",
805
803
"\n",
806
804
"# This bounding box covers an area near Sermeq Kujalleq (Jakobshavn Isbrae)\n",
807
-
"BBOX = BoundingBox(\n",
808
-
"lower_left_lon=-49.149,\n",
809
-
"lower_left_lat=69.186,\n",
810
-
"upper_right_lon=-48.949,\n",
811
-
"upper_right_lat=69.238,\n",
805
+
"BBOX = (\n",
806
+
" -49.149,\n",
807
+
" 69.186,\n",
808
+
" -48.949,\n",
809
+
" 69.238,\n",
812
810
")\n",
813
811
"\n",
814
812
"# Range of dates we want to evaluate\n",
@@ -822,7 +820,7 @@
822
820
"source": [
823
821
"Next we will use the `find_iceflow_data` function from the `iceflow` API to find data matching our area of interest.\n",
824
822
"\n",
825
-
"By default, `DatasetSearchParameters` will include all `iceflow` supported datasets, unless one or more are specified as a filter with the `datasets` kwarg. There may be warnings raised about there not being search results for specific datasets supported by `iceflow`."
823
+
"By default, `find_iceflow_data` will include all `iceflow` supported datasets, unless one or more are specified as a filter with the `datasets` kwarg. There may be warnings raised about there not being search results for specific datasets supported by `iceflow`."
0 commit comments