模組:SportsRankings/data/WBSC Baseball5 World Rankings
外观
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 = 31, month = '12', year =2024 }
data.previous = { day = 16, month = '10', year =2024 }
-- see "Generating code" section on doc page for how to update the rankings
data.rankings = {
{ "Cuba", 1, 0, 4327 },
{ "Chinese Taipei", 2, 0, 4113 },
{ "France", 3, 1, 3829 },
{ "Japan", 4, -1, 3424 },
{ "Tunisia", 5, 0, 3186 },
{ "Mexico", 6, 0, 2605 },
{ "Lithuania", 7, 3, 2433 },
{ "South Africa", 8, -1, 2187 },
{ "Venezuela", 9, -1, 2032 },
{ "China", 10, -1, 1891 },
{ "South Korea", 11, 0, 1811 },
{ "Turkey", 12, 1, 1607 },
{ "Ghana", 13, -1, 1250 },
{ "Hong Kong", 14, 0, 1094 },
{ "Kenya", 15, 0, 1063 },
{ "Italy", 16, 4, 1061 },
{ "Malaysia", 17, -1, 1056 },
{ "Netherlands", 18, 0, 1037 },
{ "Belgium", 19, 0, 998 },
{ "Spain", 20, 5, 909 },
{ "Zambia", 21, -4, 798 },
{ "Romania", 22, 1, 760 },
{ "Czech Republic", 23, -2, 681 },
{ "Tanzania", 24, -2, 624 },
{ "Singapore", 25, -1, 525 },
{ "Bulgaria", 25, 3, 525 },
{ "Finland", 27, 2, 493 },
{ "Thailand", 28, -2, 486 },
{ "Germany", 29, 2, 461 },
{ "Uganda", 30, -3, 428 },
{ "Burkina Faso", 31, -1, 307 },
{ "Moldova", 32, 2, 240 },
{ "Australia", 33, -1, 210 },
{ "Cape Verde", 34, -1, 192 },
{ "Greece", 35, 0, 188 },
{ "Latvia", 36, 0, 179 },
{ "Estonia", 37, 0, 150 },
{ "Nigeria", 38, 0, 130 },
{ "Philippines", 39, 0, 128 },
{ "Zimbabwe", 40, 0, 88 },
{ "Poland", 40, 0, 88 },
{ "Benin", 42, -1, 63 },
{ "Pakistan", 43, -1, 60 },
{ "Israel", 44, -1, 50 },
{ "India", 44, -1, 50 },
{ "Puerto Rico", 46, -1, 48 },
{ "Bolivia", 47, -1, 17 },
{ "Lesotho", 48, -1, 16 },
{ "Jamaica", 49, -1, 9 },
{ "Togo", 50, -1, 6 },
{ "Botswana", 51, -1, 4 },
{ "Peru", 52, -1, 3 },
{ "Saudi Arabia", 52, -1, 3 }
}
-- list of WBSC country codes
data.alias = {
{ "AUS", "Australia" },
{ "BLR", "Belarus" },
{ "BEL", "Belgium" },
{ "BEN", "Benin" },
{ "BOL", "Bolivia" },
{ "BOT", "Botswana"},
{ "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" },
{ "LES", "Lesotho" },
{ "LTU", "Lithuania" },
{ "MAS", "Malaysia" },
{ "MEX", "Mexico" },
{ "MDA", "Moldova" },
{ "NED", "Netherlands" },
{ "NGR", "Nigeria" },
{ "PAK", "Pakistan" },
{ "PER", "Peru" },
{ "PHI", "Philippines" },
{ "POL", "Poland"},
{ "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", "BOT", "LES"
},
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",
"POL"
},
Oceania = { "AUS"
},
}
return data