Module:SportsRankings/data/WBSC Baseball5 World Rankings
Appearance
local data = {}
-- information about other templates used by module
data.templates = { flagged_team_link = "bb5" }
-- general information about ranking and website being cited
data.source = {
url = "https://www.wbsc.org/en/rankings",
title = "The WBSC Baseball5 World Ranking",
website = "WBSC"
}
-- date of latest update and previous one for movement
data.updated = { day = 9, month = 'August', year =2024 }
data.previous = { day = 16, month = 'May', year =2024 }
-- see "Generating code" section on doc page for how to update the rankings
data.rankings = {
{ "Chinese Taipei", 1, 0, 3306 },
{ "Cuba", 2, 1, 2947 },
{ "Tunisia", 3, -1, 2535 },
{ "France", 4, 0, 2390 },
{ "Japan", 5, 0, 2322 },
{ "South Africa", 6, 0, 1929 },
{ "Mexico", 7, 1, 1896 },
{ "South Korea", 8, -1, 1811 },
{ "China", 9, 0, 1476 },
{ "Lithuania", 10, 0, 1342 },
{ "Ghana", 11, 0, 1222 },
{ "Turkey", 12, 0, 1144 },
{ "Venezuela", 13, 2, 1127 },
{ "Malaysia", 14, -1, 1056 },
{ "Kenya", 15, -1, 1046 },
{ "Zambia", 16, 0, 798 },
{ "Hong Kong", 17, 0, 778 },
{ "Netherlands", 18, 0, 723 },
{ "Belgium", 19, 0, 716 },
{ "Italy", 20, 0, 702 },
{ "Czech Republic", 21, 0, 681 },
{ "Tanzania", 22, 0, 621 },
{ "Romania", 23, 0, 557 },
{ "Singapore", 24, 0, 525 },
{ "Spain", 25, 0, 519 },
{ "Thailand", 26, 0, 486 },
{ "Uganda", 27, 0, 398 },
{ "Bulgaria", 28, 0, 394 },
{ "Finland", 29, 0, 330 },
{ "Burkina Faso", 30, 0, 307 },
{ "Germany", 31, 0, 223 },
{ "Cape Verde", 32, 0, 192 },
{ "Moldova", 33, 0, 190 },
{ "Greece", 34, 0, 188 },
{ "Latvia", 35, 0, 179 },
{ "Estonia", 36, 0, 150 },
{ "Philippines", 37, 0, 128 },
{ "Nigeria", 38, 0, 114 },
{ "Australia", 39, 0, 90 },
{ "Pakistan", 40, 0, 60 },
{ "Zimbabwe", 40, 0, 60 },
{ "Benin", 42, 0, 59 },
{ "Israel", 43, 0, 50 },
{ "India", 43, 0, 50 },
{ "Puerto Rico", 45, 0, 48 },
{ "Bolivia", 46, -1, 17 },
{ "Jamaica", 47, 1, 9 },
{ "Togo", 48, 0, 6 },
{ "Saudi Arabia", 49, 0, 3 },
{ "Peru", 49, -2, 3 },
}
-- list of WBSC country codes
data.alias = {
{ "AUS", "Australia" },
{ "BLR", "Belarus" },
{ "BEL", "Belgium" },
{ "BEN", "Benin" },
{ "BOL", "Bolivia" },
{ "BUL", "Bulgaria" },
{ "BUR", "Burkina Faso" },
{ "CPV", "Cape Verde" },
{ "CHN", "China" },
{ "TPE", "Chinese Taipei" },
{ "COL", "Colombia" },
{ "CUB", "Cuba" },
{ "CZE", "Czech Republic" },
{ "EST", "Estonia" },
{ "FIN", "Finland" },
{ "FRA", "France" },
{ "GER", "Germany" },
{ "GHA", "Ghana" },
{ "GRE", "Greece" },
{ "GUA", "Guatemala" },
{ "HKG", "Hong Kong" },
{ "ITA", "Italy" },
{ "IND", "India" },
{ "ISR", "Israel" },
{ "JAM", "Jamaica" },
{ "JPN", "Japan" },
{ "KEN", "Kenya" },
{ "LAT", "Latvia" },
{ "LTU", "Lithuania" },
{ "MAS", "Malaysia" },
{ "MEX", "Mexico" },
{ "MDA", "Moldova" },
{ "NED", "Netherlands" },
{ "NGR", "Nigeria" },
{ "PAK", "Pakistan" },
{ "PER", "Peru" },
{ "PHI", "Philippines" },
{ "PUR", "Puerto Rico" },
{ "ROU", "Romania" },
{ "RUS", "Russia" },
{ "KSA", "Saudi Arabia" },
{ "SGP", "Singapore" },
{ "RSA", "South Africa" },
{ "KOR", "South Korea" },
{ "ESP", "Spain" },
{ "SWE", "Sweden" },
{ "SUI", "Switzerland" },
{ "TAN", "Tanzania" },
{ "THA", "Thailand" },
{ "TOG", "Togo" },
{ "TUN", "Tunisia" },
{ "TUR", "Turkey" },
{ "UGA", "Uganda" },
{ "VEN", "Venezuela" },
{ "ZAM", "Zambia" },
{ "ZIM", "Zimbabwe" },
}
-- List of WBSC confederations
data.confederation = {
Africa = { "TUN", "RSA", "GHA", "KEN", "ZAM", "TAN", "UGA", "BUR", "CPV", "NGR",
"ZIM", "BEN", "TOG"
},
Americas = { "CUB", "MEX", "VEN", "PUR", "BOL", "JAM", "PER"
},
Asia = { "TPE", "JPN", "KOR", "CHN", "MAS", "HKG", "SGP", "THA", "PHI",
"PAK", "IND", "KSA"
},
Europe = { "FRA", "LTU", "TUR", "NED", "BEL", "ITA", "CZE", "ROU", "ESP", "BUL",
"FIN", "GER", "MDA", "GRE", "LAT", "EST", "ISR", "RUS", "BLR", "SUI", "SWE"
},
Oceania = { "AUS"
},
}
return data