Skip to content

Commit

Permalink
Add per tract survey property map plots
Browse files Browse the repository at this point in the history
  • Loading branch information
enourbakhsh committed Sep 26, 2023
1 parent 92b6ad8 commit 507e613
Show file tree
Hide file tree
Showing 7 changed files with 701 additions and 0 deletions.
15 changes: 15 additions & 0 deletions pipelines/coaddQualityCore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,18 @@ tasks:
class: lsst.analysis.tools.tasks.catalogMatch.CatalogMatchTask
refCatObjectTract:
class: lsst.analysis.tools.tasks.refCatObjectAnalysis.RefCatObjectAnalysisTask
plotPropertyMapTract:
class: lsst.analysis.tools.tasks.PropertyMapTractAnalysisTask
config:
connections.outputName: propertyMapTract
atools.healSparseMap: PropertyMapTool
zoomFactors: [2, 8]
python: |
from lsst.analysis.tools.atools import *
config.properties["exposure_time"] = PropertyMapConfig
config.properties["exposure_time"].coaddName= "deep"
config.properties["exposure_time"].operations = ["sum"]
config.properties["psf_size"] = PropertyMapConfig
config.properties["psf_size"].operations = ["weighted_mean"]
config.properties["sky_background"] = PropertyMapConfig
config.properties["sky_background"].operations = ["weighted_mean"]
1 change: 1 addition & 0 deletions python/lsst/analysis/tools/actions/plot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from .focalPlanePlot import *
from .histPlot import *
from .multiVisitCoveragePlot import *
from .propertyMapPlot import *
from .rhoStatisticsPlot import *
from .scatterplotWithTwoHists import *
from .skyPlot import *
Expand Down
Loading

0 comments on commit 507e613

Please sign in to comment.