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-26082: Persist source-to-external reference matched catalogs in pipe_analysis to parquet #293

Merged
merged 1 commit into from
Sep 9, 2020
Merged
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
30 changes: 30 additions & 0 deletions policy/datasets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1333,6 +1333,16 @@ analysisVisitTable_commonZp:
storage: ParquetStorage
python: lsst.pipe.tasks.parquetTable.ParquetTable
template: plots/%(filter)s/tract-%(tract)d/visit-%(visit)d%(subdir)s/%(tract)d_%(visit)d_commonZp.parq
analysisMatchFullRefVisitTable:
description: >
Per-visit table (for specific tract) of the matched source-to-external reference
catalog assembled by pipe_analysis scripts. The table is "denormalized", i.e.
contains all fields from the original source and external catalogs (but with
"src_" and "ref_" prefixes on the column names).
persistable: ignored
storage: ParquetStorage
python: lsst.pipe.tasks.parquetTable.ParquetTable
template: plots/%(filter)s/tract-%(tract)d/visit-%(visit)d%(subdir)s/%(tract)d_%(visit)d_matchFullRef.parq
analysisCoaddTable_forced:
description: >
Per-tract object table assembled by pipe_analysis scripts (forced photometry).
Expand All @@ -1347,6 +1357,26 @@ analysisCoaddTable_unforced:
storage: ParquetStorage
python: lsst.pipe.tasks.parquetTable.ParquetTable
template: plots/%(filter)s/tract-%(tract)d%(subdir)s/%(tract)d_unforced.parq
analysisMatchFullRefCoaddTable_forced:
description: >
Per-tract table of the matched source-to-external reference catalog assembled
by pipe_analysis scripts (forced photometry). The table is "denormalized", i.e.
contains all fields from the original source and external catalogs (but with
"src_" and "ref_" prefixes on the column names).
persistable: ignored
storage: ParquetStorage
python: lsst.pipe.tasks.parquetTable.ParquetTable
template: plots/%(filter)s/tract-%(tract)d%(subdir)s/%(tract)d_matchFullRef_forced.parq
analysisMatchFullRefCoaddTable_unforced:
description: >
Per-tract table of the matched source-to-external reference catalog assembled
by pipe_analysis scripts (unforced photometry). The table is "denormalized", i.e.
contains all fields from the original source and external catalogs (but with
"src_" and "ref_" prefixes on the column names).
persistable: ignored
storage: ParquetStorage
python: lsst.pipe.tasks.parquetTable.ParquetTable
template: plots/%(filter)s/tract-%(tract)d%(subdir)s/%(tract)d_matchFullRef_unforced.parq
analysisColorTable:
description: >
Principal color table assembled by pipe_analysis scripts.
Expand Down