Jump to content

Module:SportsRankings/data/IRL Wheelchair World Rankings

From Wikipedia, the free encyclopedia

local data = {}

-- information about other templates used by module
data.templates = { flagged_team_link = "wrl-l" }

-- general information about ranking and website being cited
data.source = {
    url = "https://www.intrl.sport/world-rankings", 
	title = "IRL World Rankings: Wheelchair",
	website = "International Rugby League"
}

-- date of latest update and previous for movement
data.updated  = { 	day = 30, 	month = 'June',  year =2024 }
data.previous = { 	day = 21, 	month = 'December',  year =2023 }

data.rankings = {
    { "England", 1, 0, 100 },
    { "France", 2, 0, 89 },
    { "Australia", 3, 0, 61 },
    { "Ireland", 4, 1, 49 },
    { "Wales", 5, -1, 47 },
    { "Scotland", 6, 0, 38 },
    { "United States", 7, 1, 27 },
    { "Spain", 8, -1, 23 },
    { "Italy", 9, 0, 0 },
        -- {  "New Zealand", NR, 0, 0 },
}

-- list of country codes
data.alias = { 

        { "AUS",  "Australia" },
        { "ENG",  "England" },
        { "IRE",  "Ireland" },
        { "ESP",  "Spain" },
        { "FRA",  "France" },
        { "ITA",  "Italy" },
        { "NZL",  "New Zealand" },        
        { "SCO",  "Scotland" },
        { "USA",  "United States" },        
        { "WAL",  "Wales" },

}

return data