-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:jatkinson1000/archeryutils
- Loading branch information
Showing
32 changed files
with
4,679 additions
and
1,959 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,45 @@ | ||
[ | ||
{"bowstyle" : "Compound", | ||
"datum" : 15, | ||
"classStep" : 6, | ||
"genderStep" : 4, | ||
"ageStep" : 6 | ||
"datum_out" : 15, | ||
"classStep_out" : 6, | ||
"genderStep_out" : 4, | ||
"ageStep_out" : 6, | ||
"datum_in" : 11, | ||
"classStep_in" : 8, | ||
"genderStep_in" : 4, | ||
"ageStep_in" : 6 | ||
}, | ||
{"bowstyle" : "Recurve", | ||
"datum" : 30, | ||
"classStep" : 7, | ||
"genderStep" : 5, | ||
"ageStep" : 6.5 | ||
"datum_out" : 30, | ||
"classStep_out" : 7, | ||
"genderStep_out" : 5, | ||
"ageStep_out" : 6.5, | ||
"datum_in" : 28, | ||
"classStep_in" : 7.5, | ||
"genderStep_in" : 5, | ||
"ageStep_in" : 6.5 | ||
|
||
}, | ||
{"bowstyle" : "Barebow", | ||
"datum" : 47, | ||
"classStep" : 5.5, | ||
"genderStep" : 5.5, | ||
"ageStep" : 5.5 | ||
"datum_out" : 47, | ||
"classStep_out" : 5.5, | ||
"genderStep_out" : 5.5, | ||
"ageStep_out" : 5.5, | ||
"datum_in" : 42, | ||
"classStep_in" : 6.0, | ||
"genderStep_in" : 5.5, | ||
"ageStep_in" : 5.5 | ||
|
||
}, | ||
{"bowstyle" : "Longbow", | ||
"datum" : 65, | ||
"classStep" : 6, | ||
"genderStep" : 7, | ||
"ageStep" : 6 | ||
"datum_out" : 65, | ||
"classStep_out" : 6, | ||
"genderStep_out" : 7, | ||
"ageStep_out" : 6, | ||
"datum_in" : 61, | ||
"classStep_in" : 6.5, | ||
"genderStep_in" : 7, | ||
"ageStep_in" : 6 | ||
|
||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"location": "indoor", | ||
"classes" : ["I-GMB", "I-MB", "I-B1", "I-B2", "I-B3", "I-A1", "I-A2", "I-A3"], | ||
"classes_long" : ["Indoor Grand Master Bowman", | ||
"Indoor Master Bowman", | ||
"Indoor Bowman 1", | ||
"Indoor Bowman 2", | ||
"Indoor Bowman 3", | ||
"Indoor Archer 1", | ||
"Indoor Archer 2", | ||
"Indoor Archer 3" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
...eryutils/classifications/AGB_classes.json → ...tils/classifications/AGB_classes_out.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,28 @@ | ||
"""Module providing various classification functionalities.""" | ||
from .agb_outdoor_classifications import ( | ||
calculate_agb_outdoor_classification, | ||
agb_outdoor_classification_scores, | ||
) | ||
from .agb_indoor_classifications import ( | ||
calculate_agb_indoor_classification, | ||
agb_indoor_classification_scores, | ||
) | ||
from .agb_old_indoor_classifications import ( | ||
calculate_agb_old_indoor_classification, | ||
agb_old_indoor_classification_scores, | ||
) | ||
from .agb_field_classifications import ( | ||
calculate_agb_field_classification, | ||
agb_field_classification_scores, | ||
) | ||
|
||
__all__ = [ | ||
"calculate_agb_outdoor_classification", | ||
"agb_outdoor_classification_scores", | ||
"calculate_agb_indoor_classification", | ||
"agb_indoor_classification_scores", | ||
"calculate_agb_old_indoor_classification", | ||
"agb_old_indoor_classification_scores", | ||
"calculate_agb_field_classification", | ||
"agb_field_classification_scores", | ||
] |
Oops, something went wrong.