Module:SportsRankings/data/WBSC Women's Baseball World Rankings

From Wikipedia, the free encyclopedia
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"
}

-- date of latest update and previous one for movement
data.updated  = { 	day = 22, 	month = 'September',  year =2023 }
data.previous = { 	day = 31, 	month = 'December',  year =2021 }

-- see "Generating code" section on doc page for how to update the rankings

data.rankings = {
          { "Japan", 1, 0, 970 },
          { "Chinese Taipei", 2, 0, 841 },
          { "Venezuela", 3, 2, 581 },
          { "United States", 4, 0, 510 },
          { "Mexico", 5, 7, 496 },
          { "Puerto Rico", 6, 3, 490 },
          { "Hong Kong", 7, 4, 451 },
          { "Canada", 8, -5, 428 },
          { "South Korea", 9, 1, 413 },
          { "Cuba", 10, -3, 350 },
          { "Philippines", 11, 3, 324 },
          { "China", 12, 3, 277 },
          { "Australia", 13, -5, 264 },
          { "France", 14, 2, 180 },
          { "India", 15, 3, 177 },
          { "Pakistan", 16, 3, 115 },
          { "Indonesia", 17, 0, 109 },
          { "Dominican Republic", 18, -12, 72 },
          { "Thailand", 19, 0, 68 },
          { "Czech Republic", 20, 0, 56 },
          { "Malaysia", 21, 0, 47 },
          { "Sri Lanka", 21, 0, 47 },
          { "Netherlands", 23, -10, 32 },
          { "Nicargaua", 24, -7, 24 },
          { "Great Britain", 25, 0, 8 },
          }

-- 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" },
	    { "GBR",  "Great Britain" },
	    { "HKG",  "Hong Kong" },
	    { "IND",  "India" },
	    { "INA",  "Indonesia" },
	    { "JPN",  "Japan" },
	    { "MAS",  "Malaysia" },
	    { "MEX",  "Mexico" },
	    { "NED",  "Netherlands" },
	    { "NCA",  "Nicaragua" },
	    { "PAK",  "Pakistan" },
	    { "PHI",  "Philippines" },
	    { "PUR",  "Puerto Rico" },
	    { "SRI",  "Sri Lanka" },
	    { "KOR",  "South Korea" },
	    { "THA",  "Thailand" },
	    { "USA",  "United States" },
	    { "VEN",  "Venezuela" },
}
-- List of WBSC confederations
data.confederation = { 
	Americas = { "VEN", "USA", "MEX", "PUR", "CAN", "CUB", "DOM", "NCA"
	},
    Asia = { "JPN", "TPE", "HKG", "KOR", "PHI", "CHN", "IND", "PAK", "INA", 
    	"THA", "MAS", "SRI"
	},
    Europe = { "FRA", "CZE", "NED", "GBR"
	},
    Oceania = { "AUS"
	},
}
    	                          
return data