Baselight

Olympic Cities Summary

Summary data of Olympic games with Latitude and Longitude of the Olympic cities

@kaggle.ericnarro_olympic_cities_summary

Olympic Cities
@kaggle.ericnarro_olympic_cities_summary.olympic_cities

  • 15.79 KB
  • 54 rows
  • 16 columns
olympiad

Olympiad

olympic_city

Olympic City

olympic_year

Olympic Year

olympic_season

Olympic Season

total_medals

Total Medals

total_medals_gold

Total Medals Gold

total_medals_silver

Total Medals Silver

total_medals_bronze

Total Medals Bronze

number_committees

Number Committees

number_disciplines

Number Disciplines

number_events

Number Events

country

Country

continent

Continent

iso_code_mapping

ISO Code Mapping

latitude

Latitude

longitude

Longitude

Athina 1896Athens1896summer122434336111043GreeceEuropeGRC37.975564823.7348324
Paris 1900Paris1900summer287969497192289FranceEuropeFRA48.85349512.3483915
St. Louis 1904St. Louis1904summer28097929181894United StatesNorth AmericaUSA38.6280278-90.1910154
London 1908London1908summer3241101071071924104United KingdomEuropeGBR51.4893335-0.1440550845276872
Stockholm 1912Stockholm1912summer3171061071041919103SwedenEuropeSWE59.325117218.0710935
Antwerpen 1920Antwerp1920summer4491581521392229143BelgiumEuropeBEL51.22110974.3997081
Chamonix 1924Chamonix1924winter50171617111017FranceEuropeFRA45.92467056.8727506
Paris 1924Paris1924summer3921291321313123121FranceEuropeFRA48.85349512.3483915
Amsterdam 1928Amsterdam1928summer3561191181193420110NetherlandsEuropeNLD52.37307964.8924534
Sankt Moritz 1928St. Moritz1928winter4114121512813SwitzerlandEuropeCHE46.49789589.8392428

CREATE TABLE olympic_cities (
  "olympiad" VARCHAR,
  "olympic_city" VARCHAR,
  "olympic_year" BIGINT,
  "olympic_season" VARCHAR,
  "total_medals" BIGINT,
  "total_medals_gold" BIGINT,
  "total_medals_silver" BIGINT,
  "total_medals_bronze" BIGINT,
  "number_committees" BIGINT,
  "number_disciplines" BIGINT,
  "number_events" BIGINT,
  "country" VARCHAR,
  "continent" VARCHAR,
  "iso_code_mapping" VARCHAR,
  "latitude" DOUBLE,
  "longitude" DOUBLE
);

Share link

Anyone who has the link will be able to view this.