Module:SportsRankings/data/IRL Wheelchair World Rankings
Jump to navigation
Jump to search
File:Test Template Info-Icon - Version (2).svg Module documentation[view] [edit] [history] [purge]
Usage
[edit source]{{#invoke:SportsRankings/data/IRL Wheelchair World Rankings|function_name}}
This module provides the IRL world rankings for wheelchair rugby league national teams. It is invoked through the template {{IRL Wheelchair World Rankings Team}}.
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.internationalrugbyleague.com/world-rankings",
title = "IRL World Rankings: Wheelchair",
website = "International Rugby League"
}
-- date of latest update and previous for movement
data.updated = { day = 17, month = 'November', year =2025 }
data.previous = { day = 21, month = 'July', year =2025 }
data.rankings = {
{ "England", 1, 0, 100 },
{ "France", 2, 0, 86 },
{ "Ireland", 3, 0, 63 },
{ "Australia", 4, 0, 62 },
{ "Wales", 5, 0, 46 },
{ "Scotland", 6, 0, 41 },
{ "Spain", 7, 0, 25 },
{ "United States", 8, 0, 23 },
{ "New Zealand", 9, 1, 5 },
{ "Italy", 10, -1, 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