Jump to content

Module:SportsRankings/data/FIBA World Rankings

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jts1882 (talk | contribs) at 15:41, 2 November 2018 (create with top ten FIBA). 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    = 'http://www.fiba.basketball/rankingmen',
    title  = 'FIBA Ranking Presented by Nike', 
	website = "FIBA"
}

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

-- the rankings list
data.rankings = {
	    --	{ country code, rank, move },
     { 'USA', 1, 0 },  -- United States 
     { 'ESP', 2, 0 },  -- Spain
     { 'FRA', 3,  0 },  -- France 
     { 'SRB', 4,  0 },  -- Serbia 
     { 'ARG', 5,  0 },  -- Argentina 
     { 'LTU', 6,  0 },  -- Lithuania 
     { 'SLO', 7,  0 },  -- Slovenia 
     { 'CRO', 8,  0 },  -- Croatia 
     { 'GRE', 9,  0 },  -- Greece 
     { 'AUS', 10,  0 }  -- Australia 
}

return data