{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Short-term scheduling" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here we present the short-term scheduling module. The short-term scheduling module of spock has been concived to modify existing plan in order to add special or follow up observations, like transits or monitoring for instance." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", "\n", "**Note:** Before you insert new observations and upload them please make sure you have informed the SPECULOOS consortium \n", "\n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1- Special target" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " \n", "**WARNING:** First of all, users must ensure that they have entered requiered information of the target they wish to schedule in the **WG6 spread sheet**. Either under the tab `Annex_Targets_V2-STARS` for a external program observation without specific ephemeris or the tab `Annex_Targets_V1-PLANETS` if ephemeris (mostly transits) are required. \n", "\n", "
\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### For a special observation with given start/end time " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here is the existing **night_blocks** for a given `date` and a given `telescope`: \n" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
targetstart time (UTC)end time (UTC)duration (minutes)ra (h)ra (m)ra (s)dec (d)dec (m)dec (s)configuration
0Sp1845-63572021-08-01 22:56:20.0172021-08-02 04:44:00.017347.66666718.045.08.66448-63.0-57.0-47.4624{'filt': 'i', 'texp': '20'}
1Sp2331-27492021-08-02 04:44:20.0172021-08-02 10:40:00.017355.66666723.031.021.75288-27.0-49.0-49.6056{'filt': 'I+z', 'texp': '28'}
\n", "
" ], "text/plain": [ " target start time (UTC) end time (UTC) \\\n", "0 Sp1845-6357 2021-08-01 22:56:20.017 2021-08-02 04:44:00.017 \n", "1 Sp2331-2749 2021-08-02 04:44:20.017 2021-08-02 10:40:00.017 \n", "\n", " duration (minutes) ra (h) ra (m) ra (s) dec (d) dec (m) dec (s) \\\n", "0 347.666667 18.0 45.0 8.66448 -63.0 -57.0 -47.4624 \n", "1 355.666667 23.0 31.0 21.75288 -27.0 -49.0 -49.6056 \n", "\n", " configuration \n", "0 {'filt': 'i', 'texp': '20'} \n", "1 {'filt': 'I+z', 'texp': '28'} " ] }, "execution_count": 28, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import SPOCK.stats as SPOCKstats\n", "\n", "SPOCKstats.read_night_plans_server(telescope='Io',date='2021-08-01')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "First you want to create the **night_blocks** . The only esstial information are: \n", "\n", "+ the name of the site, ex: `obs_name = 'SSO'`\n", "\n", "+ the name of the telescope (because there can be several telescope per site), ex: `telescope ='Europa'`\n", "\n", "+ the date the night starts, ex: `day_of_night ='2020-12-12 15:00:00'`\n", "\n", "+ and the name of your target, `input_name = 'Trappist-1'`\n", "\n", "+ start and end time in a list, ex: `start_end_range = ['2020-12-12 23:00:00','2020-12-13 01:00:00']`\n", "\n", "NB: you must first have filled info on the target on the WG6 spread sheet beforehand " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This is the block you wish to insert:" ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32mINFO: \u001b[30m Not using moon phase in ETC\n", "\n" ] }, { "data": { "text/html": [ "Table length=1\n", "\n", "\n", "\n", "\n", "
targetstart time (UTC)end time (UTC)duration (minutes)ra (h)ra (m)ra (s)dec (d)dec (m)dec (s)configuration
str9str23str23float64float64float64float64float64float64float64object
Nemesis-52021-08-02 04:00:00.0292021-08-02 08:00:00.029239.9999999999999423.048.047.59920000001159-7.0-51.0-48.66840000000053{'filt': 'I+z', 'texp': '59'}
" ], "text/plain": [ "\n", " target start time (UTC) ... configuration \n", " str9 str23 ... object \n", "--------- ----------------------- ... -----------------------------\n", "Nemesis-5 2021-08-02 04:00:00.029 ... {'filt': 'I+z', 'texp': '59'}" ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import SPOCK.short_term_scheduler as SPOCKST\n", "from astropy.time import Time\n", "\n", "schedule = SPOCKST.Schedules()\n", "\n", "schedule.load_parameters()\n", "schedule.day_of_night = Time('2021-08-01 15:00:00')\n", "schedule.observatory_name = 'SSO'\n", "schedule.telescope = 'Io'\n", "schedule.start_end_range = Time(['2021-08-02 04:00:00','2021-08-02 08:00:00'])\n", "\n", "schedule.special_target_with_start_end(input_name=\"Nemesis-5\")\n", "\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now you modify existing plan to insert your observation block:" ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32mINFO: \u001b[30m Local path does not exist yet \n", "\u001b[32mINFO: \u001b[30m situation 9\n", "\u001b[32mINFO: \u001b[30m situation 2\n", "\u001b[32mINFO: \u001b[30m no transition block\n" ] } ], "source": [ "schedule.make_scheduled_table()\n", "schedule.planification()\n", "schedule.make_night_block()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here is how the modified **|night blocks|** looks like:" ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [ { "data": { "text/html": [ "Table length=3\n", "
\n", "\n", "\n", "\n", "\n", "\n", "
targetstart time (UTC)end time (UTC)duration (minutes)ra (h)ra (m)ra (s)dec (d)dec (m)dec (s)configuration
str11str23str23float64float64float64float64float64float64float64object
Sp1845-63572021-08-01 22:56:20.0172021-08-02 04:00:00.029303.666866666666518.045.08.664480000022934-63.0-57.0-47.46239999999375{'filt': 'i', 'texp': '20'}
Nemesis-52021-08-02 04:00:00.0292021-08-02 08:00:00.029239.9999999999999423.048.047.59920000001159-7.0-51.0-48.66840000000053{'filt': 'I+z', 'texp': '59'}
Sp2331-27492021-08-02 08:00:00.0292021-08-02 10:40:00.017159.999823.031.021.752880000023254-27.0-49.0-49.60559999999447{'filt': 'I+z', 'texp': '28'}
" ], "text/plain": [ "\n", " target start time (UTC) ... configuration \n", " str11 str23 ... object \n", "----------- ----------------------- ... -----------------------------\n", "Sp1845-6357 2021-08-01 22:56:20.017 ... {'filt': 'i', 'texp': '20'}\n", " Nemesis-5 2021-08-02 04:00:00.029 ... {'filt': 'I+z', 'texp': '59'}\n", "Sp2331-2749 2021-08-02 08:00:00.029 ... {'filt': 'I+z', 'texp': '28'}" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "display(schedule.scheduled_table_sorted)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### For a special target that you wish to observe as much as possible" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here is the existing **|night blocks|** for a given `date` and a given `telescope`:" ] }, { "cell_type": "code", "execution_count": 32, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
targetstart time (UTC)end time (UTC)duration (minutes)ra (h)ra (m)ra (s)dec (d)dec (m)dec (s)configuration
0NGTS-112020-12-10 19:05:40.0092020-12-11 00:49:00.009343.3333331.034.05.148000-14.0-25.0-8.93640{'filt=g', 'texp=10'}
1Sp0840+18242020-12-11 00:49:00.0092020-12-11 06:53:20.009364.3333338.040.029.63455218.024.08.72676{'texp=26', 'filt=I+z'}
\n", "" ], "text/plain": [ " target start time (UTC) end time (UTC) \\\n", "0 NGTS-11 2020-12-10 19:05:40.009 2020-12-11 00:49:00.009 \n", "1 Sp0840+1824 2020-12-11 00:49:00.009 2020-12-11 06:53:20.009 \n", "\n", " duration (minutes) ra (h) ra (m) ra (s) dec (d) dec (m) dec (s) \\\n", "0 343.333333 1.0 34.0 5.148000 -14.0 -25.0 -8.93640 \n", "1 364.333333 8.0 40.0 29.634552 18.0 24.0 8.72676 \n", "\n", " configuration \n", "0 {'filt=g', 'texp=10'} \n", "1 {'texp=26', 'filt=I+z'} " ] }, "execution_count": 32, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import SPOCK.stats as SPOCKstats\n", "\n", "SPOCKstats.read_night_plans_server(telescope='Artemis',date='2020-12-10')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "First you want to create the **night_blocks** . The only essential information needed are: \n", "\n", "+ the name of the site, ex: `obs_name = 'SSO'`\n", "\n", "+ the name of the telescope (because there can be several telescope per site), ex: `telescope = 'Europa'`\n", "\n", "+ the date the night starts, ex: `day_of _night = '2020-12-12 15:00:00'`\n", "\n", "+ and the name of your target, `input_name = 'Trappist-1'`\n", "\n", "NB: you must first have filled info on the target in *target_list_special.txt* beforehand " ] }, { "cell_type": "code", "execution_count": 33, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "text/html": [ "Table length=1\n", "\n", "\n", "\n", "\n", "
targetstart time (UTC)end time (UTC)duration (minutes)ra (h)ra (m)ra (s)dec (d)dec (m)dec (s)configuration
str9str23str23float64float64float64float64float64float64float64object
WASP-85Ab2020-12-11 03:09:40.0272020-12-11 07:08:00.027238.333333333333411.043.038.008200000006986.033.049.45220639999988{'filt': "g'", 'texp': '10'}
" ], "text/plain": [ "\n", " target start time (UTC) ... configuration \n", " str9 str23 ... object \n", "--------- ----------------------- ... ----------------------------\n", "WASP-85Ab 2020-12-11 03:09:40.027 ... {'filt': \"g'\", 'texp': '10'}" ] }, "execution_count": 33, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import SPOCK.short_term_scheduler as SPOCKST\n", "from astropy.time import Time\n", "\n", "schedule = SPOCKST.Schedules()\n", "\n", "schedule.load_parameters()\n", "schedule.day_of_night = Time('2020-12-10 15:00:00')\n", "schedule.observatory_name = 'SNO'\n", "schedule.telescope = 'Artemis'\n", "schedule.special_target(input_name=\"WASP-85Ab\")\n", "\n" ] }, { "cell_type": "code", "execution_count": 34, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32mINFO: \u001b[30m Local path does not exist yet \n", "\u001b[32mINFO: \u001b[30m situation 7\n", "\u001b[32mINFO: \u001b[30m situation 10, no change made to initial schedule\n", "\u001b[32mINFO: \u001b[30m situation 7\n", "\u001b[32mINFO: \u001b[30m no transition block\n" ] } ], "source": [ "schedule.make_scheduled_table()\n", "schedule.planification()\n", "schedule.make_night_block()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here is how the modified **night_blocks** looks like:" ] }, { "cell_type": "code", "execution_count": 35, "metadata": {}, "outputs": [ { "data": { "text/html": [ "Table length=3\n", "
\n", "\n", "\n", "\n", "\n", "\n", "
targetstart time (UTC)end time (UTC)duration (minutes)ra (h)ra (m)ra (s)dec (d)dec (m)dec (s)configuration
str11str23str23float64float64float64float64float64float64float64object
NGTS-112020-12-10 19:05:40.0092020-12-11 03:09:40.027484.000299999999871.034.05.148000000001645-14.0-25.0-8.93639999999678{'filt=g', 'texp=10'}
Sp0840+18242020-12-11 00:49:00.0092020-12-11 03:09:40.027140.666966666666758.040.029.63455200000666418.024.08.726760000003821{'texp=26', 'filt=I+z'}
WASP-85Ab2020-12-11 03:09:40.0272020-12-11 07:07:41.682238.027583333333311.043.038.008200000006986.033.049.45220639999988{'filt': "g'", 'texp': '10'}
" ], "text/plain": [ "\n", " target start time (UTC) ... configuration \n", " str11 str23 ... object \n", "----------- ----------------------- ... ----------------------------\n", " NGTS-11 2020-12-10 19:05:40.009 ... {'filt=g', 'texp=10'}\n", "Sp0840+1824 2020-12-11 00:49:00.009 ... {'texp=26', 'filt=I+z'}\n", " WASP-85Ab 2020-12-11 03:09:40.027 ... {'filt': \"g'\", 'texp': '10'}" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "display(schedule.scheduled_table_sorted)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2- Follow-up" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here is the existing **night_blocks** for a given `date` and a given `telescope`:" ] }, { "cell_type": "code", "execution_count": 36, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
targetstart time (UTC)end time (UTC)duration (minutes)ra (h)ra (m)ra (s)dec (d)dec (m)dec (s)configuration
0Sp0008+49182020-09-15 20:02:00.0102020-09-16 06:00:40.010598.6666670.08.055.3628449.018.056.3202{'filt=I+z', 'texp=20'}
\n", "" ], "text/plain": [ " target start time (UTC) end time (UTC) \\\n", "0 Sp0008+4918 2020-09-15 20:02:00.010 2020-09-16 06:00:40.010 \n", "\n", " duration (minutes) ra (h) ra (m) ra (s) dec (d) dec (m) dec (s) \\\n", "0 598.666667 0.0 8.0 55.36284 49.0 18.0 56.3202 \n", "\n", " configuration \n", "0 {'filt=I+z', 'texp=20'} " ] }, "execution_count": 36, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import SPOCK.stats as SPOCKstats\n", "\n", "SPOCKstats.read_night_plans_server(telescope='Artemis',date='2020-09-15')" ] }, { "cell_type": "code", "execution_count": 37, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32m\u001b[32m\u001b[32mINFO: \u001b[30m \u001b[30m\u001b[30mTrappist-1b next transit: ['2020-09-15 21:05:27.228']\n", "\n", "\u001b[32mINFO: \u001b[30m start_transit of Trappist-1b : 2020-09-15 20:47:17.958\n", "\u001b[32m\u001b[32mINFO: \u001b[30m \u001b[30m end_transit of Trappist-1b : 2020-09-15 21:23:36.498\n", "\u001b[32m\u001b[32mINFO: \u001b[30m \u001b[30m Transit is expected to be full.\n" ] }, { "data": { "text/html": [ "Table length=1\n", "\n", "\n", "\n", "\n", "
targetstart time (UTC)end time (UTC)duration (minutes)ra (h)ra (m)ra (s)dec (d)dec (m)dec (s)configuration
str11str23str23float64float64float64float64float64float64float64object
Trappist-1b2020-09-15 20:40:20.0122020-09-15 22:21:00.012100.6666666666666923.06.028.999920000019017-5.0-2.0-27.99996000000064{'filt': 'I+z', 'texp': '23'}
" ], "text/plain": [ "\n", " target start time (UTC) ... configuration \n", " str11 str23 ... object \n", "----------- ----------------------- ... -----------------------------\n", "Trappist-1b 2020-09-15 20:40:20.012 ... {'filt': 'I+z', 'texp': '23'}" ] }, "execution_count": 37, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import SPOCK.short_term_scheduler as SPOCKST\n", "from astropy.time import Time\n", "\n", "schedule = SPOCKST.Schedules()\n", "\n", "schedule.load_parameters()\n", "schedule.day_of_night = Time('2020-09-15 15:00:00')\n", "schedule.observatory_name = 'SNO'\n", "schedule.telescope = 'Artemis'\n", "\n", "schedule.transit_follow_up(input_name=\"Trappist-1b\")" ] }, { "cell_type": "code", "execution_count": 38, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32mINFO: \u001b[30m Local path does not exist yet \n", "\u001b[32mINFO: \u001b[30m situation 6\n", "\u001b[32mINFO: \u001b[30m no transition block\n" ] } ], "source": [ "schedule.make_scheduled_table()\n", "schedule.planification()\n", "schedule.make_night_block()" ] }, { "cell_type": "code", "execution_count": 39, "metadata": {}, "outputs": [ { "data": { "text/html": [ "Table length=3\n", "
\n", "\n", "\n", "\n", "\n", "\n", "
targetstart time (UTC)end time (UTC)duration (minutes)ra (h)ra (m)ra (s)dec (d)dec (m)dec (s)configuration
str13str23str23float64float64float64float64float64float64float64object
Sp0008+49182020-09-15 20:02:00.0102020-09-15 20:40:20.01238.3333666666668340.08.055.36284000000005549.018.056.32019999999159{'filt=I+z', 'texp=20'}
Trappist-1b2020-09-15 20:40:20.0122020-09-15 22:21:00.012100.6666666666666923.06.028.999920000019017-5.0-2.0-27.99996000000064{'filt': 'I+z', 'texp': '23'}
Sp0008+4918_22020-09-15 22:21:00.0122020-09-16 06:00:40.010459.666633333333150.08.055.36284000000005549.018.056.32019999999159{'filt=I+z', 'texp=20'}
" ], "text/plain": [ "\n", " target start time (UTC) ... configuration \n", " str13 str23 ... object \n", "------------- ----------------------- ... -----------------------------\n", " Sp0008+4918 2020-09-15 20:02:00.010 ... {'filt=I+z', 'texp=20'}\n", " Trappist-1b 2020-09-15 20:40:20.012 ... {'filt': 'I+z', 'texp': '23'}\n", "Sp0008+4918_2 2020-09-15 22:21:00.012 ... {'filt=I+z', 'texp=20'}" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "display(schedule.scheduled_table_sorted)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3- Save your plans and night blocks" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If you are satisfied with this modified **night_blocks** you can save it. Executing this cell will upadate your local spock database. The **night_blocks** will be saved in `your_spock_path + \"/DATABASE/telescope/Archive_night_blocks/\"`" ] }, { "cell_type": "code", "execution_count": 40, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32mINFO: \u001b[30m\"/Users/elsaducrot/spock_2/night_blocks_propositions/night_blocks_Io_2021-08-01.txt\" has been over-written to \"/Users/elsaducrot/spock_2/DATABASE/Io/\"\n" ] } ], "source": [ "schedule = SPOCKST.Schedules()\n", "schedule.day_of_night = Time('2021-08-01 15:00:00')\n", "schedule.telescope = 'Io'\n", "\n", "SPOCKST.save_schedule(save=True,over_write=True,day=schedule.day_of_night,telescope=schedule.telescope)\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now that you have saved the night block it's time to create the ACP plans to send to the control PC of the corresonding telescope. To do so you just have to execute the cell below with the following information:\n", "\n", "* `day`, start date you wish to make ACP plans for\n", "\n", "* `nb_days`, number of days you wish to make plan for (starting at the date define in `day`)\n", "\n", "* `telescope`, name of the telescope at sake\n", "\n", "ACP plans will be saved in `your_spock_path + \"/DATABASE/telescope/Plans_by_date/\"`" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 4- Make ACP format plans" ] }, { "cell_type": "code", "execution_count": 41, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[32mINFO: \u001b[30m Path exists and is: /Users/elsaducrot/spock_2/DATABASE/Io/night_blocks_Io_2021-08-01.txt\n", "\u001b[33mWARNING: \u001b[30m not possible at that time because of altitude constraint, adding 20 degrees altitude\n", "\n" ] } ], "source": [ "SPOCKST.make_plans(day = schedule.day_of_night,nb_days=1,telescope = schedule.telescope)\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now you can upload these ACP plans and **night_blocks** to the [Cambridge Archive](http://www.mrao.cam.ac.uk/SPECULOOS/) as well as the plans sent to the control PCs. You will just need to provide :\n", "\n", "* `day`, start date you for which you wish to upload plans and **night_blocks** \n", "\n", "* `nb_days`, number of days you wish to upload (starting at the date define in `day`)\n", "\n", "* `telescope`, name of the telescope at sake" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 5- upload your plans and **night_blocks** on the control computers and archive" ] }, { "cell_type": "code", "execution_count": 42, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "-----> 2021-08-01 Plans uploaded on the Cambridge server\n", "-----> 2021-08-01 Night plans uploaded on the Cambridge server\n", "-----> 2021-08-01 Zip Plans_by_dates folder uploaded on the Cambridge server\n", "-----> 2021-08-01 Zip Plans_by_dates folder uploaded on the HUB for Io\n", "\u001b[32mINFO: \u001b[30m Path local 'Gant chart' = /Users/elsaducrot/spock_2/SPOCK_Figures/Preview_schedule.html\n", "\u001b[32mINFO: \u001b[30m Path database = 'Gant chart' = speculoos@appcs.ra.phy.cam.ac.uk:/appct/data/SPECULOOSPipeline/Preview_schedule.html\n" ] } ], "source": [ "SPOCKST.upload_plans(day=schedule.day_of_night, nb_days=1,telescope = schedule.telescope)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.9" } }, "nbformat": 4, "nbformat_minor": 4 }