跳转到内容

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

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

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

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

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

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

data.rankings = {
    { "United States", 1, 0, 5106 },
    { "Japan", 2, 0, 3965 },
    { "Puerto Rico", 3, 0, 3474 },
    { "Chinese Taipei", 4, 0, 2800 },
    { "Netherlands", 5, 0, 2745 },
    { "Canada", 6, 0, 2685 },
    { "Italy", 7, 0, 2505 },
    { "Czech Republic", 8, 0, 2174 },
    { "Mexico", 9, 0, 2027 },
    { "Australia", 10, 0, 1791 },
    { "Great Britain", 11, 0, 1535 },
    { "China", 12, 0, 1420 },
    { "Spain", 13, 0, 1401 },
    { "Israel", 14, 0, 1046 },
    { "Germany", 15, 0, 1025 },
    { "Peru", 16, 3, 994 },
    { "Cuba", 17, -1, 972 },
    { "France", 18, -1, 968 },
    { "Philippines", 19, -1, 965 },
    { "Venezuela", 20, 0, 936 },
    { "Ukraine", 21, 0, 768 },
    { "Greece", 22, 0, 723 },
    { "Austria", 23, 0, 665 },
    { "Ireland", 24, 0, 664 },
    { "Poland", 25, 0, 648 },
    { "Croatia", 26, 0, 624 },
    { "Brazil", 27, 0, 615 },
    { "Slovakia", 28, 0, 552 },
    { "Belgium", 29, 0, 503 },
    { "New Zealand", 30, 0, 399 },
    { "Colombia", 31, 3, 383 },
    { "Argentina", 32, -1, 372 },
    { "Switzerland", 33, -1, 371 },
    { "Denmark", 34, -1, 343 },
    { "Dominican Republic", 35, 0, 341 },
    { "South Korea", 36, 0, 264 },
    { "Guatemala", 37, 2, 262 },
    { "Sweden", 38, -1, 259 },
    { "Singapore", 39, -1, 248 },
    { "Hong Kong", 40, 0, 227 },
    { "South Africa", 41, 0, 200 },
    { "Malta", 42, 0, 199 },
    { "Russia", 43, 0, 185 },
    { "Botswana", 44, 0, 176 },
    { "Finland", 45, 0, 153 },
    { "Bulgaria", 46, 0, 150 },
    { "El Salvador", 47, 0, 139 },
    { "Hungary", 48, 0, 122 },
    { "Curaçao", 49, 0, 85 },
    { "Nicaragua", 50, 0, 71 },
    { "Turkey", 51, 0, 70 },
    { "Thailand", 52, 0, 67 },
    { "Chile", 52, 0, 67 },
    { "Lithuania", 54, 0, 57 },
    { "India", 55, 0, 45 },
    { "Costa Rica", 56, 0, 42 },
    { "Kenya", 57, 0, 32 },
    { "US Virgin Islands", 58, 1, 22 },
    { "Panama", 59, -1, 20 },
    { "Bolivia", 60, 1, 17 },
    { "Ecuador", 61, -2, 16 },
    { "Lesotho", 62, -1, 8 },
    { "Aruba", 63, 0, 6 },
    { "American Samoa", 64, 0, 5 },
    { "British Virgin Islands", 65, 0, 2 }
}

-- list of WBSC country codes
data.alias = { 
	    { "ARG",  "Argentina" },
	    { "ARU",  "Aruba" },
	    { "ASA",  "American Samoa" },
	    { "AUS",  "Australia" },
	    { "AUT",  "Austria" },
	    { "BAH",  "Bahamas" },
	    { "BEL",  "Belgium" },
        { "BIZ",  "Belize" },
        { "BOT",  "Botswana" },
        { "BRA",  "Brazil" },
        { "BUL",  "Bulgaria" },
        { "CAN",  "Canada" },
        { "CHI",  "Chile" },
        { "CHN",  "China" },
        { "COL",  "Colombia" },
        { "CRC",  "Costa Rica" },
        { "CRO",  "Croatia" },
        { "CUB",  "Cuba" },
        { "CUW",  "Curaçao" },
        { "CZE",  "Czech Republic" },
        { "DEN",  "Denmark" },
        { "DOM",  "Dominican Republic" },
        { "ECU",  "Ecuador" },
        { "ESA",  "El Salvador" },
        { "ESP",  "Spain" },
        { "FIN",  "Finland" },
        { "FRA",  "France" },
        { "GBR",  "Great Britain" },
        { "GER",  "Germany" },
        { "GRE",  "Greece" },
        { "GUA",  "Guatemala" },
        { "HKG",  "Hong Kong" },
        { "HUN",  "Hungary" },
        { "INA",  "Indonesia" },
        { "IND",  "India" },
        { "IRL",  "Ireland" },
        { "ISR",  "Israel" },
        { "ISV",  "US Virgin Islands" },
        { "ITA",  "Italy" },
        { "IVB",  "British Virgin Islands" },
        { "JPN",  "Japan" },
        { "KEN",  "Kenya" },
        { "KOR",  "South Korea" },
        { "LES",  "Lesotho" },
        { "LTU",  "Lithuania" },
        { "MAS",  "Malaysia" },
        { "MEX",  "Mexico" },
        { "MLT",  "Malta" },
        { "NCA",  "Nicaragua" },
        { "NED",  "Netherlands" },
        { "NZL",  "New Zealand" },
        { "PAN",  "Panama" },
        { "PER",  "Peru" },
        { "PHI",  "Philippines" },
        { "POL",  "Poland" },
        { "PUR",  "Puerto Rico" },
        { "RSA",  "South Africa" },
        { "RUS",  "Russia" },
        { "SGP",  "Singapore" },
        { "SUI",  "Switzerland" },
        { "SVK",  "Slovakia" },
        { "SWE",  "Sweden" },
        { "THA",  "Thailand" },
        { "TPE",  "Chinese Taipei" },
        { "TUR",  "Turkey" },
        { "UGA",  "Uganda" },
        { "UKR",  "Ukraine" },
        { "USA",  "United States" },
        { "VEN",  "Venezuela" },
}
-- List of WBSC confederations
data.confederation = { 
	Africa = { "RSA", "BOT", "KEN", "LES", "UGA"
	},
	Americas = { "USA", "PUR", "CAN", "MEX", "CUB", "PER", "VEN", "BRA", "ARG",
		"GUA", "DOM", "ESA", "COL", "CUW", "NCA", "CHI", "CRC", "ECU", "ARU", 
		"ISV", "IVB"
	},
	Asia = { "JPN", "TPE", "PHI", "CHN", "KOR", "SGP", "HKG", "THA", "IND",
		"INA", "MAS"
	},
	Europe = { "ITA", "NED", "CZE", "ESP", "GBR", "ISR", "GER", "FRA", "IRL", 
		"POL", "CRO", "UKR", "AUT", "SVK", "GRE", "DEN", "BEL", "RUS", "SUI", 
		"MLT", "FIN", "HUN", "BUL", "LTU", "TUR", "SWE"
	},
	Oceania = { "AUS", "NZL", "ASA"
	},
}
    	                          
return data