Module:SportsRankings/data/UEFA Coefficient Rankings
Appearance
local data = {}
data.source = {
url = "https://www.uefa.com/memberassociations/uefarankings/country/#/yr/2019",
title = "Member Associations-UEFA Coefficients",
website = "UEFA"
}
-- date of latest update
data.updated = {
day = 23,
month = 'October',
year =2018
}
--[[ the rankings list
FIFA provide list with country names, whereas template uses country code
for simplicity generate the list below using excel code
=CONCAT(" { '", B1, "', ",A1,", ",E1," }, ")
the alias list below wil handle conversion of code used by template
must manually handle apostrophe in "Côte d'Ivoire" by changing to double quotes
--]]
data.rankings = {
{ 'Lithuania', 41, 2, 6.750, 5.375 },
{ 'Latvia', 42, 2, 5.625, 5.625 },
{ 'Luxembourg', 43, 5, 5.250, 4.375 },
{ 'Armenia', 44, 2, 5.250, 4.875 },
{ 'Malta', 45, 2, 5.125, 4.500 }
}
data.alias = {}
return data