get_nsc_catalog¶
- grizli.catalog.get_nsc_catalog(ra=0.0, dec=0.0, radius=3, corners=None, max=100000, extra=' AND (rerr < 0.08 OR ierr < 0.08 OR zerr < 0.08) AND raerr < 0.2 AND decerr < 0.2', verbose=True)[source]¶
Query NOAO Source Catalog, which is aligned to GAIA DR1.
The default
extra
query returns well-detected sources in red bands.Wrapper for
query_tap_catalog
.- Parameters
- ra, decfloat
Center of the query region, decimal degrees. Default is 0.0, 0.0.
- radiusfloat
Radius of the query, in arcmin. Default is 3.
- corners4-tuple,
WCS
or None ra_min, ra_max, dec_min, dec_max of a query box to use instead of
radius
. Or if aWCS
object, get limits from thecalc_footprint
method- maxint
Maximum number of rows to return. Default is 100000.
- extrastr
Additional query string. Default is ” AND (rerr < 0.08 OR ierr < 0.08 OR zerr < 0.08) AND raerr < 0.2 AND decerr < 0.2”.
- verbosebool
Print information. Default is True.
- Returns
- tab
Table
Result of the query.
- tab