add_manual_wcs_axes#
- madcubapy.visualization.add_manual_wcs_axes(fig=None, left=0, bottom=0, width=1, height=1, fitsmap=None, use_std=False, **kwargs)[source]#
Add a
WCSAxesobject with WCS coordinates in a manually set position into an existing figure.A
Figurewith no axes has to be set before calling this function. This is due to the inability to change axis coordinates after it has been called. The coordinates have to be called when creating the axes object. The function returns objects for the axes and the image.- Parameters:
- fig
Figure Figure to which the WCSAxes is added.
- left
float X coordinate to begin the Axes subplot.
- bottom
float Y coordinate to begin the Axes subplot.
- width
float Width of the Axes subplot.
- height
float Height of the Axes subplot.
- fitsmap
MadcubaMaporCCDData Map to be displayed.
- use_std
bool If true, set color limits to ±3 times the standard deviation of the image data.
- fig
- Returns:
- Other Parameters:
- **kwargs
Parameters to pass to
matplotlib.pyplot.imshow().