Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
pothiers committed Oct 30, 2024
1 parent 3635246 commit d2b7dab
Showing 1 changed file with 38 additions and 3 deletions.
41 changes: 38 additions & 3 deletions notebooks_tsqr/ExposureDetail.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,16 @@
"# Normalize Parameters (both explicit Times Squares params and implicit ones)\n",
"observation_reason = None if observation_reason == \"ALL\" else observation_reason\n",
"observation_type = None if observation_type == \"ALL\" else observation_type\n",
"science_program = None if science_program == \"ALL\" else science_program"
"science_program = None if science_program == \"ALL\" else science_program\n",
"params = dict(\n",
" day_obs=day_obs,\n",
" number_of_days=number_of_days,\n",
" instrument=instrument,\n",
" observation_reason=observation_reason,\n",
" observation_type=observation_type,\n",
" science_program=science_program,\n",
")\n",
"display(params)"
]
},
{
Expand Down Expand Up @@ -95,15 +104,41 @@
"df"
]
},
{
"cell_type": "markdown",
"id": "4",
"metadata": {},
"source": [
"-----------------"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "4",
"id": "5",
"metadata": {},
"outputs": [],
"source": [
"print(f\"{instrument=}, {science_program=}, {observation_reason=}, {observation_type=}\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "6",
"metadata": {},
"outputs": [],
"source": [
"instrument, science_program, observation_reason, observation_type"
"print(f\"{server=}\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "7",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
Expand Down

0 comments on commit d2b7dab

Please sign in to comment.