Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
3d2972e
Add empty __all__ to legacyPlotUtils to prevent imports
isullivan May 7, 2026
aa584d3
Actually pass limit for APDB SQL queries
isullivan May 7, 2026
4bb4d76
Fix logging and error handling in plotImageSubtractionCutouts
isullivan May 7, 2026
46a289f
Refactor database loads to use common functions
isullivan May 7, 2026
7288074
Use the new functions for loading from the database for cutouts
isullivan May 7, 2026
0a5f489
Prevent queries from modifying the excluded flags list
isullivan May 7, 2026
2f279f7
Vectorize path lookup when making cutouts
isullivan May 7, 2026
d008e73
Preserve APDB integer dtypes and handle validityEnd rename
isullivan May 18, 2026
0244fe8
Refactor _annotate_image to data-driven row/tag tables
isullivan May 18, 2026
023eefb
Add catalog cross-matching utilities
isullivan May 18, 2026
f4c6daa
Overhaul display_images and add A/B + log helpers
isullivan May 18, 2026
41636ed
Add plotUtils visualization helpers
isullivan May 18, 2026
38c90ba
Add PlotDiaSourceLightcurveTask
isullivan May 18, 2026
18bc851
Add ApdbReconstructor for butler-side APDB-shaped catalogs
isullivan May 18, 2026
906369b
Add imageQA for pixel-level difference-image diagnostics
isullivan May 18, 2026
3976d61
Add spatiallySampledMetricsQA notebook helpers
isullivan May 18, 2026
bb9f938
Add collect_task_runtimes for per-quantum timing summaries
isullivan May 18, 2026
bea2038
Add function to compare diaObjects between two runs
isullivan May 20, 2026
f45cc66
Add helpers to analyze diaSource association disagreements
isullivan May 21, 2026
a2cfebf
Add diaSource-cutout plotters for association-cluster inspection
isullivan May 21, 2026
218274d
Color each cutout diaSource by its owning diaObject
isullivan Jun 12, 2026
381ca1d
Modify the lightcurve code to support PPDB queries
isullivan Jun 14, 2026
d74cae9
Add utility for displaying tract/patch boundaries on images
isullivan Jun 22, 2026
5a2080a
Add kernel sources to the catalogs displayed with display_images
isullivan Jun 23, 2026
8b3d767
Draw circle markers for catalogs with different sizes so that all are…
isullivan Jun 23, 2026
bccbbd4
Add standardized diaSources to display_images
isullivan Jul 13, 2026
e15d654
Erase markers on images before drawing new ones.
isullivan Jul 14, 2026
caf2786
Add dipole and trailed source lines to display_images
isullivan Jul 14, 2026
8c16420
Add function to visualize footprints on an exposure
isullivan Jul 15, 2026
eecb6c1
Use fakes datasets when displaying catalogs with fakes
isullivan Jul 15, 2026
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
6 changes: 6 additions & 0 deletions bin.src/plotDiaSourceLightcurve
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#! /usr/bin/env python

from lsst.analysis.ap.plotDiaSourceLightcurve import main

if __name__ == "__main__":
main()
10 changes: 8 additions & 2 deletions python/lsst/analysis/ap/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,13 @@
from .apdb import *
from .apdbCassandra import *
from .ppdb import *
from .nb_utils import *
from .version import * # Generated by sconsUtils
from .plotImageSubtractionCutouts import *
# NOTE: do not import from nb_utils in this file, as it depends on packages
# that are not available in the base environment.
from .plotDiaSourceLightcurve import *
from .apdbReconstruct import *
from .compare import *
from .imageQA import *
from .spatiallySampledMetricsQA import *
from .plotUtils import *
from .taskRuntimes import *
Loading
Loading