Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-11138: Add jointcal_wcs and jointcal_photoCalib datatasets. #82

Merged
merged 1 commit into from
Mar 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 13 additions & 1 deletion policy/datasets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,19 @@ srcMatchFull: # Denormalized matches from CalibrateTask
python: lsst.afw.table.BaseCatalog
tables: raw
template: ''
photoCalib:
jointcal_wcs: # Astrometric calibration produced by meas_mosaic/jointcal
persistable: SkyWcs
storage: FitsCatalogStorage
python: lsst.afw.geom.SkyWcs
tables: raw
template: ''
jointcal_photoCalib: # Photometric calibration produced by meas_mosaic/jointcal
persistable: PhotoCalib
storage: FitsCatalogStorage
python: lsst.afw.image.PhotoCalib
tables: raw
template: ''
photoCalib: # old meas_mosaic/jointcal output; deprecated in favor of jointcal_photoCalib
persistable: PhotoCalib
storage: FitsCatalogStorage
python: lsst.afw.image.PhotoCalib
Expand Down
1 change: 1 addition & 0 deletions policy/exposures.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ raw:
level: Ccd
tables: raw
template: ''
# old meas_mosaic/jointcal output; deprecated in favor of jointcal_wcs, but still need to read old outputs
wcs:
persistable: ExposureI
storage: FitsStorage
Expand Down