Catalog Search#
Query astronomical catalogs and overlay sources on images.
Description#
The Catalog Search plugin queries online astronomical catalogs (e.g., Gaia, 2MASS, SDSS) and displays sources as markers on image viewers. This helps identify known objects and cross-match with observations.
Key Features:
Query multiple catalog services
Cone search around image center
Configurable search radius
Marker overlay on images
Export catalog results
Source table display
Details#
The plugin uses Virtual Observatory (VO) services to query catalogs. Search radius can be adjusted, and results are displayed both as markers on the image and in a sortable table.
UI Access#
Control data and subset layer order and visibility for each viewer. Toggle layer visibility, reorder layers by dragging, and manage which data appears in the viewer.
dm = jd.viewers[viewer].data_menu
Click the Catalog Search icon in the plugin toolbar to:
Select catalog (Gaia, 2MASS, SDSS, etc.)
Set search radius
Click Search to query catalog
View results as markers and table
API Access#
plg = imviz.plugins['Catalog Search']
plg.catalog = 'Gaia DR3'
plg.radius = 30 # arcseconds
plg.search()
# Export results
table = plg.export_table()
API References#
- Only the following attributes and methods are available through the
-
max_sourcesMaximum number of catalog sources to retrieve.catalog(SelectPluginComponent)table(Table): Table containing all search results.table_selected(Table): Table containing all selected search results.
For detailed API documentation, see Catalogs.
See Also#
Catalog Search - Detailed Imviz catalog documentation