Skip to content

Commit

Permalink
fix text referencing duplicate ids
Browse files Browse the repository at this point in the history
  • Loading branch information
e-marshall committed Feb 4, 2024
1 parent a36d9fb commit 98bfc94
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions asf_inspect.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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."
]
},
{
Expand All @@ -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]"
]
},
{
Expand All @@ -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"
]
Expand Down

0 comments on commit 98bfc94

Please sign in to comment.