Skip to content

Skyluker4/hoghacks-2024

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hoghacks-2024

Hackathon Spring 2024

API

GET /api/v1/formations

[
    {
        "image": "/images/placeholder.png",
        "name": "4-3 Formation",
        "weight": 1.0
    },
    {
        "image": "/images/placeholder.png",
        "name": "3-4 Formation",
        "weight": 1.0
    },
    {
        "image": "/images/placeholder.png",
        "name": "Nickel Formation",
        "weight": 1.0
    },
    {
        "image": "/images/placeholder.png",
        "name": "Dime Formation",
        "weight": 1.0
    },
    {
        "image": "/images/placeholder.png",
        "name": "Quarter Formation",
        "weight": 1.0
    },
    {
        "image": "/images/placeholder.png",
        "name": "Goal Line Formation",
        "weight": 1.0
    }
]

GET /api/v1/predictions

[
    {
        "formation": "I Formation",
        "image": "/static/images/placeholder.png",
        "name": "Run",
        "weight": 1.0
    },
    {
        "formation": "I Formation",
        "image": "/static/images/placeholder.png",
        "name": "PA Pass",
        "weight": 1.0
    },
    {
        "formation": "I Formation",
        "image": "/static/images/placeholder.png",
        "name": "Screen Pass",
        "weight": 1.0
    },
    {
        "formation": "Singleback Formation",
        "image": "/static/images/placeholder.png",
        "name": "Run",
        "weight": 1.0
    }
]

GET /api/v1/situation

{
    "away_score": 0,
    "home_score": 0,
    "is_possessing_team": false,
    "position": {
        "distance": 10,
        "down": 1,
        "yard": 0
    },
    "quarter": 1,
    "time": "15:00"
}

POST /api/v1/time

{
  "time": "15:00",
  "quarter": 1
}

POST /api/v1/reset

POST /api/v1/score

{
  "away_score": 0,
  "home_score": 0
}

POST /api/v1/possession

{
  "is_possessing_team": true
}

POST /api/v1/position

{
  "distance": 10,
  "down": 1,
  "yard": 0
}

About

Hackathon Spring 2024

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors