Jump to content

Module:SportsRankings/data/FIFA World Rankings

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jts1882 (talk | contribs) at 13:28, 2 November 2018 (create FIFA World Rankings data page). 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.fifa.com/fifa-world-ranking/ranking-table/men/index.html", 
	title = "The FIFA/Coca-Cola World Ranking",
	website = "FIFA"
}

-- date of latest update
data.updated = {
	day = 2,
	month = 'November',
	year =2018
}

-- the rankings list
data.rankings = {
	    --	{ country code, rank, move },
	             { 'BEL', 1, 0 },
	             { 'FRA', 2, -1 },
	             { 'BRA', 3, 0 },
	             { 'CRO', 4, 0 },
	             { 'ENG', 5, 1 },
	             { 'URU', 6, -1 },
	             { 'POR', 7, 0 },
	             { 'SUI', 8, 0 },
	             { 'ESP', 9, 0 },
	             { 'DEN', 10, 0 },
	             	-- other to fill later
	             { 'GIB', 190, 8 }
}

return data