LSSTDESC / ImageProcessingPipelines

Alert Production and Data Release image processing pipelines using the LSST Stack
BSD 3-Clause "New" or "Revised" License
3 stars 2 forks source link

RA/DEC uncertainty required for w_2020_24 #150

Open kadrlica opened 4 years ago

kadrlica commented 4 years ago

Hopefully this will be fixed soon, but this issue is just to note that with w_2020_24 (and possibly earlier/later versions), the ra_err_name, dec_err_name, and coord_err_unit need to be explicitly specified to avoid a bug in ingestIndexManager.py

I've added the following lines to my local version of DC2_run22_ingestRefConfig.py

config.ra_err_name = 'sigma_ra'
config.dec_err_name = 'sigma_dec'
config.coord_err_unit='deg'

See discussion on slack and the issue on Jira.

kadrlica commented 4 years ago

I can make a PR for this if it is desired.