NFL Teams Data
Discovering NFL Teams, Superbowls, and Stadiums on the Map
@kaggle.kayla96_nfl_teams_data
Discovering NFL Teams, Superbowls, and Stadiums on the Map
@kaggle.kayla96_nfl_teams_data
Data on the 32 teams in the NFL as of Nov 2023. Including: Team name, stadium, location, lat/long data, mascot, conference, division, super bowl wins, and year established.
Great for creating map visualizations with coordinate data.
CREATE TABLE nfl (
"team_name" VARCHAR,
"home_stadium" VARCHAR,
"location" VARCHAR,
"lat" DOUBLE,
"long" DOUBLE,
"mascot" VARCHAR,
"live_mascots" VARCHAR,
"conference" VARCHAR,
"division" VARCHAR,
"superbowl_wins" BIGINT,
"year_est" BIGINT
);
CREATE TABLE nfl_team_data (
"team_name" VARCHAR,
"home_stadium" VARCHAR,
"location" VARCHAR,
"lat" DOUBLE,
"long" DOUBLE,
"mascot" VARCHAR,
"live_mascots" VARCHAR,
"conference" VARCHAR,
"division" VARCHAR,
"superbowl_wins" BIGINT,
"year_est" BIGINT
);
Anyone who has the link will be able to view this.