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://rankings.wbsc.org/en/list/baseball5/coed",
title = "The WBSC Baseball5 World Ranking",
website = "WBSC",
language = "en"
}
-- date of latest update and previous one for movement
data.updated = { day = 12, month = 'January', year =2023 }
-- see "Generating code" section on doc page for how to update the rankings
data.rankings = {
{ "Cuba", 1, 0, 2055 },
{ "Chinese Taipei", 2, 0, 1679 },
{ "France", 3, 0, 1650 },
{ "Japan", 4, 0, 1635 },
{ "Venezuela", 5, 0, 1370 },
{ "South Africa", 6, 0, 1286 },
{ "Lithuania", 7, 0, 1213 },
{ "Tunisia", 8, 0, 1174 },
{ "Kenya", 9, 0, 1046 },
{ "Italy", 10, 0, 819 },
{ "Mexico", 11, 0, 807 },
{ "South Korea", 12, 0, 781 },
{ "Netherlands", 13, 0, 714 },
{ "Romania", 14, 0, 710 },
{ "Czech Republic", 15, 0, 600 },
{ "Belgium", 16, 0, 532 },
{ "Russia", 17, 0, 528 },
{ "Hong Kong", 18, 0, 518 },
{ "Bulgaria", 19, 0, 466 },
{ "Turkey", 20, 0, 465 },
{ "Israel", 21, 0, 434 },
{ "Belarus", 22, 0, 420 },
{ "Uganda", 23, 0, 398 },
{ "Colombia", 24, 0, 330 },
{ "Malaysia", 24, 0, 330 },
{ "Tanzania", 24, 0, 330 },
{ "Estonia", 27, 0, 276 },
{ "Singapore", 28, 0, 263 },
{ "Zambia", 28, 0, 263 },
{ "Moldova", 30, 0, 253 },
{ "Latvia", 31, 0, 251 },
{ "Germany", 32, 0, 223 },
{ "Ghana", 33, 0, 195 },
{ "Puerto Rico", 33, 0, 195 },
{ "Thailand", 33, 0, 195 },
{ "Greece", 36, 0, 188 },
{ "Burkina Faso", 37, 0, 128 },
{ "Philippines", 37, 0, 128 },
{ "Switzerland", 39, 0, 96 },
{ "Guatemala", 40, 0, 60 },
{ "Pakistan", 40, 0, 60 },
{ "Sweden", 40, 0, 60 },
{ "Zimbabwe", 40, 0, 60 },
}
-- list of WBSC country codes
data.alias = {
{ "BLR", "Belarus" },
{ "BEL", "Belgium" },
{ "BUL", "Bulgaria" },
{ "BUR", "Burkina Faso" },
{ "TPE", "Chinese Taipei" },
{ "COL", "Colombia" },
{ "CUB", "Cuba" },
{ "CZE", "Czech Republic" },
{ "EST", "Estonia" },
{ "FRA", "France" },
{ "GER", "Germany" },
{ "GHA", "Ghana" },
{ "GRE", "Greece" },
{ "GUA", "Guatemala" },
{ "HKG", "Hong Kong" },
{ "ITA", "Italy" },
{ "ISR", "Israel" },
{ "JPN", "Japan" },
{ "KEN", "Kenya" },
{ "LAT", "Latvia" },
{ "LTU", "Lithuania" },
{ "MAS", "Malaysia" },
{ "MEX", "Mexico" },
{ "MDA", "Moldova" },
{ "NED", "Netherlands" },
{ "PAK", "Pakistan" },
{ "PHI", "Philippines" },
{ "PUR", "Puerto Rico" },
{ "ROU", "Romania" },
{ "RUS", "Russia" },
{ "SGP", "Singapore" },
{ "RSA", "South Africa" },
{ "KOR", "South Korea" },
{ "SWE", "Sweden" },
{ "SUI", "Switzerland" },
{ "TAN", "Tanzania" },
{ "THA", "Thailand" },
{ "TUN", "Tunisia" },
{ "TUR", "Turkey" },
{ "UGA", "Uganda" },
{ "VEN", "Venezuela" },
{ "ZAM", "Zambia" },
{ "ZIM", "Zimbabwe" },
}
-- List of WBSC confederations
data.confederation = {
Africa = { "RSA", "TUN", "KEN", "UGA", "TAN", "ZAM", "GHA", "BUR", "ZIM"
},
Americas = { "CUB", "VEN", "MEX", "COL", "PUR", "GUA"
},
Asia = { "TPE", "JPN", "KOR", "HKG", "MAS", "SGP", "THA", "PHI", "PAK"
},
Europe = { "FRA", "LTU", "ITA", "NED", "ROU", "CZE", "BEL", "RUS", "BUL",
"TUR", "ISR", "BLR", "EST", "MDA", "LAT", "GER", "GRE", "SUI", "SWE"
},
Oceania = {
},
}
return data