Module:Football map/data
Appearance
local p = {}
p.stadia = {
-- stadium name , latitude, longitude
{ "White Hart Lane", 51.603333, -0.065833 },
{ "Northumberland Development Project", 51.60475, -0.066417 },
{ "Wembley Stadium", 51.555833, -0.279722 },
{ "Emirates Stadium", 51.555, -0.108611 },
{ "Arsenal Stadium", 51.557778, -0.102778 },
{ "Stamford Bridge", 51.481667, -0.191111 },
{ "London Stadium", 51.538611, -0.016389 },
{ "Boleyn Ground", 51.531944, 0.039444 },
{ "Craven Cottage", 51.475, -0.221667 },
{ "The Valley (London)", 51.486389, 0.036389 },
{ "Selhurst Park", 51.398333, -0.085556},
{ "Kingsmeadow", 51.405083, -0.281944},
{ "Vicarage Road", 51.649836, -0.401486},
{ "The Hive Stadium", 51.602599, -0.291785},
{ "Loftus Road", 51.509167, -0.232222},
{ "Griffin Park", 51.488183, -0.302639},
{ "Brisbane Road", 51.56015, -0.012658},
{ "The Den", 51.485953, -0.05095},
{ "The Old Den", 51.480883, -0.048175},
{ "Wembley Stadium (1923)", 51.555556, -0.279722},
{ "x", 51, 0}
}
p.clubs = {
{ "Tottenham Hotspur F.C.", "White Hart Lane", 1899, 2017},
{ "Tottenham Hotspur F.C.", "Northumberland Development Project", 2018, -1 },
{ "Arsenal F.C.", "Emirates Stadium", 2006, -1 },
{ "Arsenal F.C.", "Arsenal Stadium", 1913, 2006 },
{ "Chelsea F.C.", "Stamford Bridge", -1, -1 },
{ "West Ham United F.C.", "London Stadium", 2016, -1 },
{ "West Ham United F.C.", "Boleyn Ground", 1904, 2016 },
{ "Fulham F.C.", "Craven Cottage", -1, -1 },
{ "Charlton Athletic F.C.", "The Valley (London)", -1, -1 },
{ "Crystal Palace F.C.", "Selhurst Park", -1, -1},
{ "A.F.C. Wimbledon", "Kingsmeadow", -1, -1},
{ "Watford F.C.", "Vicarage Road", -1, -1},
{ "Barnet F.C.", "The Hive Stadium", -1, -1},
{ "Queens Park Rangers F.C.", "Loftus Road", -1, -1},
{ "Brentford F.C.", "Griffin Park", -1, -1},
{ "Leyton Orient F.C.", "Brisbane Road", -1, -1},
{ "Millwall F.C.", "The Den", 1993, -1},
{ "Millwall F.C.", "The Old Den", 1910, 1993},
{ "England national team", "Wembley", 2007, -1 },
{ "England national team", "Wembley Stadium (1923)", 1923, 2002}
}
p.aliases = {
-- name of wikipedia article, alias
{"Northumberland Development Project", "New White Hart Lane"},
{"Arsenal Stadium", "Highbury"},
{"London Stadium", "Olympic Stadium"},
{"Boleyn Ground", "Upton Park"}
}
return p