Skip to content

Commit

Permalink
putted back all_stars_photometry.
Browse files Browse the repository at this point in the history
  • Loading branch information
simontorres committed Sep 7, 2022
1 parent 86c5d9b commit 8b5e58d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion triplespec_focus/triplespec_focus.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,13 @@ def __call__(self,

star_ids = self.sources_df.id.unique().tolist()

all_stars_photometry = []
all_focus = []
all_fwhm = []
for star_id in star_ids:
star_phot = self.sources_df[self.sources_df['id'] == star_id]
self.get_best_focus(df=star_phot)
interpolated_data = self.get_best_focus(df=star_phot)
all_stars_photometry.append([star_phot, interpolated_data, self.best_focus])
all_focus.append(self.best_focus)
all_fwhm.append(self.best_fwhm)

Expand Down

0 comments on commit 8b5e58d

Please sign in to comment.