Skip to content

Commit

Permalink
Update AAVSO filter list to match latest AAVSO update
Browse files Browse the repository at this point in the history
This also fixes #382 because the duplicate R and I entries have been
removed.
  • Loading branch information
mwcraig committed Jul 31, 2024
1 parent ad482ce commit 0b48d97
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions stellarphot/settings/aavso_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@


class AAVSOFilters(str, Enum):
"""
The definitive list of AAVSO filters is at https://www.aavso.org/filters
"""

U = "U"
B = "B"
V = "V"
R = "R"
RJ = "RJ"
Rc = "R"
I = "I" # noqa: E741
Ic = "I"
IJ = "IJ"
J = "J"
H = "H"
K = "K"
Expand All @@ -35,4 +39,5 @@ class AAVSOFilters(str, Enum):
Y = "Y"
HA = "HA"
HAC = "HAC"
CBB = "CBB"
O = "O" # noqa: E741

0 comments on commit 0b48d97

Please sign in to comment.