From 0872e16dc6a85e4f4bed7e1906cd1e41531554a9 Mon Sep 17 00:00:00 2001 From: dwolfe5 <146256428+dwolfe5@users.noreply.github.com> Date: Thu, 8 Feb 2024 07:29:53 -0500 Subject: [PATCH] Update TESS_Localize.py print only first 5 sources found in tpf (target + first 4 neighbours found) --- TESS_Localize/TESS_Localize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TESS_Localize/TESS_Localize.py b/TESS_Localize/TESS_Localize.py index 647e693..544137f 100644 --- a/TESS_Localize/TESS_Localize.py +++ b/TESS_Localize/TESS_Localize.py @@ -791,7 +791,7 @@ def info(self): if (self.gaiadata != None): plt.scatter(self.gaiadata['x'],self.gaiadata['y'],s=self.gaiadata['size']*5,c='white',alpha=.6) plt.scatter(self.location[0],self.location[1],marker='X',c='black',s=70) - print(self.starfit) + print(self.starfit.head(5) plt.xlim(-.5,self.aperture.shape[1]-1+.5) plt.ylim(-.5,self.aperture.shape[0]-1+.5) report_fit(self.result)