Module:SportsRankings/data/UEFA Coefficient Rankings

From blackwiki
< Module:SportsRankings‎ | data
Revision as of 08:39, 7 November 2018 by blackwiki>Jts1882 (create data subpage)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:SportsRankings/data/UEFA Coefficient Rankings/doc

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