Module:SportsRankings/data/IRL Women's 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 Women's World Rankings|function_name}}
This module provides the IRL world rankings for rugby league women's national teams. It is invoked through the template {{IRL Women's World Rankings Team}}.
local data = {}
-- information about other templates used by module
data.templates = { flagged_team_link = "rlw-l" }
-- general information about ranking and website being cited
data.source = {
url = "https://www.internationalrugbyleague.com/world-rankings",
title = "IRL World Rankings: Women",
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 = {
{ "Australia", 1, 0, 100 },
{ "New Zealand", 2, 0, 64 },
{ "England", 3, 0, 39 },
{ "France", 4, 0, 24 },
{ "Samoa", 5, 7, 20 },
{ "Papua New Guinea", 6, -1, 18 },
{ "Wales", 7, -1, 18 },
{ "Ireland", 8, 0, 18 },
{ "Cook Islands", 9, 0, 14 },
{ "Fiji", 10, 6, 12 },
{ "Canada", 11, -1, 12 },
{ "Nigeria", 12, 5, 12 },
{ "Greece", 13, -6, 12 },
{ "Tonga", 14, 1, 11 },
{ "Netherlands", 15, -2, 11 },
{ "United States", 16, -5, 10 },
{ "Serbia", 17, -3, 7 },
{ "Kenya", 18, 0, 6 },
{ "Scotland", 19, 9, 4 },
{ "Italy", 20, 2, 3 },
{ "Ghana", 21, 3, 3 },
{ "Philippines", 22, -2, 3 },
{ "Brazil", 23, -4, 3 },
{ "Uganda", 24, 4, 3 },
{ "Jamaica", 25, -2, 2 },
{ "Turkey", 26, 0, 1 },
{ "Lebanon", 27, 0, 1 },
{ "Malta", 28, -3, 1 },
}
-- list of country codes
data.alias = {
{ "AUS", "Australia" },
{ "BRA", "Brazil" },
{ "CAN", "Canada" },
{ "COK", "Cook Islands" },
{ "ENG", "England" },
{ "FJI", "Fiji" },
{ "FRA", "France" },
{ "GHA", "Ghana" },
{ "GRE", "Greece" },
{ "IRE", "Ireland" },
{ "ITA", "Italy" },
{ "JAM", "Jamaica" },
{ "KEN", "Kenya" },
{ "LBN", "Lebanon" },
{ "MLT", "Malta" },
{ "NLD", "Netherlands" },
{ "NZL", "New Zealand" },
{ "NGA", "Nigeria" },
{ "PNG", "Papua New Guinea" },
{ "PHL", "Philippines" },
{ "WSM", "Samoa" },
{ "SCO", "Scotland" },
{ "SRB", "Serbia" },
{ "TON", "Tonga" },
{ "TUR", "Turkey" },
{ "UGA", "Uganda" },
{ "USA", "United States" },
{ "WAL", "Wales" },
}
return data