CoordinatesMap¶
- class astropy.visualization.wcsaxes.CoordinatesMap(axes, transform=None, coord_meta=None, frame_class=<class 'astropy.visualization.wcsaxes.frame.RectangularFrame'>, previous_frame_path=None)[source]¶
Bases:
object
A container for coordinate helpers that represents a coordinate system.
This object can be used to access coordinate helpers by index (like a list) or by name (like a dictionary).
- Parameters:
- axes
WCSAxes
The axes the coordinate map belongs to.
- transform
Transform
, optional The transform for the data.
- coord_meta
python:dict
, optional A dictionary providing additional metadata. This should include the keys
type
,wrap
, andunit
. Each of these should be a list with as many items as the dimension of the coordinate system. Thetype
entries should be one oflongitude
,latitude
, orscalar
, thewrap
entries should give, for the longitude, the angle at which the coordinate wraps (andNone
otherwise), and theunit
should give the unit of the coordinates asUnit
instances. This can optionally also include aformat_unit
entry giving the units to use for the tick labels (if not specified, this defaults tounit
).- frame_classtype, optional
The class for the frame, which should be a subclass of
BaseFrame
. The default is to use aRectangularFrame
- previous_frame_path
Path
, optional When changing the WCS of the axes, the frame instance will change but we might want to keep re-using the same underlying matplotlib
Path
- in that case, this can be passed to this keyword argument.
- axes
Methods Summary
grid
([draw_grid, grid_type])Plot gridlines for both coordinates.
set_visible
(visibility)Methods Documentation
- grid(draw_grid=True, grid_type=None, **kwargs)[source]¶
Plot gridlines for both coordinates.
Standard matplotlib appearance options (color, alpha, etc.) can be passed as keyword arguments.
- Parameters:
- draw_gridbool
Whether to show the gridlines
- grid_type{ ‘lines’ | ‘contours’ }
Whether to plot the contours by determining the grid lines in world coordinates and then plotting them in world coordinates (
'lines'
) or by determining the world coordinates at many positions in the image and then drawing contours ('contours'
). The first is recommended for 2-d images, while for 3-d (or higher dimensional) cubes, the'contours'
option is recommended. By default, ‘lines’ is used if the transform has an inverse, otherwise ‘contours’ is used.