local data = {}
-- information about other templates used by module
data.templates = { flagged_team_link = "bbw" }
-- general information about ranking and website being cited
data.source = {
url = "https://rankings.wbsc.org/list/baseball/women",
title = "The WBSC Women's Baseball World Ranking",
website = "WBSC",
language = "en"
}
-- date of latest update and previous one for movement
data.updated = { day = 31, month = 'December', year =2021 }
data.previous = { day = 11, month = 'August', year =2021 }
-- see "Generating code" section on doc page for how to update the rankings
data.rankings = {
{ "Japan", 1, 0, 1355 },
{ "Chinese Taipei", 2, 0, 1097 },
{ "Canada", 3, 0, 1029 },
{ "United States", 4, 0, 1015 },
{ "Venezuela", 5, 0, 900 },
{ "Dominican Republic", 6, 0, 717 },
{ "Cuba", 7, 0, 520 },
{ "Australia", 8, 0, 509 },
{ "Puerto Rico", 9, 0, 371 },
{ "South Korea", 10, 0, 364 },
{ "Hong Kong", 11, 0, 256 },
{ "Mexico", 12, 0, 160 },
{ "Netherlands", 13, 0, 155 },
{ "Philippines", 14, 0, 152 },
{ "China", 15, 0, 126 },
{ "France", 16, 0, 100 },
{ "Nicaragua", 17, 0, 59 },
{ "India", 18, 0, 47 },
{ "Pakistan", 19, 0, 21 },
{ "Czech Republic", 20, 0, 10 },
}
-- list of WBSC country codes
data.alias = {
{ "AUS", "Australia" },
{ "CAN", "Canada" },
{ "CHN", "China" },
{ "TPE", "Chinese Taipei" },
{ "CUB", "Cuba" },
{ "CZE", "Czech Republic" },
{ "DOM", "Dominican Republic" },
{ "FRA", "France" },
{ "HKG", "Hong Kong" },
{ "IND", "India" },
{ "JPN", "Japan" },
{ "MEX", "Mexico" },
{ "NED", "Netherlands" },
{ "NCA", "Nicaragua" },
{ "PAK", "Pakistan" },
{ "PHI", "Philippines" },
{ "PUR", "Puerto Rico" },
{ "KOR", "South Korea" },
{ "USA", "United States" },
{ "VEN", "Venezuela" },
}
-- List of WBSC confederations
data.confederation = {
Americas = { "CAN", "USA", "VEN", "DOM", "CUB", "PUR", "MEX", "NCA"
},
Asia = { "JPN", "TPE", "KOR", "HKG", "PHI", "CHN", "IND", "PAK"
},
Europe = { "NED", "FRA", "CZE"
},
Oceania = { "AUS"
},
}
return data