Skip to content

Commit

Permalink
Fix to add back in sources with bad photometry
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandergagliano committed Feb 10, 2024
1 parent e7c2e06 commit 6165e67
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion astro_ghost/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0.17'
__version__ = '2.0.18'
5 changes: 4 additions & 1 deletion astro_ghost/starSeparation.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ def separateStars_STRM(df, model_path='.', plot=False, verbose=False, starcut='g
plt.savefig("TNS_iAp_iKronMag_Histogram.pdf")

# Adding back in the ones we identified as galaxies from our clustering above, and the NED sources.
df_gals = pd.concat([test_gals, NED_gals])

# Also adding back in sources with photometry missing in any band.
#df_gals = pd.concat([test_gals, NED_gals])
df_gals = pd.concat([test_gals, NED_gals, only_na])
df_gals.reset_index(inplace=True, drop=True)

# Adding back in the ones we identified as stars from our clustering above, and the NED sources.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from setuptools import setup

version = "2.0.17"
version = "2.0.18"

VERSION_TEMPLATE = """
Note that we need to fall back to the hard-coded version if either
Expand Down

0 comments on commit 6165e67

Please sign in to comment.