From 98bfc946af824e26d47ffc145c79e1a377e4e9d0 Mon Sep 17 00:00:00 2001 From: Emma Marshall <55526386+e-marshall@users.noreply.github.com> Date: Sat, 3 Feb 2024 20:27:14 -0700 Subject: [PATCH] fix text referencing duplicate ids --- asf_inspect.ipynb | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/asf_inspect.ipynb b/asf_inspect.ipynb index ee5b39d..8a0dff3 100644 --- a/asf_inspect.ipynb +++ b/asf_inspect.ipynb @@ -5461,7 +5461,7 @@ "id": "f59f9f3c-0b20-4584-a1bc-a784b1451972", "metadata": {}, "source": [ - "Interesting, it looks like there's only really data for the 0, 2, 4, 8 and 11 elements of the list of duplicates." + "Interesting, it looks like there's only really data for the 0, 2, 4, 7 and 9 elements of the list of duplicates." ] }, { @@ -5474,12 +5474,12 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 1, "id": "80493ec3-b2f2-40ba-a903-5398afef6dc1", "metadata": {}, "outputs": [], "source": [ - "drop_ls = [1,3,5,6,7,9,10]" + "drop_ls = [1,3,5,6,8,10,11]" ] }, { @@ -5492,10 +5492,22 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 2, "id": "3f7bfff9-18f9-421c-a957-9f44c2b69dd6", "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'asf_duplicates' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[2], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m drop_product_id_ls \u001b[38;5;241m=\u001b[39m \u001b[43masf_duplicates\u001b[49m\u001b[38;5;241m.\u001b[39misel(acq_date \u001b[38;5;241m=\u001b[39m drop_ls)\u001b[38;5;241m.\u001b[39mproduct_id\u001b[38;5;241m.\u001b[39mdata\n", + "\u001b[0;31mNameError\u001b[0m: name 'asf_duplicates' is not defined" + ] + } + ], "source": [ "drop_product_id_ls = asf_duplicates.isel(acq_date = drop_ls).product_id.data" ]