Analysis Plugins#

Jdaviz provides a wide range of data analysis plugins for different types of astronomical data.

Overview#

Plugins provide specialized analysis capabilities tailored to different data types:

Spectroscopic Analysis (1D)
  • Model Fitting

  • Line Analysis

  • Line Lists

  • Gaussian Smooth

Cube Analysis (3D)
  • Collapse

  • Moment Maps

  • Spectral Extraction

  • Spectral Slice

  • Sonify Data

Image Analysis (2D)
  • Aperture Photometry

  • Image Profiles (XY)

  • Compass

  • Orientation

  • Footprints

2D Spectroscopy
  • Spectral Extraction

  • Cross Dispersion Profile

  • Slit Overlay

Ramp Data
  • Ramp Extraction

  • Ramp Slice

Catalog & Quality
  • Catalog Search

  • Data Quality

UI Access#

API Access#

Plugins can be accessed from the plugin toolbar in the Jdaviz interface, or programmatically via the API:

# Access a plugin
plg = jd.plugins['Model Fitting']

# Show in tray
plg.open_in_tray()

# Show in-line in notebook
plg.show()

See the individual plugin pages for detailed usage information.