Jump to content

Module:SportsRankings/data/UEFA Coefficient Rankings

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jts1882 (talk | contribs) at 08:39, 7 November 2018 (create data subpage). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

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