From 34261b95818e898601b4de00be2631f4817d7a7b Mon Sep 17 00:00:00 2001 From: SGCMarkus Date: Mon, 2 Dec 2024 09:50:30 +0100 Subject: [PATCH] Revert "identify unknown sptypes: only check U-B and B-V" This reverts commit 87f71c386e0707872efec24006f862a1a92207a9. --- identify_unknown_sptypes.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/identify_unknown_sptypes.py b/identify_unknown_sptypes.py index 3bcf244..caf7750 100644 --- a/identify_unknown_sptypes.py +++ b/identify_unknown_sptypes.py @@ -13,13 +13,13 @@ for f in filters: spTypeTable = pd.read_csv("cousins.cols") weights = {"SpType": 0.0, - "U-B": 1.0, - "B-V": 1.0, - "V-R": 0.0, - "V-I": 0.0, - "V-J": 0.0, - "V-H": 0.0, - "V-K": 0.0, + "U-B": 2.0, + "B-V": 2.0, + "V-R": 0.8, + "V-I": 0.7, + "V-J": 0.6, + "V-H": 0.5, + "V-K": 0.4, "V-L": 0.0, "V-M": 0.0, "V-N": 0.0}