跳转到内容

模組:SportsRankings/data/WBSC Women's Baseball World Rankings

维基百科,自由的百科全书
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 = 31, 	month = '12',  year =2024 }
data.previous = { 	day = 6, 	month = '8',  year =2024 }

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

data.rankings = {
    { "Japan", 1, 0, 1405 },
    { "United States", 2, 0, 918 },
    { "Canada", 3, 0, 755 },
    { "Venezuela", 4, 0, 745 },
    { "Chinese Taipei", 5, 0, 744 },
    { "Mexico", 6, 0, 741 },
    { "Puerto Rico", 7, 0, 490 },
    { "Hong Kong", 8, 0, 377 },
    { "Cuba", 9, 0, 350 },
    { "South Korea", 10, 0, 313 },
    { "Australia", 11, 0, 264 },
    { "France", 12, 0, 180 },
    { "Philippines", 13, 0, 172 },
    { "China", 14, 0, 151 },
    { "India", 15, 0, 130 },
    { "Indonesia", 16, 0, 109 },
    { "Pakistan", 17, 0, 94 },
    { "Dominican Republic", 18, 0, 72 },
    { "Thailand", 19, 0, 68 },
    { "Czech Republic", 20, 0, 56 },
    { "Malaysia", 21, 0, 47 },
    { "Sri Lanka", 21, 0, 47 },
    { "Netherlands", 23, 0, 32 },
    { "Nicaragua", 24, 0, 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