We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f24ce2e commit 469e460Copy full SHA for 469e460
1 file changed
python/lsst/cell_coadds/_fits.py
@@ -296,6 +296,7 @@ def readAsMultipleCellCoadd(self) -> MultipleCellCoadd:
296
psf_shape=afwGeom.Quadrupole(),
297
psf_shape_flag=True,
298
)
299
+ visit_polygons = {}
300
if written_version >= version.parse("0.3"):
301
visit_dict = {
302
row["visit"]: VisitRecord(
@@ -323,7 +324,6 @@ def readAsMultipleCellCoadd(self) -> MultipleCellCoadd:
323
324
325
if written_version >= version.parse("0.6"):
326
visit_summary_hdu = hdu_list[hdu_list.index_of("VISIT_SUMMARY")]
- visit_polygons = {}
327
for row in visit_summary_hdu.data:
328
visit = int(row["visit"])
329
obs_id = ObservationIdentifiers(
0 commit comments