Skip to content

Commit 5dd2e7c

Browse files
made minor changes
1 parent bf797f1 commit 5dd2e7c

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

DP1/200_Data_Products/206_Deblender_Products/206_2_Deblender_footprints.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"\n",
7373
"\n",
7474
"**Related tutorials:**\n",
75-
"A notebook introducing the deblender data products stored in the `Object` table is available as 206.1 Introduction to deblender outputs. \n"
75+
"A notebook introducing the deblender data products stored in the `Object` table is available as 206.1 Introduction to deblender outputs. A notebook introducing image subsets and defining bounding boxes is available as 104.5 titled Image subsets with the butler.\n"
7676
]
7777
},
7878
{
@@ -82,7 +82,7 @@
8282
"source": [
8383
"### 1.1. Import packages\n",
8484
"\n",
85-
"`lsst.afw.image` provides access to some of the extended products created by the deblender pipeline. The `lsst.afw.display` library provides access to image visualization routines and the `lsst.daf.butler` library is used to access data products via the butler. Finally, `lsst.scarlet.lite` and `lsst.meas.extensions.scarlet` are two packages containing the scarlet software infrastructure, to enable displaying and analyzing deblended models and object footprints. "
85+
"`lsst.afw.image` provides access to some of the extended products created by the deblender pipeline. The `lsst.afw.display` library provides access to image visualization routines and the `lsst.daf.butler` library is used to access data products via the butler. Finally, `lsst.scarlet` and `lsst.meas.extensions.scarlet` are two packages containing the scarlet software infrastructure, to enable displaying and analyzing deblended models and object footprints. "
8686
]
8787
},
8888
{
@@ -325,14 +325,14 @@
325325
"metadata": {},
326326
"outputs": [],
327327
"source": [
328-
"radec = geom.SpherePoint(children['coord_ra'][0],children['coord_dec'][0],geom.degrees)\n",
328+
"radec = geom.SpherePoint(children['coord_ra'][0], children['coord_dec'][0], geom.degrees)\n",
329329
"skymap = butler.get(\"skyMap\")\n",
330330
"\n",
331331
"tractInfo = skymap.findTract(radec)\n",
332332
"\n",
333333
"tract = tractInfo.getId()\n",
334334
"patch = tractInfo.findPatch(radec).getSequentialIndex()\n",
335-
"band='i'"
335+
"band = 'i'"
336336
]
337337
},
338338
{
@@ -351,7 +351,7 @@
351351
"outputs": [],
352352
"source": [
353353
"total_footprint_area = np.sum(children['footprintArea'])\n",
354-
"cutoutSideLength=5.0 * np.sqrt(total_footprint_area)"
354+
"cutoutSideLength = 5.0 * np.sqrt(total_footprint_area)"
355355
]
356356
},
357357
{

0 commit comments

Comments
 (0)