1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
|
.. _scheduling_tutorial:
.. doctest-skip-all
***************************
Scheduling an Observing Run
***************************
.. note::
Some terms used have been defined in :ref:`Terminology <terminology>`.
Contents
========
* :ref:`scheduling-defining_targets`
* :ref:`scheduling-creating_constraints_and_observing_blocks`
* :ref:`scheduling-creating_a_transitioner`
* :ref:`scheduling-scheduling`
* :ref:`scheduling-user_defined_schedulers`
* :ref:`scheduling-using_the_scorer`
.. _scheduling-defining_targets:
Defining Targets
================
We want to observe Deneb and M13 in the B, V and R filters. We are scheduled
for the first half-night on July 6 2016 and want to know the order we should
schedule the targets in.
First we define our `~astroplan.Observer` object (where we are observing from):
.. code-block:: python
>>> from astroplan import Observer
>>> apo = Observer.at_site('apo')
Now we want to define our list of targets (`~astroplan.FixedTarget` objects),
any object that is in SIMBAD can be called by an identifier.
.. code-block:: python
>>> from astroplan import FixedTarget
>>> # Initialize the targets
>>> deneb = FixedTarget.from_name('Deneb')
>>> m13 = FixedTarget.from_name('M13')
>>> deneb
<FixedTarget "deneb" at SkyCoord (ICRS): (ra, dec) in deg (310.35797975, 45.28033881)>
>>> m13
<FixedTarget "M13" at SkyCoord (ICRS): (ra, dec) in deg (250.423475, 36.4613194)>
We also need to define bounds within which our blocks will be scheduled
using `~astropy.time.Time` objects. Our bounds will be from the noon
before our observation, to the noon after (19:00 UTC). Later we will
account for only being able to use the first half of the night.
.. code-block:: python
>>> from astropy.time import Time
>>> noon_before = Time('2016-07-06 19:00')
>>> noon_after = Time('2016-07-07 19:00')
:ref:`Return to Top <scheduling_tutorial>`
.. _scheduling-creating_constraints_and_observing_blocks:
Creating Constraints and Observing Blocks
=========================================
An in-depth tutorial on creating and using constraints can be found in
the :ref:`constraint tutorial <constraints>`.
Constraints, when evaluated, take targets and times, and give scores that
indicate how well the combination of target and time fulfill the constraint.
We want to make sure that our targets will be high in the sky while observed
and that they will be observed during the night. We don't want any object to
be observed at an airmass greater than 3, but we prefer a better airmass.
Usually constraints scores are boolean, but with ``boolean_constraint = False``
the constraint will output floats instead, indicated when it is closer to ideal.
.. code-block:: python
>>> from astroplan.constraints import AtNightConstraint, AirmassConstraint
>>> # create the list of constraints that all targets must satisfy
>>> global_constraints = [AirmassConstraint(max = 3, boolean_constraint = False),
... AtNightConstraint.twilight_civil()]
Now that we have constraints that we will apply to every target, we need to
create an `~astroplan.ObservingBlock` for each target+configuration
combination. An observing block needs a target, a duration, and a priority;
configuration information can also be given (i.e. filter, instrument, etc.).
For each filter we want 16 exposures per target (100 seconds for M13 and 60
seconds for Deneb) and the instrument has a read-out time of 20 seconds.
The half night goes from 7PM local time to 1AM local time, in UTC this will
be from 2AM to 8AM, so we use `~astroplan.constraints.TimeConstraint`.
.. code-block:: python
>>> from astroplan import ObservingBlock
>>> from astroplan.constraints import TimeConstraint
>>> from astropy import units as u
>>> # Define the read-out time, exposure duration and number of exposures
>>> read_out = 20 * u.second
>>> deneb_exp = 60*u.second
>>> m13_exp = 100*u.second
>>> n = 16
>>> blocks = []
>>> half_night_start = Time('2016-07-07 02:00')
>>> half_night_end = Time('2016-07-07 08:00')
>>> first_half_night = TimeConstraint(half_night_start, half_night_end)
>>> # Create ObservingBlocks for each filter and target with our time
>>> # constraint, and durations determined by the exposures needed
>>> for priority, bandpass in enumerate(['B', 'G', 'R']):
... # We want each filter to have separate priority (so that target
... # and reference are both scheduled)
... b = ObservingBlock.from_exposures(deneb, priority, deneb_exp, n, read_out,
... configuration = {'filter': bandpass},
... constraints = [first_half_night])
... blocks.append(b)
... b = ObservingBlock.from_exposures(m13, priority, m13_exp, n, read_out,
... configuration = {'filter': bandpass},
... constraints = [first_half_night])
... blocks.append(b)
.. _scheduling-creating_a_transitioner:
Creating a Transitioner
=======================
Now that we have observing blocks, we need to define how the telescope
transitions between them. The first parameter needed is the slew_rate
of the telescope (degrees/second) and the second is a dictionary that
tells how long it takes to transition between two configurations. You
can also give a default duration if you aren't able to give one for
each pair of configurations.
.. code-block:: python
>>> from astroplan.scheduling import Transitioner
>>> # Initialize a transitioner object with the slew rate and/or the
>>> # duration of other transitions (e.g. filter changes)
>>> slew_rate = .8*u.deg/u.second
>>> transitioner = Transitioner(slew_rate,
... {'filter':{('B','G'): 10*u.second,
... ('G','R'): 10*u.second,
... 'default': 30*u.second}})
The transitioner now knows that it takes 10 seconds to go from 'B' to 'G',
or from 'G' to 'R' but has to use the default transition time of 30 seconds
for any other transition between filters. Non-transitions, like 'g' to 'g',
will not take any time though.
.. _scheduling-scheduling:
Scheduling
==========
Now all we have left is to initialize the scheduler, input our list
of blocks and the schedule to put them in. There are currently two
schedulers to choose from in astroplan.
The first is a sequential scheduler. It starts at the start_time and
scores each block (constraints and target) at that time and then
schedules it, it then moves to where the first observing block stops
and repeats the scoring and scheduling on the remaining blocks.
.. code-block:: python
>>> from astroplan.scheduling import SequentialScheduler
>>> from astroplan.scheduling import Schedule
>>> # Initialize the sequential scheduler with the constraints and transitioner
>>> seq_scheduler = SequentialScheduler(constraints = global_constraints,
... observer = apo,
... transitioner = transitioner)
>>> # Initialize a Schedule object, to contain the new schedule
>>> sequential_schedule = Schedule(noon_before, noon_after)
>>> # Call the schedule with the observing blocks and schedule to schedule the blocks
>>> seq_scheduler(blocks, sequential_schedule)
The second is a priority scheduler. It sorts the blocks by their
priority (multiple blocks with the same priority will stay in the
order they were in), then schedules them one-by-one at the best
time for that block (highest score).
.. code-block:: python
>>> from astroplan.scheduling import PriorityScheduler
>>> # Initialize the priority scheduler with the constraints and transitioner
>>> prior_scheduler = PriorityScheduler(constraints = global_constraints,
... observer = apo,
... transitioner = transitioner)
>>> # Initialize a Schedule object, to contain the new schedule
>>> priority_schedule = Schedule(noon_before, noon_after)
>>> # Call the schedule with the observing blocks and schedule to schedule the blocks
>>> prior_scheduler(blocks, priority_schedule)
Now that you have a schedule there are a few ways of viewing it.
One way is to have it print a table where you can show, or hide,
unused time and transitions with ``show_transitions`` and
``show_unused`` (default is showing transitions and not unused).
.. code-block:: python
>>> priority_schedule.to_table()
target start time (UTC) end time (UTC) duration (minutes) ra dec configuration
str15 str23 str23 float64 str32 str32 object
--------------- ----------------------- ----------------------- ------------------ --------------- -------------- -----------------
M13 2016-07-07 03:49:20.019 2016-07-07 04:21:20.019 32.0 250d25m24.51s 36d27m40.7498s {'filter': 'R'}
TransitionBlock 2016-07-07 04:21:20.019 2016-07-07 04:22:00.019 0.666666666667 ['filter:R to B']
M13 2016-07-07 04:25:20.021 2016-07-07 04:57:20.021 32.0 250d25m24.51s 36d27m40.7498s {'filter': 'B'}
TransitionBlock 2016-07-07 04:57:20.021 2016-07-07 04:57:40.021 0.333333333333 ['filter:B to G']
M13 2016-07-07 04:57:40.021 2016-07-07 05:29:40.021 32.0 250d25m24.51s 36d27m40.7498s {'filter': 'G'}
TransitionBlock 2016-07-07 05:29:40.021 2016-07-07 05:31:00.021 1.33333333333 ['filter:G to R']
Deneb 2016-07-07 06:44:00.026 2016-07-07 07:05:20.026 21.3333333333 310d21m28.7271s 45d16m49.2197s {'filter': 'R'}
TransitionBlock 2016-07-07 07:05:20.026 2016-07-07 07:06:00.026 0.666666666667 ['filter:R to G']
Deneb 2016-07-07 07:09:20.027 2016-07-07 07:30:40.027 21.3333333333 310d21m28.7271s 45d16m49.2197s {'filter': 'G'}
TransitionBlock 2016-07-07 07:30:40.027 2016-07-07 07:31:20.027 0.666666666667 ['filter:G to B']
Deneb 2016-07-07 07:34:40.028 2016-07-07 07:56:00.028 21.3333333333 310d21m28.7271s 45d16m49.2197s {'filter': 'B'}
The other way is to plot the schedule against the airmass of the
targets.
.. code-block:: python
>>> from astroplan.plots import plot_schedule_airmass
>>> import matplotlib.pyplot as plt
>>> # plot the schedule with the airmass of the targets
>>> plt.figure(figsize = (14,6))
>>> plot_schedule_airmass(priority_schedule)
>>> plt.legend(loc = "upper right")
>>> plt.show()
.. plot::
# first import everything we will need for the scheduling
import astropy.units as u
from astropy.time import Time
from astroplan import (Observer, FixedTarget, ObservingBlock, Transitioner, PriorityScheduler,
Schedule)
from astroplan.constraints import AtNightConstraint, AirmassConstraint, TimeConstraint
from astroplan.plots import plot_schedule_airmass
import matplotlib.pyplot as plt
# Now we define the targets, observer, start time, and end time of the schedule.
deneb = FixedTarget.from_name('Deneb')
m13 = FixedTarget.from_name('M13')
noon_before = Time('2016-07-06 19:00')
noon_after = Time('2016-07-07 19:00')
apo = Observer.at_site('apo')
# Then define the constraints (global and specific) and make a list of the
# observing blocks that you want scheduled
global_constraints = [AirmassConstraint(max = 3, boolean_constraint = False),
AtNightConstraint.twilight_civil()]
# defining the read-out time, exposure duration and number of exposures
read_out = 20 * u.second
deneb_exp = 60*u.second
m13_exp = 100*u.second
n = 16
blocks = []
first_half_night = TimeConstraint(Time('2016-07-07 02:00'), Time('2016-07-07 08:00'))
for priority, bandpass in enumerate(['B', 'G', 'R']):
# We want each filter to have separate priority (so that target
# and reference are both scheduled)
b = ObservingBlock.from_exposures(deneb, priority, deneb_exp, n, read_out,
configuration = {'filter': bandpass},
constraints = [first_half_night])
blocks.append(b)
b = ObservingBlock.from_exposures(m13, priority, m13_exp, n, read_out,
configuration = {'filter': bandpass},
constraints = [first_half_night])
blocks.append(b)
# Define how the telescope transitions between the configurations defined in the
# observing blocks (target, filter, instrument, etc.).
transitioner = Transitioner(.8*u.deg/u.second,
{'filter':{('B','G'): 10*u.second,
('G','R'): 10*u.second,
'default': 30*u.second}})
# Initialize the scheduler
prior_scheduler = PriorityScheduler(constraints = global_constraints,
observer = apo, transitioner = transitioner)
# Create a schedule for the scheduler to insert the blocks into, and run the scheduler
priority_schedule = Schedule(noon_before, noon_after)
prior_scheduler(blocks, priority_schedule)
# To get a plot of the airmass vs where the blocks were scheduled
plt.figure(figsize = (14,6))
plot_schedule_airmass(priority_schedule)
plt.tight_layout()
plt.legend(loc="upper right")
plt.show()
There is a lot of unfilled space in our schedule currently. We can
fill that time with more observations of our targets by calling our
scheduler using the same blocks and the schedule we already added to.
.. code-block:: python
>>> prior_schedule(blocks, priority_schedule)
>>> plt.figure(figsize = (14,6))
>>> plot_schedule_airmass(priority_schedule)
>>> plt.legend(loc = "upper right")
>>> plt.show()
.. plot::
# first import everything we will need for the scheduling
import astropy.units as u
from astropy.time import Time
from astroplan import (Observer, FixedTarget, ObservingBlock, Transitioner, PriorityScheduler,
Schedule)
from astroplan.constraints import AtNightConstraint, AirmassConstraint, TimeConstraint
from astroplan.plots import plot_schedule_airmass
import matplotlib.pyplot as plt
# Now we define the targets, observer, start time, and end time of the schedule.
deneb = FixedTarget.from_name('Deneb')
m13 = FixedTarget.from_name('M13')
noon_before = Time('2016-07-06 19:00')
noon_after = Time('2016-07-07 19:00')
apo = Observer.at_site('apo')
# Then define the constraints (global and specific) and make a list of the
# observing blocks that you want scheduled
global_constraints = [AirmassConstraint(max = 3, boolean_constraint = False),
AtNightConstraint.twilight_civil()]
rot = 20 * u.second
blocks = []
first_half_night = TimeConstraint(Time('2016-07-07 02:00'), Time('2016-07-07 08:00'))
for priority, bandpass in enumerate(['B', 'G', 'R']):
# We want each filter to have separate priority (so that target
# and reference are both scheduled)
blocks.append(ObservingBlock.from_exposures(deneb, priority, 60*u.second, 16, rot,
configuration = {'filter': bandpass},
constraints = [first_half_night]))
blocks.append(ObservingBlock.from_exposures(m13, priority, 100*u.second, 16, rot,
configuration = {'filter': bandpass},
constraints = [first_half_night]))
# Define how the telescope transitions between the configurations defined in the
# observing blocks (target, filter, instrument, etc.).
transitioner = Transitioner(.8*u.deg/u.second,
{'filter':{('B','G'): 10*u.second,
('G','R'): 10*u.second,
'default': 30*u.second}})
# Initialize the scheduler
prior_scheduler = PriorityScheduler(constraints = global_constraints,
observer = apo, transitioner = transitioner)
# Create a schedule for the scheduler to insert the blocks into, and run the scheduler
priority_schedule = Schedule(noon_before, noon_after)
prior_scheduler(blocks, priority_schedule)
# add more of the blocks into the schedule
prior_scheduler(blocks, priority_schedule)
# To get a plot of the airmass vs where the blocks were scheduled
plt.figure(figsize = (14,6))
plot_schedule_airmass(priority_schedule)
plt.tight_layout()
plt.legend(loc="upper right")
plt.show()
We want to check if there is any way that we could observe Alpha
Centauri A as well during our time slot. So we create a new block
for it with priority over the others, add it to our list of blocks
and run the priority scheduler again.
.. code-block:: python
>>> alpha_cen = FixedTarget.from_name('Alpha Centauri A')
>>> # ObservingBlocks can also be called with arguments: target, duration, priority
>>> blocks.append(ObservingBlock(alpha_cen, 20*u.minute, -1))
>>> # Initialize a new schedule for this test
>>> schedule = Schedule(start_time, end_time)
>>> prior_scheduler(blocks, schedule)
>>> plt.figure(figsize = (14,6))
>>> plot_schedule_airmass(priority_schedule)
>>> plt.legend(loc = "upper right")
>>> plt.show()
.. plot::
# first import everything we will need for the scheduling
import astropy.units as u
from astropy.time import Time
from astroplan import (Observer, FixedTarget, ObservingBlock, Transitioner, PriorityScheduler,
Schedule)
from astroplan.constraints import AtNightConstraint, AirmassConstraint, TimeConstraint
from astroplan.plots import plot_schedule_airmass
import matplotlib.pyplot as plt
# Now we define the targets, observer, start time, and end time of the schedule.
deneb = FixedTarget.from_name('Deneb')
m13 = FixedTarget.from_name('M13')
noon_before = Time('2016-07-06 19:00')
noon_after = Time('2016-07-07 19:00')
apo = Observer.at_site('apo')
# Then define the constraints (global and specific) and make a list of the
# observing blocks that you want scheduled
global_constraints = [AirmassConstraint(max = 3, boolean_constraint = False),
AtNightConstraint.twilight_civil()]
# defining the read-out time, exposure duration and number of exposures
read_out = 20 * u.second
deneb_exp = 60*u.second
m13_exp = 100*u.second
n = 16
blocks = []
first_half_night = TimeConstraint(Time('2016-07-07 02:00'), Time('2016-07-07 08:00'))
for priority, bandpass in enumerate(['B', 'G', 'R']):
# We want each filter to have separate priority (so that target
# and reference are both scheduled)
b = ObservingBlock.from_exposures(deneb, priority, deneb_exp, n, read_out,
configuration = {'filter': bandpass},
constraints = [first_half_night])
blocks.append(b)
b = ObservingBlock.from_exposures(m13, priority, m13_exp, n, read_out,
configuration = {'filter': bandpass},
constraints = [first_half_night])
blocks.append(b)
# add the new target's block
alpha_cen = FixedTarget.from_name('Alpha Centauri A')
blocks.append(ObservingBlock(alpha_cen, 20*u.minute, -1))
# Define how the telescope transitions between the configurations defined in the
# observing blocks (target, filter, instrument, etc.).
transitioner = Transitioner(.8*u.deg/u.second,
{'filter':{('B','G'): 10*u.second,
('G','R'): 10*u.second,
'default': 30*u.second}})
# Initialize the scheduler
prior_scheduler = PriorityScheduler(constraints = global_constraints,
observer = apo, transitioner = transitioner)
# Create a schedule for the scheduler to insert the blocks into, and run the scheduler
priority_schedule = Schedule(noon_before, noon_after)
prior_scheduler(blocks, priority_schedule)
# To get a plot of the airmass vs where the blocks were scheduled
plt.figure(figsize = (14,6))
plot_schedule_airmass(priority_schedule)
plt.tight_layout()
plt.legend(loc="upper right")
plt.show()
Nothing new shows up because Alpha Centauri isn't visible from APO.
.. _scheduling-user_defined_schedulers:
User-Defined Schedulers
=======================
There are many ways that targets can be scheduled, only two of which
are currently implemented. This example will walk through the steps for
creating your own scheduler that will be compatible with the tools of
the ``scheduling`` module.
As you may have noticed above, the schedulers are assembled by making a
call to the initializer of the class (e.g. `~astroplan.scheduling.PriorityScheduler`).
Each of the schedulers is subclassed from the abstract `astroplan.scheduling.Scheduler`
class, and our custom scheduler needs to be as well.
A scheduler needs to be able to schedule observing blocks where they have a non-zero
score (i.e. they satisfy all of their constraints). For our scheduler, we will make
one that schedules ``ObservingBlocks`` at the first unoccupied place they have a score
greater than zero: a ``SimpleScheduler``. We need to include two methods, ``__init__``
and ``_make_schedule`` for it to work:
* The ``__init__`` is already defined by the super class, and accepts global constraints,
the `~astroplan.Observer`, the `~astroplan.scheduling.Transitioner`, a ``gap_time``,
and a ``time_resolution`` for spacing during the creation of the schedule.
* It also needs a ``_make_schedule`` to do the heavy lifting. This takes a list of
`~astroplan.scheduling.ObservingBlock` objects and a `~astroplan.scheduling.Schedule`
object to input them into. This method needs to be able to check whether a
block can be scheduled in a given spot, and be able to insert it into the
schedule once a suitable spot has been found. For score evaluation we will
use the built-in `~astroplan.scheduling.Scorer`.
Here's the ``SimpleScheduler`` implementation::
from astroplan.scheduling import Scheduler, Scorer
from astroplan.utils import time_grid_from_range
from astroplan.constraints import AltitudeConstraint
from astropy import units as u
import numpy as np
class SimpleScheduler(Scheduler):
"""
schedule blocks randomly
"""
def __init__(self, *args, **kwargs):
super(SimpleScheduler, self).__init__(*args, **kwargs)
def _make_schedule(self, blocks):
# gather all the constraints on each block into a single attribute
for b in blocks:
if b.constraints is None:
b._all_constraints = self.constraints
else:
b._all_constraints = self.constraints + b.constraints
# to make sure the Scorer has some constraint to work off of
# and to prevent scheduling of targets below the horizon
if b._all_constraints is None:
b._all_constraints = [AltitudeConstraint(min=0*u.deg)]
b.constraints = [AltitudeConstraint(min=0*u.deg)]
elif not any(isinstance(c, AltitudeConstraint) for c in b._all_constraints):
b._all_constraints.append(AltitudeConstraint(min=0*u.deg))
if b.constraints is None:
b.constraints = [AltitudeConstraint(min=0*u.deg)]
else:
b.constraints.append(AltitudeConstraint(min=0*u.deg))
b.observer = self.observer
# before we can schedule, we need to know where blocks meet the constraints
scorer = Scorer(blocks, self.observer, self.schedule,
global_constraints=self.constraints)
score_array = scorer.create_score_array(self.time_resolution)
# now we have an array of the scores for the blocks at intervals of
# ``time_resolution``. The scores range from zero to one, some blocks may have
# higher scores than others, but we only care if they are greater than zero
# we want to start from the beginning and start scheduling
start_time = self.schedule.start_time
current_time = start_time
while current_time < self.schedule.end_time:
scheduled = False
i=0
while i < len(blocks) and scheduled is False:
block = blocks[i]
# the schedule starts with only 1 slot
if len(self.schedule.slots) == 1:
test_time = current_time
# when a block is inserted, the number of slots increases
else:
# a test transition between the last scheduled block and this one
transition = self.transitioner(schedule.observing_blocks[-1],
block, current_time, self.observer)
test_time = current_time + transition.duration
# how many time intervals are we from the start
start_idx = int((test_time - start_time)/self.time_resolution)
duration_idx = int(block.duration/self.time_resolution)
# if any score during the block's duration would be 0, reject it
if any(score_array[i][start_idx:start_idx+duration_idx] == 0):
i +=1
# if all of the scores are >0, accept and schedule it
else:
if len(self.schedule.slots) >1:
self.schedule.insert_slot(current_time, transition)
self.schedule.insert_slot(test_time, block)
# advance the time and remove the block from the list
current_time = test_time + block.duration
scheduled = True
blocks.remove(block)
# if every block failed, progress the time
if i == len(blocks):
current_time += self.gap_time
return schedule
Then to use our new scheduler, we just need to call it how we did
up above::
>>> from astroplan.constraints import AtNightConstraint
>>> from astroplan.scheduling import Schedule, ObservingBlock
>>> from astroplan import FixedTarget, Observer, Transitioner
>>> from astropy.time import Time
>>> # Initialize the observer and targets, and create observing blocks
>>> apo = Observer.at_site('apo')
>>> deneb = FixedTarget.from_name('Deneb')
>>> m13 = FixedTarget.from_name('M13')
>>> blocks = [ObservingBlock(deneb, 20*u.minute, 0)]
>>> blocks.append(ObservingBlock(m13, 20*u.minute, 0))
>>> # For a telescope that can slew at a rate of 2 degrees/second
>>> transitioner = Transitioner(slew_rate=2*u.deg/u.second)
>>> # Schedule the observing blocks using the simple scheduler
>>> schedule = Schedule(Time('2016-07-06 19:00'), Time('2016-07-07 19:00'))
>>> scheduler = SimpleScheduler(observer = apo, transitioner = transitioner,
... constraints = [])
>>> scheduler(blocks, schedule)
>>> # Plot the created schedule
>>> import matplotlib.pyplot as plt
>>> from astroplan.plots import plot_schedule_airmass
>>> plot_schedule_airmass(schedule)
>>> plt.legend()
>>> plt.show()
.. plot::
from astroplan.scheduling import Scheduler, Scorer
from astroplan.utils import time_grid_from_range
from astroplan.constraints import AltitudeConstraint
from astropy import units as u
import numpy as np
class SimpleScheduler(Scheduler):
"""
schedule blocks randomly
"""
def __init__(self, *args, **kwargs):
super(SimpleScheduler, self).__init__(*args, **kwargs)
def _make_schedule(self, blocks):
# gather all the constraints on each block into a single attribute
for b in blocks:
if b.constraints is None:
b._all_constraints = self.constraints
else:
b._all_constraints = self.constraints + b.constraints
# to make sure the Scorer has some constraint to work off of
# and to prevent scheduling of targets below the horizon
if b._all_constraints is None:
b._all_constraints = [AltitudeConstraint(min=0*u.deg)]
b.constraints = [AltitudeConstraint(min=0*u.deg)]
elif not any(isinstance(c, AltitudeConstraint) for c in b._all_constraints):
b._all_constraints.append(AltitudeConstraint(min=0*u.deg))
if b.constraints is None:
b.constraints = [AltitudeConstraint(min=0*u.deg)]
else:
b.constraints.append(AltitudeConstraint(min=0*u.deg))
b.observer = self.observer
# before we can schedule, we need to know where blocks meet the constraints
scorer = Scorer(blocks,self.observer, self.schedule, global_constraints=self.constraints)
score_array = scorer.create_score_array(self.time_resolution)
# now we have an array with the scores for all of the blocks at intervals of time_resolution
# we want to start from the beginning and start scheduling
current_time = self.schedule.start_time
while current_time < self.schedule.end_time:
scheduled = False
i=0
while i < len(blocks) and scheduled is False:
block = blocks[i]
# the schedule starts with only 1 slot
if len(self.schedule.slots) == 1:
test_time = current_time
# when a block is inserted, the number of slots increases
else:
# make a transition between the last scheduled block and this one
transition = self.transitioner(schedule.observing_blocks[-1], block,
current_time, self.observer)
test_time = current_time + transition.duration
# how far from the start is the time we are testing
start_idx = int((test_time - self.schedule.start_time)/self.time_resolution)
duration_idx = int(block.duration/self.time_resolution)
# if any score during the block's duration would be 0, reject it
if any(score_array[i][start_idx:start_idx+duration_idx] == 0):
i +=1
# if all of the scores are >0, accept and schedule it
else:
if len(self.schedule.slots) >1:
self.schedule.insert_slot(current_time, transition)
self.schedule.insert_slot(test_time, block)
# advance the time, break this while loop and remove the block from the list
current_time = test_time + block.duration
scheduled = True
blocks.remove(block)
# if every block failed, progress the time
if i == len(blocks):
current_time += self.gap_time
return schedule
from astroplan.constraints import AtNightConstraint
from astroplan.scheduling import Schedule, ObservingBlock
from astroplan import FixedTarget, Observer, Transitioner
from astropy.time import Time
apo = Observer.at_site('apo')
deneb = FixedTarget.from_name('Deneb')
m13 = FixedTarget.from_name('M13')
blocks = [ObservingBlock(deneb, 20*u.minute, 0)]
blocks.append(ObservingBlock(m13, 20*u.minute, 0))
transitioner = Transitioner(2*u.deg/u.second)
global_constraints = [AtNightConstraint.twilight_civil()]
schedule = Schedule(Time('2016-07-06 19:00'), Time('2016-07-07 19:00'))
scheduler = SimpleScheduler(observer = apo, transitioner = transitioner,
constraints = [])
scheduler(blocks, schedule)
import matplotlib.pyplot as plt
from astroplan.plots import plot_schedule_airmass
plot_schedule_airmass(schedule)
plt.tight_layout()
plt.legend()
plt.show()
We gave the scheduler no constraints, global or local, so it added the default
``AltitudeConstraint`` which is only satisfied when the targets are above the
horizon. Therefore the ObservingBlocks are scheduled at the first available time
after the target rises, which occurs at much higher airmass than the plot shows.
.. _scheduling-using_the_scorer:
Using the Scorer
================
The Scheduler defined above uses `~astroplan.scheduling.Scorer.create_score_array`,
which creates an array with dimensions (# of blocks, schedule duration/``time_resolution``).
The Score of any element (block, time) in that array is made by
multiplying the scores returned by all of the constraints for that
target and time.
If you wish to use a different method of score evaluation, you can
add a new method to the ``Scorer``. The general framework of the
``create_score_array`` method will ensure evaluation of all of the
constraints, but change how it combines the scores from the separate
constraints (e.g. add the reciprocals of the scores together and then
use smaller values as better). If you create a method that might be
generically useful to other users, `consider submitting it
<http://github.com/astropy/astroplan/pulls>`_ so that others will
be able to use it as well.
|