/usr/lib/python3/dist-packages/aplpy/overlays.py is in python3-aplpy 1.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | from __future__ import absolute_import, print_function, division
import warnings
from mpl_toolkits.axes_grid.anchored_artists \
import AnchoredEllipse, AnchoredSizeBar
import numpy as np
from matplotlib.patches import FancyArrowPatch
from matplotlib.font_manager import FontProperties
from astropy import units as u
from astropy.extern import six
from . import wcs_util
from .decorators import auto_refresh
corners = {}
corners['top right'] = 1
corners['top left'] = 2
corners['bottom left'] = 3
corners['bottom right'] = 4
corners['right'] = 5
corners['left'] = 6
corners['bottom'] = 8
corners['top'] = 9
class Compass(object):
def _initialize_compass(self):
# Initialize compass holder
self._compass = None
self._compass_show = False
# Set grid event handler
self._ax1.callbacks.connect('xlim_changed', self.update_compass)
self._ax1.callbacks.connect('ylim_changed', self.update_compass)
@auto_refresh
def show_compass(self, color='red', length=0.1, corner=4, frame=True):
'''
Display a scalebar.
Parameters
----------
length : float, optional
The length of the scalebar
label : str, optional
Label to place above the scalebar
corner : int, optional
Where to place the scalebar. Acceptable values are:, 'left', 'right', 'top', 'bottom', 'top left', 'top right', 'bottom left' (default), 'bottom right'
frame : str, optional
Whether to display a frame behind the scalebar (default is False)
kwargs
Additional keyword arguments can be used to control the appearance
of the scalebar, which is made up of an instance of the matplotlib
Rectangle class and a an instance of the Text class. For more
information on available arguments, see
`Rectangle <http://matplotlib.sourceforge.net/api/artist_api.html#matplotlib.patches.Rectangle>`_
and
`Text <http://matplotlib.sourceforge.net/api/artist_api.html#matplotlib.text.Text>`_`.
In cases where the same argument exists for the two objects, the
argument is passed to both the Text and Rectangle instance
'''
w = 2 * length
pos = {1: (1 - w, 1 - w),
2: (w, 1 - w),
3: (w, w),
4: (1 - w, w),
5: (1 - w, 0.5),
6: (w, 0.5),
7: (1 - w, 0.5),
8: (0.5, w),
9: (0.5, 1 - w)}
self._compass_position = pos[corner]
self._compass_length = length
self._compass_color = color
self._compass = None
self._compass_show = True
self.update_compass()
@auto_refresh
def update_compass(self, *args, **kwargs):
if not self._compass_show:
return
rx, ry = self._compass_position
length = self._compass_length
color = self._compass_color
xmin, xmax = self._ax1.get_xlim()
ymin, ymax = self._ax1.get_ylim()
x0 = rx * (xmax - xmin) + xmin
y0 = ry * (ymax - ymin) + ymin
xw, yw = self.pixel2world(x0, y0)
len_pix = length * (ymax - ymin)
degrees_per_pixel = wcs_util.celestial_pixel_scale(self._wcs)
len_deg = len_pix * degrees_per_pixel
# Should really only do tiny displacement then magnify the vectors - important if there is curvature
x1, y1 = self.world2pixel(xw + len_deg / np.cos(np.radians(yw)), yw)
x2, y2 = self.world2pixel(xw, yw + len_deg)
if self._compass:
self._compass[0].remove()
self._compass[1].remove()
arrow1 = FancyArrowPatch(posA=(x0, y0), posB=(x1, y1), arrowstyle='-|>', mutation_scale=20., fc=color, ec=color, shrinkA=0., shrinkB=0.)
arrow2 = FancyArrowPatch(posA=(x0, y0), posB=(x2, y2), arrowstyle='-|>', mutation_scale=20., fc=color, ec=color, shrinkA=0., shrinkB=0.)
self._compass = (arrow1, arrow2)
self._ax1.add_patch(arrow1)
self._ax1.add_patch(arrow2)
@auto_refresh
def hide_compass(self):
pass
class Scalebar(object):
def __init__(self, parent):
# Retrieve info from parent figure
self._ax = parent._ax1
self._wcs = parent._wcs
self._figure = parent._figure
# Save plotting parameters (required for @auto_refresh)
self._parameters = parent._parameters
# Initialize settings
self._base_settings = {}
self._scalebar_settings = {}
self._label_settings = {}
self._label_settings['fontproperties'] = FontProperties()
# LAYOUT
@auto_refresh
def show(self, length, label=None, corner='bottom right', frame=False, borderpad=0.4, pad=0.5, **kwargs):
'''
Overlay a scale bar on the image.
Parameters
----------
length : float, or quantity
The length of the scalebar in degrees, an angular quantity, or angular unit
label : str, optional
Label to place below the scalebar
corner : int, optional
Where to place the scalebar. Acceptable values are:, 'left',
'right', 'top', 'bottom', 'top left', 'top right', 'bottom
left' (default), 'bottom right'
frame : str, optional
Whether to display a frame behind the scalebar (default is False)
kwargs
Additional arguments are passed to the matplotlib Rectangle and
Text classes. See the matplotlib documentation for more details.
In cases where the same argument exists for the two objects, the
argument is passed to both the Text and Rectangle instance.
'''
self._length = length
self._base_settings['corner'] = corner
self._base_settings['frame'] = frame
self._base_settings['borderpad'] = borderpad
self._base_settings['pad'] = pad
if isinstance(length, u.Quantity):
length = length.to(u.degree).value
elif isinstance(length, u.Unit):
length = length.to(u.degree)
degrees_per_pixel = wcs_util.celestial_pixel_scale(self._wcs)
length = length / degrees_per_pixel
try:
self._scalebar.remove()
except:
pass
if isinstance(corner, six.string_types):
corner = corners[corner]
self._scalebar = AnchoredSizeBar(self._ax.transData, length, label, corner, \
pad=pad, borderpad=borderpad, sep=5, frameon=frame)
self._ax.add_artist(self._scalebar)
self.set(**kwargs)
@auto_refresh
def _remove(self):
self._scalebar.remove()
@auto_refresh
def hide(self):
'''
Hide the scalebar.
'''
try:
self._scalebar.remove()
except:
pass
@auto_refresh
def set_length(self, length):
'''
Set the length of the scale bar.
'''
self.show(length, **self._base_settings)
self._set_scalebar_properties(**self._scalebar_settings)
self._set_label_properties(**self._scalebar_settings)
@auto_refresh
def set_label(self, label):
'''
Set the label of the scale bar.
'''
self._set_label_properties(text=label)
@auto_refresh
def set_corner(self, corner):
'''
Set where to place the scalebar.
Acceptable values are 'left', 'right', 'top', 'bottom', 'top left',
'top right', 'bottom left' (default), and 'bottom right'.
'''
self._base_settings['corner'] = corner
self.show(self._length, **self._base_settings)
self._set_scalebar_properties(**self._scalebar_settings)
self._set_label_properties(**self._scalebar_settings)
@auto_refresh
def set_frame(self, frame):
'''
Set whether to display a frame around the scalebar.
'''
self._base_settings['frame'] = frame
self.show(self._length, **self._base_settings)
self._set_scalebar_properties(**self._scalebar_settings)
self._set_label_properties(**self._scalebar_settings)
# APPEARANCE
@auto_refresh
def set_linewidth(self, linewidth):
'''
Set the linewidth of the scalebar, in points.
'''
self._set_scalebar_properties(linewidth=linewidth)
@auto_refresh
def set_linestyle(self, linestyle):
'''
Set the linestyle of the scalebar.
Should be one of 'solid', 'dashed', 'dashdot', or 'dotted'.
'''
self._set_scalebar_properties(linestyle=linestyle)
@auto_refresh
def set_alpha(self, alpha):
'''
Set the alpha value (transparency).
This should be a floating point value between 0 and 1.
'''
self._set_scalebar_properties(alpha=alpha)
self._set_label_properties(alpha=alpha)
@auto_refresh
def set_color(self, color):
'''
Set the label and scalebar color.
'''
self._set_scalebar_properties(color=color)
self._set_label_properties(color=color)
@auto_refresh
def set_font(self, family=None, style=None, variant=None, stretch=None, weight=None, size=None, fontproperties=None):
'''
Set the font of the tick labels
Parameters
----------
common: family, style, variant, stretch, weight, size, fontproperties
Notes
-----
Default values are set by matplotlib or previously set values if
set_font has already been called. Global default values can be set by
editing the matplotlibrc file.
'''
if family:
self._label_settings['fontproperties'].set_family(family)
if style:
self._label_settings['fontproperties'].set_style(style)
if variant:
self._label_settings['fontproperties'].set_variant(variant)
if stretch:
self._label_settings['fontproperties'].set_stretch(stretch)
if weight:
self._label_settings['fontproperties'].set_weight(weight)
if size:
self._label_settings['fontproperties'].set_size(size)
if fontproperties:
self._label_settings['fontproperties'] = fontproperties
self._set_label_properties(fontproperties=self._label_settings['fontproperties'])
@auto_refresh
def _set_label_properties(self, **kwargs):
'''
Modify the scalebar label properties.
All arguments are passed to the matplotlib Text class. See the
matplotlib documentation for more details.
'''
for kwarg in kwargs:
self._label_settings[kwarg] = kwargs[kwarg]
self._scalebar.txt_label.get_children()[0].set(**kwargs)
@auto_refresh
def _set_scalebar_properties(self, **kwargs):
'''
Modify the scalebar properties.
All arguments are passed to the matplotlib Rectangle class. See the
matplotlib documentation for more details.
'''
for kwarg in kwargs:
self._scalebar_settings[kwarg] = kwargs[kwarg]
self._scalebar.size_bar.get_children()[0].set(**kwargs)
@auto_refresh
def set(self, **kwargs):
'''
Modify the scalebar and scalebar properties.
All arguments are passed to the matplotlib Rectangle and Text classes.
See the matplotlib documentation for more details. In cases where the
same argument exists for the two objects, the argument is passed to
both the Text and Rectangle instance.
'''
for kwarg in kwargs:
kwargs_single = {kwarg: kwargs[kwarg]}
try:
self._set_label_properties(**kwargs_single)
except AttributeError:
pass
try:
self._set_scalebar_properties(**kwargs_single)
except AttributeError:
pass
# DEPRECATED
@auto_refresh
def set_font_family(self, family):
warnings.warn("scalebar.set_font_family is deprecated - use scalebar.set_font instead", DeprecationWarning)
self.set_font(family=family)
@auto_refresh
def set_font_weight(self, weight):
warnings.warn("scalebar.set_font_weight is deprecated - use scalebar.set_font instead", DeprecationWarning)
self.set_font(weight=weight)
@auto_refresh
def set_font_size(self, size):
warnings.warn("scalebar.set_font_size is deprecated - use scalebar.set_font instead", DeprecationWarning)
self.set_font(size=size)
@auto_refresh
def set_font_style(self, style):
warnings.warn("scalebar.set_font_style is deprecated - use scalebar.set_font instead", DeprecationWarning)
self.set_font(style=style)
# For backward-compatibility
ScaleBar = Scalebar
class Beam(object):
def __init__(self, parent):
# Retrieve info from parent figure
self._figure = parent._figure
self._header = parent._header
self._ax = parent._ax1
self._wcs = parent._wcs
# Save plotting parameters (required for @auto_refresh)
self._parameters = parent._parameters
# Initialize settings
self._base_settings = {}
self._beam_settings = {}
# LAYOUT
@auto_refresh
def show(self, major='BMAJ', minor='BMIN', \
angle='BPA', corner='bottom left', frame=False, borderpad=0.4, pad=0.5, **kwargs):
'''
Display the beam shape and size for the primary image.
By default, this method will search for the BMAJ, BMIN, and BPA
keywords in the FITS header to set the major and minor axes and the
position angle on the sky.
Parameters
----------
major : float, quantity or unit, optional
Major axis of the beam in degrees or an angular quantity (overrides
BMAJ if present)
minor : float, quantity or unit, optional
Minor axis of the beam in degrees or an angular quantity (overrides
BMIN if present)
angle : float, quantity or unit, optional
Position angle of the beam on the sky in degrees or an angular
quantity (overrides BPA if present) in the anticlockwise direction.
corner : int, optional
The beam location. Acceptable values are 'left', 'right',
'top', 'bottom', 'top left', 'top right', 'bottom left'
(default), and 'bottom right'.
frame : str, optional
Whether to display a frame behind the beam (default is False)
kwargs
Additional arguments are passed to the matplotlib Ellipse class.
See the matplotlib documentation for more details.
'''
if isinstance(major, six.string_types):
major = self._header[major]
if isinstance(minor, six.string_types):
minor = self._header[minor]
if isinstance(angle, six.string_types):
angle = self._header[angle]
if isinstance(major, u.Quantity):
major = major.to(u.degree).value
elif isinstance(major, u.Unit):
major = major.to(u.degree)
if isinstance(minor, u.Quantity):
minor = minor.to(u.degree).value
elif isinstance(minor, u.Unit):
minor = minor.to(u.degree)
if isinstance(angle, u.Quantity):
angle = angle.to(u.degree).value
elif isinstance(angle, u.Unit):
angle = angle.to(u.degree)
degrees_per_pixel = wcs_util.celestial_pixel_scale(self._wcs)
self._base_settings['minor'] = minor
self._base_settings['major'] = major
self._base_settings['angle'] = angle
self._base_settings['corner'] = corner
self._base_settings['frame'] = frame
self._base_settings['borderpad'] = borderpad
self._base_settings['pad'] = pad
minor /= degrees_per_pixel
major /= degrees_per_pixel
try:
self._beam.remove()
except:
pass
if isinstance(corner, six.string_types):
corner = corners[corner]
self._beam = AnchoredEllipse(self._ax.transData, \
width=minor, height=major, angle=angle, \
loc=corner, pad=pad, borderpad=borderpad, frameon=frame)
self._ax.add_artist(self._beam)
self.set(**kwargs)
@auto_refresh
def _remove(self):
self._beam.remove()
@auto_refresh
def hide(self):
'''
Hide the beam
'''
try:
self._beam.remove()
except:
pass
@auto_refresh
def set_major(self, major):
'''
Set the major axis of the beam, in degrees.
'''
self._base_settings['major'] = major
self.show(**self._base_settings)
self.set(**self._beam_settings)
@auto_refresh
def set_minor(self, minor):
'''
Set the minor axis of the beam, in degrees.
'''
self._base_settings['minor'] = minor
self.show(**self._base_settings)
self.set(**self._beam_settings)
@auto_refresh
def set_angle(self, angle):
'''
Set the position angle of the beam on the sky, in degrees.
'''
self._base_settings['angle'] = angle
self.show(**self._base_settings)
self.set(**self._beam_settings)
@auto_refresh
def set_corner(self, corner):
'''
Set the beam location.
Acceptable values are 'left', 'right', 'top', 'bottom', 'top left',
'top right', 'bottom left' (default), and 'bottom right'.
'''
self._base_settings['corner'] = corner
self.show(**self._base_settings)
self.set(**self._beam_settings)
@auto_refresh
def set_frame(self, frame):
'''
Set whether to display a frame around the beam.
'''
self._base_settings['frame'] = frame
self.show(**self._base_settings)
self.set(**self._beam_settings)
@auto_refresh
def set_borderpad(self, borderpad):
'''
Set the amount of padding within the beam object, relative to the
canvas size.
'''
self._base_settings['borderpad'] = borderpad
self.show(**self._base_settings)
self.set(**self._beam_settings)
@auto_refresh
def set_pad(self, pad):
'''
Set the amount of padding between the beam object and the image
corner/edge, relative to the canvas size.
'''
self._base_settings['pad'] = pad
self.show(**self._base_settings)
self.set(**self._beam_settings)
# APPEARANCE
@auto_refresh
def set_alpha(self, alpha):
'''
Set the alpha value (transparency).
This should be a floating point value between 0 and 1.
'''
self.set(alpha=alpha)
@auto_refresh
def set_color(self, color):
'''
Set the beam color.
'''
self.set(color=color)
@auto_refresh
def set_edgecolor(self, edgecolor):
'''
Set the color for the edge of the beam.
'''
self.set(edgecolor=edgecolor)
@auto_refresh
def set_facecolor(self, facecolor):
'''
Set the color for the interior of the beam.
'''
self.set(facecolor=facecolor)
@auto_refresh
def set_linestyle(self, linestyle):
'''
Set the line style for the edge of the beam.
This should be one of 'solid', 'dashed', 'dashdot', or 'dotted'.
'''
self.set(linestyle=linestyle)
@auto_refresh
def set_linewidth(self, linewidth):
'''
Set the line width for the edge of the beam, in points.
'''
self.set(linewidth=linewidth)
@auto_refresh
def set_hatch(self, hatch):
'''
Set the hatch pattern.
This should be one of '/', '\', '|', '-', '+', 'x', 'o', 'O', '.', or
'*'.
'''
self.set(hatch=hatch)
@auto_refresh
def set(self, **kwargs):
'''
Modify the beam properties. All arguments are passed to the matplotlib
Ellipse class. See the matplotlib documentation for more details.
'''
for kwarg in kwargs:
self._beam_settings[kwarg] = kwargs[kwarg]
self._beam.ellipse.set(**kwargs)
|