stattleship / stattleship-api

Feature requests for the Stattleship API.
https://api.stattleship.com
1 stars 0 forks source link

NFL - FG Data and Distances Issues #8

Closed dthyresson closed 7 years ago

dthyresson commented 7 years ago

augiesarmy [7:22 PM]

@dthyresson , I am trying to find how many FG attemps the kicker had, how many FG made and then find out the distances of the FGs. I am not seeing the data returned, so I am hoping I am just looking in the wrong place. I am also having trouble with defense_tackles_for_loss. I am lookin in game_logs for all of this data and see where the data is supposed to be, but the values are always 0.

If you look at the results for https://api.stattleship.com/football/nfl/game_logs?team_id=nfl-ne&week=1 you will find the results aren't there. Here are the results for Stephen Gostkowski.

{
    "id": "fcb0e908-b44c-4573-a7c6-9accd501e1a3061fa5ed-19b0-4cc1-b32d-9091b3633454",
    "created_at": "2016-08-16T03:56:16-04:00",
    "updated_at": "2016-09-12T19:36:55-04:00",
...
    "extra_points_attempts": 2,
    "extra_points_made": 2,
    "field_goal_attempts": 0,
    "field_goals_made": 0,
    "field_goals_missed": 0,
    "field_goals_blocked": 0,
    "field_goals_attempted_against": 0,
    "field_goals_succeeded_against": 0,
    "field_goals_succeeded_longest_yards": 0,
    "field_goals_succeeded_yards": 0,
...
    "game_id": "fcb0e908-b44c-4573-a7c6-9accd501e1a3",
    "player_id": "061fa5ed-19b0-4cc1-b32d-9091b3633454",
    "team_id": "5546974d-27c2-4d93-a63e-d8320952e871",
    "opponent_id": "77c57737-b688-4bbf-a127-7b7f0ef8bcdd"
  } 
dthyresson commented 7 years ago

Fixed mapping on FG made/attempts and distance and added to player game log:

      "field_goal_attempts": 3,
      "field_goal_attempts_19": 0,
      "field_goal_attempts_29": 0,
      "field_goal_attempts_39": 1,
      "field_goal_attempts_49": 1,
      "field_goal_attempts_50": 1,
      "field_goals_attempted_against": 0,
      "field_goals_blocked": 0,
      "field_goals_made": 3,
      "field_goals_made_19": 0,
      "field_goals_made_29": 0,
      "field_goals_made_39": 1,
      "field_goals_made_49": 1,
      "field_goals_made_50": 1,
      "field_goals_missed": 0,
      "field_goals_succeeded_against": 0,
      "field_goals_succeeded_longest_yards": 53,
      "field_goals_succeeded_yards": 0,