Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"Data Release: <a href=\"https://dp1.lsst.io/\">Data Preview 1</a> <br>\n",
"Container Size: Large <br>\n",
"LSST Science Pipelines version: Release r29.2.0 <br>\n",
"Last verified to run: 2025-09-07 <br>\n",
"Last verified to run: 2026-05-27 <br>\n",
"Repository: <a href=\"https://github.com/lsst/tutorial-notebooks\">github.com/lsst/tutorial-notebooks</a> <br>"
]
},
Expand Down Expand Up @@ -192,7 +192,7 @@
"id": "016f2de7-84f9-4bee-aa2c-4f5b73159af2",
"metadata": {},
"source": [
"Open the read-only LSDB PZ catalog, which has been added by Rubin staff to the `/rubin` directory."
"Open the read-only LSDB PZ catalog, which has been added by Rubin staff to the `/rubin` directory. This notebook works with the originally released PZ data, which is now in the folder titled `object_photoz_old`."
]
},
{
Expand All @@ -202,7 +202,8 @@
"metadata": {},
"outputs": [],
"source": [
"pz_cat = lsdb.open_catalog(\"/rubin/lsdb_data/object_photoz\")"
"dir_name = \"object_photoz_old\"\n",
"pz_cat = lsdb.open_catalog(\"/rubin/lsdb_data/\" + dir_name)"
]
},
{
Expand Down Expand Up @@ -535,7 +536,7 @@
"metadata": {},
"outputs": [],
"source": [
"pz_cat = lsdb.open_catalog(\"/rubin/lsdb_data/object_photoz\",\n",
"pz_cat = lsdb.open_catalog(\"/rubin/lsdb_data/\" + dir_name,\n",
" columns=use_columns)"
]
},
Expand Down
Loading