MUSE Pipeline Reference Manual
1.0.2
|
Data Structures | |
struct | muse_wcs_object |
WCS object to store data needed while computing the astrometric solution. More... | |
struct | muse_wcs |
A structure containing a spatial two-axis WCS. More... | |
Enumerations | |
enum | muse_wcs_centroid_type { MUSE_WCS_CENTROID_GAUSSIAN = 0, MUSE_WCS_CENTROID_MOFFAT, MUSE_WCS_CENTROID_BOX } |
Type of centroiding algorithm to use. More... | |
Functions | |
muse_wcs_object * | muse_wcs_object_new (void) |
Allocate memory for a new muse_wcs_object object. More... | |
void | muse_wcs_object_delete (muse_wcs_object *aWCSObj) |
Deallocate memory associated to a muse_wcs_object. More... | |
cpl_error_code | muse_wcs_locate_sources (muse_pixtable *aPixtable, float aSigma, muse_wcs_centroid_type aCentroid, muse_wcs_object *aWCSObj) |
Determine the centers of stars on an astrometric exposure. More... | |
cpl_error_code | muse_wcs_solve (muse_wcs_object *aWCSObj, cpl_table *aReference, float aRadius, float aFAccuracy, int aIter, float aThresh) |
Find the world coordinate solution for a given field using coordinates of detected sources and coordinates of reference values. More... | |
cpl_propertylist * | muse_wcs_create_default (void) |
Create FITS headers containing a default (relative) WCS. More... | |
cpl_propertylist * | muse_wcs_apply_cd (const cpl_propertylist *aExpHeader, const cpl_propertylist *aCalHeader) |
Apply the CDi_j matrix of an astrometric solution to an observation. More... | |
cpl_error_code | muse_wcs_project_tan (muse_pixtable *aPixtable, const cpl_propertylist *aWCS) |
Carry out a gnomonic projection of a pixel table into native spherical coordinates. More... | |
cpl_error_code | muse_wcs_position_celestial (muse_pixtable *aPixtable, double aRA, double aDEC) |
Convert native to celestial spherical coordinates in a pixel table. More... | |
cpl_error_code | muse_wcs_celestial_from_pixel (cpl_propertylist *aHeader, double aX, double aY, double *aRA, double *aDEC) |
Convert from pixel coordinates to celestial spherical coordinates. More... | |
cpl_error_code | muse_wcs_pixel_from_celestial (cpl_propertylist *aHeader, double aRA, double aDEC, double *aX, double *aY) |
Convert from celestial spherical coordinates to pixel coordinates. More... | |
cpl_error_code | muse_wcs_projplane_from_celestial (cpl_propertylist *aHeader, double aRA, double aDEC, double *aX, double *aY) |
Convert from celestial spherical coordinates to projection plane coordinates. More... | |
cpl_error_code | muse_wcs_projplane_from_pixel (cpl_propertylist *aHeader, double aX, double aY, double *aXOut, double *aYOut) |
Convert from pixel coordinates to projection plane coordinates. More... | |
cpl_error_code | muse_wcs_pixel_from_projplane (cpl_propertylist *aHeader, double aX, double aY, double *aXOut, double *aYOut) |
Convert from projection plane coordinates to pixel coordinates. More... | |
cpl_error_code | muse_wcs_get_angles (cpl_propertylist *aHeader, double *aXAngle, double *aYAngle) |
Compute the rotation angles (in degrees) from the FITS header WCS. More... | |
cpl_error_code | muse_wcs_get_scales (cpl_propertylist *aHeader, double *aXScale, double *aYScale) |
Compute the spatial scales (in degrees) from the FITS header WCS. More... | |
muse_wcs * | muse_wcs_new (cpl_propertylist *aHeader) |
Create a new WCS structure from a given FITS header. More... | |
static void | muse_wcs_celestial_from_pixel_fast (muse_wcs *aWCS, double aX, double aY, double *aRA, double *aDEC) |
Convert from pixel coordinates to celestial spherical coordinates. More... | |
static void | muse_wcs_pixel_from_celestial_fast (muse_wcs *aWCS, double aRA, double aDEC, double *aX, double *aY) |
Convert from celestial spherical coordinates to pixel coordinates. More... | |
static void | muse_wcs_projplane_from_pixel_fast (muse_wcs *aWCS, double aX, double aY, double *aXOut, double *aYOut) |
Convert from pixel coordinates to projection plane coordinates. More... | |
static void | muse_wcs_pixel_from_projplane_fast (muse_wcs *aWCS, double aX, double aY, double *aXOut, double *aYOut) |
Convert from projection plane coordinates to pixel coordinates. More... | |
Variables | |
const muse_cpltable_def | muse_wcs_detections_def [] |
Definition of the table structure for the astrometric field detections. More... | |
const muse_cpltable_def | muse_wcs_reference_def [] |
Definition of the table structure for the astrometric reference sources. More... | |
Type of centroiding algorithm to use.
Enumerator | |
---|---|
MUSE_WCS_CENTROID_GAUSSIAN |
Gaussian profile fit |
MUSE_WCS_CENTROID_MOFFAT |
Moffat profile fit |
MUSE_WCS_CENTROID_BOX |
simplest version: marginal centroid in a box |
Definition at line 78 of file muse_wcs.h.
cpl_propertylist* muse_wcs_apply_cd | ( | const cpl_propertylist * | aExpHeader, |
const cpl_propertylist * | aCalHeader | ||
) |
Apply the CDi_j matrix of an astrometric solution to an observation.
aExpHeader | the header of the observation |
aCalHeader | the header giving the astrometric solution |
This function uses matrix multiplication to merge position angle on the sky with the astrometric solution. The main output are the four spatial CDi_j entries in the output propertylist.
set CPL_ERROR_NULL_INPUT, return NULL | aCalHeader and/or aExpHeader are NULL |
Definition at line 904 of file muse_wcs.c.
References muse_astro_posangle(), muse_wcs_get_angles(), and muse_wcs_get_scales().
Referenced by muse_flux_integrate_std(), and muse_wcs_project_tan().
cpl_error_code muse_wcs_celestial_from_pixel | ( | cpl_propertylist * | aHeader, |
double | aX, | ||
double | aY, | ||
double * | aRA, | ||
double * | aDEC | ||
) |
Convert from pixel coordinates to celestial spherical coordinates.
aHeader | the input header containing the WCS of the exposure |
aX | the horizontal pixel position |
aY | the vertical pixel position |
aRA | the output right-ascension in degrees |
aDEC | the output declination in degrees |
The world coordinate system from aHeader is used to do the transformation, only the gnomonic (TAN) is supported.
Uses Eqns (14), (15), (55), and (2) from Calabretta & Greisen 2002 A&A 395, 1077 (Paper II). We use that phi_p = 180 deg for zenithal projections (like TAN). The equations are actually implemented in muse_wcs_celestial_from_pixel_fast() that is called by this function.
return CPL_ERROR_NULL_INPUT | aHeader, aX, and/or aY are NULL |
return CPL_ERROR_UNSUPPORTED_MODE | aHeader does not contain gnomonic (TAN) WCS |
Definition at line 1226 of file muse_wcs.c.
References muse_wcs_celestial_from_pixel_fast(), and muse_wcs_new().
Referenced by muse_flux_integrate_std().
|
static |
Convert from pixel coordinates to celestial spherical coordinates.
aWCS | the input WCS structure |
aX | the horizontal pixel position |
aY | the vertical pixel position |
aRA | the output right-ascension in degrees |
aDEC | the output declination in degrees |
See muse_wcs_celestial_from_pixel() for the origin of the equations.
Definition at line 126 of file muse_wcs.h.
References cd22, crpix2, and crval2.
Referenced by muse_resampling_collapse_pixgrid(), muse_resampling_euro3d(), and muse_wcs_celestial_from_pixel().
cpl_propertylist* muse_wcs_create_default | ( | void | ) |
Create FITS headers containing a default (relative) WCS.
Units in the WCS are in deg (as required by the FITS standard, ยง8.2), approximately relative to a MUSE field center. Rotation is not known in this function, so assumed to be zero. This needs to be adapted when applying this WCS to data.
Definition at line 839 of file muse_wcs.c.
Referenced by muse_flux_integrate_std(), and muse_wcs_solve().
cpl_error_code muse_wcs_get_angles | ( | cpl_propertylist * | aHeader, |
double * | aXAngle, | ||
double * | aYAngle | ||
) |
Compute the rotation angles (in degrees) from the FITS header WCS.
aHeader | the input header containing the WCS of the exposure |
aXAngle | the output angle in x-direction |
aYAngle | the output angle in y-direction |
The world coordinate system from aHeader, i.e. the CDi_j matrix, is used to compute the angles.
References:
return CPL_ERROR_NULL_INPUT | aHeader, aX, and/or aY are NULL |
propagate the error of cpl_propertylist_get_double() | some elements of the CDi_j matrix don't exist in aHeader |
Definition at line 1445 of file muse_wcs.c.
Referenced by muse_wcs_apply_cd(), and muse_wcs_solve().
cpl_error_code muse_wcs_get_scales | ( | cpl_propertylist * | aHeader, |
double * | aXScale, | ||
double * | aYScale | ||
) |
Compute the spatial scales (in degrees) from the FITS header WCS.
aHeader | the input header containing the WCS of the exposure |
aXScale | the output scale in x-direction |
aYScale | the output scale in y-direction |
The world coordinate system from aHeader, i.e. the CDi_j matrix, is used to compute the scales.
References:
return CPL_ERROR_NULL_INPUT | aHeader, aX, and/or aY are NULL |
propagate the error of cpl_propertylist_get_double() | some elements of the CDi_j matrix don't exist in aHeader |
Definition at line 1492 of file muse_wcs.c.
Referenced by muse_dar_correct(), muse_resampling_collapse_pixgrid(), muse_resampling_image(), muse_wcs_apply_cd(), and muse_wcs_solve().
cpl_error_code muse_wcs_locate_sources | ( | muse_pixtable * | aPixtable, |
float | aSigma, | ||
muse_wcs_centroid_type | aCentroid, | ||
muse_wcs_object * | aWCSObj | ||
) |
Determine the centers of stars on an astrometric exposure.
aPixtable | the input pixel table containing the astrometric exposure |
aSigma | the sigma level used for object detection |
aCentroid | type of centroiding algorithm to use |
aWCSObj | the MUSE WCS object |
return CPL_ERROR_NULL_INPUT | inputs aPixtable, its header component, or aWCSObj are NULL |
return CPL_ERROR_ILLEGAL_INPUT | aSigma was non-positive |
return CPL_ERROR_ILLEGAL_INPUT | an unknown centroiding type was requested |
output warning, set CPL_ERROR_UNSUPPORTED_MODE, but continue processing | input pixel table was not corrected for DAR |
propagate error of muse_resampling_cube() | cube could not be created |
propagate error | image could not be created from cube |
return CPL_ERROR_DATA_NOT_FOUND | no sources were detected |
output warning, use defaults | wavelength range invalid |
Definition at line 198 of file muse_wcs.c.
References muse_resampling_params::crsigma, muse_resampling_params::crtype, muse_image::data, muse_datacube::data, muse_image::dq, muse_datacube::dq, muse_datacube::header, muse_image::header, muse_pixtable::header, muse_combine_median_create(), muse_cpltable_new(), muse_datacube_save(), MUSE_HDR_PT_DAR_CORR, MUSE_HDR_PT_DAR_NAME, muse_image_delete(), muse_image_new(), muse_image_reject_from_dq(), muse_image_save(), muse_imagelist_delete(), muse_imagelist_new(), muse_imagelist_set(), muse_pfits_get_dec(), muse_pfits_get_fwhm_end(), muse_pfits_get_fwhm_start(), muse_pfits_get_mode(), muse_pfits_get_ra(), muse_pixtable_reset_dq(), muse_pixtable_save(), MUSE_RESAMPLE_WEIGHTED_DRIZZLE, MUSE_RESAMPLING_CRSTATS_MEDIAN, muse_resampling_cube(), muse_resampling_params_delete(), muse_resampling_params_new(), MUSE_UTILS_CENTROID_MEDIAN, muse_utils_fit_moffat_2d(), muse_utils_image_get_centroid_window(), MUSE_WCS_CENTROID_BOX, MUSE_WCS_CENTROID_GAUSSIAN, MUSE_WCS_CENTROID_MOFFAT, muse_resampling_params::pfx, muse_image::stat, and muse_datacube::stat.
Referenced by muse_postproc_process_exposure().
muse_wcs* muse_wcs_new | ( | cpl_propertylist * | aHeader | ) |
Create a new WCS structure from a given FITS header.
aHeader | the input header containing the input WCS |
The world coordinate system from aHeader, i.e. the CDi_j matrix, the CRPIXi, CRVALi, are used to fill the structure. The iscelsph element of the structure is set to FALSE, it can be easily set using other means.
The returned pointer has to be deallocated using cpl_free().
return the structure initialized with zeros, except cd11 = cd22 = cddet = 1. | aHeader is NULL or does not contain the needed values |
set CPL_ERROR_ILLEGAL_INPUT, but continue normally | the determinant of the CDi_j matrix (the cddet element) is zero |
Definition at line 1537 of file muse_wcs.c.
References cd22, cddet, crpix2, and crval2.
Referenced by muse_euro3dcube_collapse(), muse_pixgrid_create(), muse_resampling_collapse_pixgrid(), muse_resampling_euro3d(), muse_wcs_celestial_from_pixel(), muse_wcs_pixel_from_celestial(), muse_wcs_pixel_from_projplane(), and muse_wcs_projplane_from_pixel().
void muse_wcs_object_delete | ( | muse_wcs_object * | aWCSObj | ) |
Deallocate memory associated to a muse_wcs_object.
aWCSObj | input MUSE wcs object |
Just calls the required *_delete
() functions for each component before freeing the memory for the pointer itself. As a safeguard, it checks if a valid pointer was passed, so that crashes cannot occur.
Definition at line 89 of file muse_wcs.c.
References muse_datacube_delete().
muse_wcs_object* muse_wcs_object_new | ( | void | ) |
Allocate memory for a new muse_wcs_object
object.
muse_wcs_object *
or NULL
on error muse_wcs_object_delete()
. *_new
() functions.Simply allocate memory to store the pointers of the muse_wcs_object
structure.
Definition at line 71 of file muse_wcs.c.
Referenced by muse_postproc_process_exposure().
cpl_error_code muse_wcs_pixel_from_celestial | ( | cpl_propertylist * | aHeader, |
double | aRA, | ||
double | aDEC, | ||
double * | aX, | ||
double * | aY | ||
) |
Convert from celestial spherical coordinates to pixel coordinates.
aHeader | the input header containing the WCS of the exposure |
aRA | the right-ascension in degrees |
aDEC | the declination in degrees |
aX | the output horizontal pixel position |
aY | the output vertical pixel position |
The world coordinate system from aHeader is used to do the transformation, only the gnomonic (TAN) is supported.
Uses Eqns (5), (12), (13), and (54) from Calabretta & Greisen 2002 A&A 395, 1077 (Paper II). We use that phi_p = 180 deg for zenithal projections (like TAN). The equations are actually implemented in muse_wcs_pixel_from_celestial_fast() that is called by this function.
return CPL_ERROR_NULL_INPUT | aHeader, aX, and/or aY are NULL |
return CPL_ERROR_UNSUPPORTED_MODE | aHeader does not contain gnomonic (TAN) WCS |
return CPL_ERROR_ILLEGAL_INPUT | determinant of the CDi_j matrix in aHeader is zero |
Definition at line 1270 of file muse_wcs.c.
References cddet, crval2, muse_wcs_new(), and muse_wcs_pixel_from_celestial_fast().
Referenced by muse_wcs_solve().
|
static |
Convert from celestial spherical coordinates to pixel coordinates.
aWCS | the input WCS structure |
aRA | the right-ascension in radians! |
aDEC | the declination in radians! |
aX | the output horizontal pixel position |
aY | the output vertical pixel position |
See muse_wcs_pixel_from_celestial() for the origin of the equations.
Definition at line 164 of file muse_wcs.h.
References cd22, cddet, crpix2, and crval2.
Referenced by muse_euro3dcube_collapse(), muse_pixgrid_create(), and muse_wcs_pixel_from_celestial().
cpl_error_code muse_wcs_pixel_from_projplane | ( | cpl_propertylist * | aHeader, |
double | aX, | ||
double | aY, | ||
double * | aXOut, | ||
double * | aYOut | ||
) |
Convert from projection plane coordinates to pixel coordinates.
aHeader | the input header containing the WCS of the exposure |
aX | the x position |
aY | the y position |
aXOut | the output horizontal pixel position |
aYOut | the output vertical pixel position |
The world coordinate system from aHeader is used to do the transformation.
return CPL_ERROR_NULL_INPUT | aHeader, aX, and/or aY are NULL |
return CPL_ERROR_ILLEGAL_INPUT | determinant of the CDi_j matrix in aHeader is zero |
Definition at line 1406 of file muse_wcs.c.
References cddet, muse_wcs_new(), and muse_wcs_pixel_from_projplane_fast().
|
static |
Convert from projection plane coordinates to pixel coordinates.
aWCS | the input WCS structure |
aX | the x position |
aY | the y position |
aXOut | the output horizontal pixel position |
aYOut | the output vertical pixel position |
See muse_wcs_pixel_from_projplane() for the origin of the equations.
Definition at line 233 of file muse_wcs.h.
References cd22, cddet, crpix2, and crval2.
Referenced by muse_euro3dcube_collapse(), muse_pixgrid_create(), and muse_wcs_pixel_from_projplane().
cpl_error_code muse_wcs_position_celestial | ( | muse_pixtable * | aPixtable, |
double | aRA, | ||
double | aDEC | ||
) |
Convert native to celestial spherical coordinates in a pixel table.
aPixtable | the input pixel table containing the exposure to be converted |
aRA | the reference right-ascension in degrees |
aDEC | the reference declination in degrees |
Loop through the input pixel table and evaluate the input WCS at every pixel to find the correct celestial coordinate for a given input position. This uses standard coordinate transforms as defined in Calabretta & Greisen 2002 A&A 395, 1077 (Paper II) for the exposure in the pixel table. The output contains a full spatial WCS with "celestial spherical" coordinates.
return CPL_ERROR_NULL_INPUT | the input pixel table or its header are NULL |
return CPL_ERROR_INCOMPATIBLE_INPUT | the input pixel table WCS type is not native spherical |
return CPL_ERROR_UNSUPPORTED_MODE | the input WCS is not for a gnomonic (TAN) projection |
Definition at line 1133 of file muse_wcs.c.
References muse_pixtable::header, MUSE_HDR_PT_WCS, MUSE_HDR_PT_WCS_POSI, muse_pixtable_compute_limits(), muse_pixtable_get_nrow(), muse_pixtable_wcs_check(), MUSE_PIXTABLE_WCS_NATSPH, and muse_pixtable::table.
Referenced by muse_xcombine_tables().
cpl_error_code muse_wcs_project_tan | ( | muse_pixtable * | aPixtable, |
const cpl_propertylist * | aWCS | ||
) |
Carry out a gnomonic projection of a pixel table into native spherical coordinates.
aPixtable | the input pixel table containing the exposure to be corrected |
aWCS | FITS headers containing the WCS solution |
Loop through the input pixel table and evaluate the input WCS at every pixel to find the correct position for a given input position. This uses standard WCS transforms to produce "native spherical" coordinates in gnomonic (TAN) projection as defined in Calabretta & Greisen 2002 A&A 395, 1077 (Paper II) for the exposure in the pixel table.
return CPL_ERROR_NULL_INPUT | the input pixel table, its header, or the input WCS headers object are NULL |
return CPL_ERROR_INCOMPATIBLE_INPUT | the input pixel table WCS type is not pixel-based |
return CPL_ERROR_UNSUPPORTED_MODE | the input WCS is not for a gnomonic (TAN) projection |
Definition at line 993 of file muse_wcs.c.
References muse_pixtable::header, MUSE_HDR_PT_PREDAR_XHI, MUSE_HDR_PT_PREDAR_XLO, MUSE_HDR_PT_PREDAR_YHI, MUSE_HDR_PT_PREDAR_YLO, MUSE_HDR_PT_WCS, MUSE_HDR_PT_WCS_PROJ, MUSE_HDR_PT_XHI, MUSE_HDR_PT_XLO, MUSE_HDR_PT_YHI, MUSE_HDR_PT_YLO, muse_pixtable_compute_limits(), muse_pixtable_get_nrow(), muse_pixtable_wcs_check(), MUSE_PIXTABLE_WCS_PIXEL, muse_wcs_apply_cd(), and muse_pixtable::table.
Referenced by muse_postproc_process_exposure().
cpl_error_code muse_wcs_projplane_from_celestial | ( | cpl_propertylist * | aHeader, |
double | aRA, | ||
double | aDEC, | ||
double * | aX, | ||
double * | aY | ||
) |
Convert from celestial spherical coordinates to projection plane coordinates.
aHeader | the input header containing the WCS of the exposure |
aRA | the right-ascension in degrees |
aDEC | the declination in degrees |
aX | the output horizontal proj. plane position |
aY | the output vertical proj. plane position |
The world coordinate system from aHeader is used to do the transformation, only the gnomonic (TAN) is supported.
Uses Eqns (5), (12), (13), and (54) from Calabretta & Greisen 2002 A&A 395, 1077 (Paper II). We use that phi_p = 180 deg for zenithal projections (like TAN).
XXX this duplicates most of the code of muse_wcs_pixel_from_celestial()
return CPL_ERROR_NULL_INPUT | aHeader, aX, and/or aY are NULL |
return CPL_ERROR_UNSUPPORTED_MODE | aHeader does not contain gnomonic (TAN) WCS |
return CPL_ERROR_ILLEGAL_INPUT | determinant of the CDi_j matrix in aHeader is zero |
Definition at line 1325 of file muse_wcs.c.
cpl_error_code muse_wcs_projplane_from_pixel | ( | cpl_propertylist * | aHeader, |
double | aX, | ||
double | aY, | ||
double * | aXOut, | ||
double * | aYOut | ||
) |
Convert from pixel coordinates to projection plane coordinates.
aHeader | the input header containing the WCS of the exposure |
aX | the horizontal pixel position |
aY | the vertical pixel position |
aXOut | the output x position |
aYOut | the output y position |
The world coordinate system from aHeader is used to do the transformation.
return CPL_ERROR_NULL_INPUT | aHeader, aX, and/or aY are NULL |
Definition at line 1373 of file muse_wcs.c.
References muse_wcs_new(), and muse_wcs_projplane_from_pixel_fast().
|
static |
Convert from pixel coordinates to projection plane coordinates.
aWCS | the input WCS structure |
aX | the horizontal pixel position |
aY | the vertical pixel position |
aXOut | the output x position |
aYOut | the output y position |
See muse_wcs_projplane_from_pixel() for the origin of the equations.
Definition at line 204 of file muse_wcs.h.
References cd22, crpix2, and crval2.
Referenced by muse_resampling_collapse_pixgrid(), muse_resampling_euro3d(), and muse_wcs_projplane_from_pixel().
cpl_error_code muse_wcs_solve | ( | muse_wcs_object * | aWCSObj, |
cpl_table * | aReference, | ||
float | aRadius, | ||
float | aFAccuracy, | ||
int | aIter, | ||
float | aThresh | ||
) |
Find the world coordinate solution for a given field using coordinates of detected sources and coordinates of reference values.
aWCSObj | the MUSE WCS object |
aReference | reference coordinates for the same field |
aRadius | initial radius for pattern matching in pixels |
aFAccuracy | factor to set initial accuracy relative to mean position accuracy in aWCSObj->detected |
aIter | number of iterations |
aThresh | the rejection threshold |
Identify reference objects for the detected objects using pattern matching. Start using a search radius of aRadius pixels, and iteratively decrease it, until no duplicate detections are identified any more. Similarly, iterate the data accuracy (decrease it downwards from the mean positioning error aFAccuracy) until matches are found. Remove the remaining unidentified objects.
Derive the world coordinate plate solution using cpl_wcs_platesol() (taking into account shift, 2 scales, and rotation) and add it as cpl_propertylist element wcs to aWCSObj.
return CPL_ERROR_NULL_INPUT | input WCS object is NULL |
return CPL_ERROR_ILLEGAL_INPUT | table of detected or reference coordinates are empty or NULL |
return CPL_ERROR_BAD_FILE_FORMAT | table of detected or reference coordinates don't contain the expected columns |
return CPL_ERROR_ILLEGAL_INPUT | aRadius and/or aFAccuracy are non-positive |
return CPL_ERROR_DATA_NOT_FOUND | no objects could be identified |
propagate return code | cpl_wcs_platesol failed |
Definition at line 580 of file muse_wcs.c.
References muse_datacube::header, muse_cplarray_has_duplicate(), muse_cpltable_check(), muse_wcs_create_default(), muse_wcs_get_angles(), muse_wcs_get_scales(), and muse_wcs_pixel_from_celestial().
Referenced by muse_postproc_process_exposure().
const muse_cpltable_def muse_wcs_detections_def[] |
Definition of the table structure for the astrometric field detections.
XPOS
: horizontal positionYPOS
: vertical positionXERR
: error estimate of the horizontal positionYERR
: error estimate of the vertical positionFLUX
: (relative) flux of the sourceXFWHM
: horizontal FWHMYFWHM
: vertical FWHM Definition at line 116 of file muse_wcs.c.
const muse_cpltable_def muse_wcs_reference_def[] |
Definition of the table structure for the astrometric reference sources.
SourceID
: the source identificationRA
: right ascension (in decimal degrees)DEC
: declination (in decimal degrees)filter
: the filter used for the magnitudemag
: the object (Vega) magnitude Definition at line 141 of file muse_wcs.c.