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-38745: Add SpectractorFitParameters to storage classes #839

Merged
merged 2 commits into from
Aug 24, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changes/DM-38745.feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added a storage class and associated formatter for the Spectractor FitParameters class, which holds the fitted LIBRADTRAN atmospheric parameters.
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 @@ -82,6 +82,7 @@ ButlerLogRecords: lsst.daf.butler.formatters.logs.ButlerLogRecordsFormatter
TaskMetadata: lsst.daf.butler.formatters.json.JsonFormatter
SpectractorSpectrum: lsst.atmospec.formatters.SpectractorSpectrumFormatter
SpectractorImage: lsst.atmospec.formatters.SpectractorImageFormatter
SpectractorFitParameters: lsst.atmospec.formatters.SpectractorFitParametersFormatter
ScarletModelData: lsst.daf.butler.formatters.json.JsonFormatter
MetricMeasurementBundle: lsst.daf.butler.formatters.json.JsonFormatter
MultipleCellCoadd: lsst.cell_coadds.CellCoaddFitsFormatter
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 @@ -388,6 +388,8 @@ storageClasses:
pytype: spectractor.extractor.spectrum.Spectrum
SpectractorImage:
pytype: spectractor.extractor.images.Image
SpectractorFitParameters:
pytype: spectractor.fit.fitter.FitParameters
ScarletModelData:
pytype: lsst.meas.extensions.scarlet.ScarletModelData
MetricMeasurementBundle:
Expand Down
Loading