跳转到内容

模組:SportsRankings/data/WBSC Men's Softball World Rankings

维基百科,自由的百科全书
local data = {}

-- information about other templates used by module
data.templates = { flagged_team_link = "sb" }

-- general information about ranking and website being cited
data.source = {
    url = "https://rankings.wbsc.org/list/softball/men", 
	title = "The WBSC Men's Softball World Ranking",
	website = "WBSC"
}

-- date of latest update and previous one for movement
data.updated  = { 	day = 31, 	month = '12',  year =2024 }
data.previous = { 	day = 25, 	month = '9',  year =2024 }

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

data.rankings = {
    { "Argentina", 1, 0, 4224 },
    { "Australia", 2, 0, 4118 },
    { "Japan", 3, 0, 3901 },
    { "Canada", 4, 0, 3897 },
    { "Venezuela", 5, 0, 3533 },
    { "United States", 6, 0, 3399 },
    { "Czech Republic", 7, 0, 3094 },
    { "New Zealand", 8, 0, 2648 },
    { "Mexico", 9, 0, 2601 },
    { "Cuba", 10, 0, 2450 },
    { "Dominican Republic", 11, 0, 2230 },
    { "Guatemala", 12, 0, 2132 },
    { "Singapore", 13, 0, 2115 },
    { "Colombia", 14, 0, 1900 },
    { "Denmark", 15, 0, 1805 },
    { "Philippines", 16, 0, 1793 },
    { "Israel", 17, 0, 1779 },
    { "South Africa", 18, 0, 1750 },
    { "Netherlands", 19, 0, 1587 },
    { "Hong Kong", 20, 0, 1508 },
    { "Croatia", 21, 0, 1450 },
    { "Chinese Taipei", 22, 0, 1389 },
    { "France", 22, 0, 1389 },
    { "Belgium", 24, 0, 1326 },
    { "Great Britain", 25, 0, 1274 },
    { "India", 26, 0, 1250 },
    { "Slovakia", 27, 0, 1237 },
    { "Panama", 28, 0, 1232 },
    { "Honduras", 29, 0, 1193 },
    { "Spain", 30, 0, 1185 },
    { "Sweden", 31, 0, 1163 },
    { "Botswana", 32, 0, 1149 },
    { "Costa Rica", 33, 0, 1138 },
    { "Germany", 34, 0, 1137 },
    { "Puerto Rico", 35, 0, 1128 },
    { "Thailand", 36, 0, 1124 },
    { "Lithuania", 37, 0, 1107 },
    { "Nicaragua", 38, 0, 1106 },
    { "Peru", 39, 0, 1105 },
    { "El Salvador", 40, 0, 1103 },
    { "Kenya", 41, 0, 1093 },
    { "American Samoa", 42, 0, 1092 },
    { "Lesotho", 43, 0, 1089 },
    { "Uganda", 44, 0, 1086 },
    { "Belize", 44, 0, 1086 }
}

-- list of WBSC country codes
data.alias = { 
	    { "ARG",  "Argentina" },
	    { "ASA",  "American Samoa" },
	    { "AUS",  "Australia" },
        { "BIZ",  "Belize" },
        { "BOT",  "Botswana" },
        { "CAN",  "Canada" },
        { "COL",  "Colombia" },
        { "CRO",  "Croatia" },
        { "CUB",  "Cuba" },
        { "CSC",  "Costa Rica"},
        { "CZE",  "Czech Republic" },
        { "DEN",  "Denmark" },
        { "DOM",  "Dominican Republic" },
        { "ESA",  "El Salvador" },
        { "ESP",  "Spain" },
        { "FRA",  "France" },
        { "GBR",  "Great Britain" },
        { "GER",  "Germany"},
        { "GUA",  "Guatemala" },
        { "HKG",  "Hong Kong" },
        { "HON",  "Honduras" },
        { "INA",  "Indonesia" },
        { "IND",  "India" },
        { "ISR",  "Israel" },
        { "JPN",  "Japan" },
        { "KEN",  "Kenya" },
        { "LES",  "Lesotho" },
        { "LTU",  "Lithuania" },
        { "MAS",  "Malaysia" },
        { "MEX",  "Mexico" },
        { "NCA",  "Nicaragua" },
        { "NED",  "Netherlands" },
        { "NZL",  "New Zealand" },
        { "PAN",  "Panama" },
        { "PER",  "Peru" },
        { "PHI",  "Philippines" },
        { "PUR",  "Puerto Rico" },
        { "RSA",  "South Africa" },
        { "SGP",  "Singapore" },
        { "SVK",  "Slovakia" },
        { "SWE",  "Sweden" },
        { "THA",  "Thailand" },
        { "TPE",  "Chinese Taipei" },
        { "UGA",  "Uganda" },
        { "USA",  "United States" },
        { "VEN",  "Venezuela" },
}
-- List of WBSC confederations
data.confederation = { 
	Africa = { "RSA", "BOT", "KEN", "UGA"
	},
	Americas = { "ARG", "CAN", "USA", "VEN", "CUB", "MEX", "GUA", "DOM",
		"COL", "PAN", "PER", "PUR", "BIZ", "HON", "CRC", "NCA", "ESA"
	},
	Asia = { "JPN", "SGP", "PHI", "TPE", "IND", "HKG", "THA", "INA", "MAS"
	},	
	Europe = { "CZE", "DEN", "NED", "ISR", "CRO", "FRA", "SVK", "SWE", "GBR", 
		"LTU", "ESP", "GER"
	},	
	Oceania = { "AUS", "NZL", "ASA"
	},	
}
    	                          
return data