Skip to content

Commit d1c748e

Browse files
committed
SF comments addressed
1 parent c6ef8bd commit d1c748e

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

Commissioning/102_LSSTCam_visits_metadata_2026.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
"\n",
221221
"notable_mjds = [np.floor(np.min(visits_table['mjd'])),\n",
222222
" 61095.0, 61110.0, 61125.0,\n",
223-
" np.floor(np.max(visits_table['mjd']))]\n",
223+
" np.ceil(np.max(visits_table['mjd']))]\n",
224224
"fig = plt.figure(figsize=(6, 4))\n",
225225
"for i, mjd in enumerate(notable_mjds):\n",
226226
" plt.axvline(mjd, ls='dotted', color='grey')\n",
@@ -241,7 +241,7 @@
241241
"id": "f4395967-7d9d-4925-85cc-2de4e757dece",
242242
"metadata": {},
243243
"source": [
244-
"> **Figure 1:** The cumulative distribution of visit MJDs (modified Julian dates) for all visits, for all filters combined. Notable dates are marked with vertical dotted lines: the start and end dates included int he file, the dat of first alerts (Feb 24 2026), and a period of engineering time when no alerts were released."
244+
"> **Figure 1:** The cumulative distribution of visit MJDs (modified Julian dates) for all visits, for all filters combined. Notable dates are marked with vertical dotted lines: the start and end dates included in the file, the date of first alerts (Feb 24 2026), and a period of engineering time when no alerts were released."
245245
]
246246
},
247247
{
@@ -429,8 +429,8 @@
429429
"fig = plt.figure(figsize=(6, 4))\n",
430430
"for f, filt in enumerate(filter_names):\n",
431431
" tx = np.where(visits_table['filter'] == filt)[0]\n",
432-
" plt.hist(visits_table['airmass'][tx], histtype='step', bins=75,\n",
433-
" range=(1.0, 3.0), cumulative=True, log=True,\n",
432+
" plt.hist(visits_table['airmass'][tx], histtype='step', bins=100,\n",
433+
" range=(1.0, np.max(visits_table['airmass'])), cumulative=True, log=True,\n",
434434
" linestyle=filter_linestyles[filt], color=filter_colors[filt], label=filt)\n",
435435
" del tx\n",
436436
"plt.legend(loc='best', ncol=2)\n",

Commissioning/103_Rubin_Schedule_Viewer.ipynb

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -566,9 +566,10 @@
566566
"id": "6c1bc4fa-bdb8-4fa0-9a63-11d17d2f13ec",
567567
"metadata": {},
568568
"source": [
569-
"<div class=\"alert alert-block alert-warning\">\n",
570-
"<b>At the time of last update, the past-schedule functionality of the schedule viewer was experiencing an outage.</b><br>\n",
571-
" See instead the \"DP2/102_Visit_and_tract_metadata\", \"Commissioning/101_LSSTCam_visits_database\", and \"Commissioning/102_LSSTCam_visits_metadata\" tutorial notebooks for access to past observations with LSSTCam.<br>\n",
569+
"<div class=\"alert alert-block alert-info\">\n",
570+
"<b>ADVISORY: At the time of last update, the past-schedule functionality of the schedule viewer was experiencing an outage. The code cells in Sections 4 and 5 have been temporarily commented out.</b>\n",
571+
"It is ok to un-comment them and try again, but if the third code cell down outputs \"There were 0 visits scheduled in the 24 hours from 2025-10-01\", then the issue persists.\n",
572+
"See instead the \"DP2/102_Visit_and_tract_metadata\", \"Commissioning/101_LSSTCam_visits_database\", and \"Commissioning/102_LSSTCam_visits_metadata\" tutorial notebooks for access to past observations with LSSTCam.<br>\n",
572573
"</div>"
573574
]
574575
},

0 commit comments

Comments
 (0)