Skip to content

Commit

Permalink
Update field to handle all ages except U21 as per new rules, and add …
Browse files Browse the repository at this point in the history
…Compound Limited as a category.
  • Loading branch information
jatkinson1000 committed Mar 23, 2024
1 parent c528465 commit d599d38
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
8 changes: 4 additions & 4 deletions archeryutils/classifications/AGB_ages.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
{"age_group" : "Under 18",
"male" : [70, 80],
"female" : [60, 60],
"red" : [50, 60],
"blue" : [40, 50],
"red" : [60, 60],
"blue" : [50, 50],
"step" : 2
},
{"age_group" : "Under 16",
Expand All @@ -38,14 +38,14 @@
{"age_group" : "Under 15",
"male" : [50, 50],
"female" : [50, 50],
"red" : [50, 60],
"red" : [40, 60],
"blue" : [30, 50],
"step" : 4
},
{"age_group" : "Under 14",
"male" : [40, 40],
"female" : [40, 40],
"red" : [50, 60],
"red" : [30, 60],
"blue" : [30, 50],
"step" : 5
},
Expand Down
14 changes: 14 additions & 0 deletions archeryutils/classifications/AGB_bowstyles.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,20 @@
"genderStep_field" : 5.5,
"ageStep_field" : 5.5
},
{"bowstyle" : "Compound Limited",
"datum_out" : 15,
"classStep_out" : 6,
"genderStep_out" : 4,
"ageStep_out" : 6,
"datum_in" : 11,
"classStep_in" : 8,
"genderStep_in" : 4,
"ageStep_in" : 6,
"datum_field" : 55,
"classStep_field" : 5,
"genderStep_field" : 5.5,
"ageStep_field" : 5.5
},
{"bowstyle" : "Compound Barebow",
"datum_out" : 15,
"classStep_out" : 6,
Expand Down
2 changes: 1 addition & 1 deletion archeryutils/classifications/agb_field_classifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def _make_agb_field_classification_dict() -> Dict[str, Dict[str, Any]]:
item
for item in agb_ages
if item["age_group"].lower().replace(" ", "")
in ["50+", "adult", "under21", "under18", "under15", "under12"]
not in ["under21"]
]
# Read in bowstyleclass info as list of dicts
agb_bowstyles = cls_funcs.read_bowstyles_json()
Expand Down
2 changes: 1 addition & 1 deletion archeryutils/classifications/classification_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def read_classes_json(
else:
msg = (
"Unexpected classification system specified. "
"Expected one of 'agb_indoor', 'agb_outdoor', 'aqb_field'."
"Expected one of 'agb_indoor', 'agb_outdoor', 'agb_field'."
)
raise ValueError(msg)

Expand Down

0 comments on commit d599d38

Please sign in to comment.