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-43736: Add the persistence for the PSF matching kernel from image differencing #995

Merged
merged 2 commits into from
Apr 17, 2024
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
1 change: 1 addition & 0 deletions doc/changes/DM-43736.feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added ``MatchingKernel`` storage class for persisting the PSF-matching kernel from image differencing.
1 change: 1 addition & 0 deletions python/lsst/daf/butler/configs/datastores/formatters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ CrosstalkCalib: lsst.obs.base.formatters.fitsGeneric.FitsGenericFormatter
PhotonTransferCurveDataset: lsst.obs.base.formatters.fitsGeneric.FitsGenericFormatter
Linearizer: lsst.obs.base.formatters.fitsGeneric.FitsGenericFormatter
BrighterFatterKernel: lsst.obs.base.formatters.fitsGeneric.FitsGenericFormatter
MatchingKernel: lsst.obs.base.formatters.fitsGeneric.FitsGenericFormatter
FiberSpectrum: lsst.obs.base.formatters.fitsGeneric.FitsGenericFormatter
Image: lsst.obs.base.formatters.fitsExposure.FitsImageFormatter
ImageF: lsst.obs.base.formatters.fitsExposure.FitsImageFormatter
Expand Down
2 changes: 2 additions & 0 deletions python/lsst/daf/butler/configs/storageClasses.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,8 @@ storageClasses:
pytype: lsst.ip.isr.StrayLightData
BrighterFatterKernel:
pytype: lsst.ip.isr.BrighterFatterKernel
MatchingKernel:
ptype: lsst.afw.math.Kernel
FilterLabel:
pytype: lsst.afw.image.FilterLabel
Exposure:
Expand Down