Jump to content

Module:DartsRankings/data/CDC Rankings

From Wikipedia, the free encyclopedia
local data = {}

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

-- general information about ranking and website being cited
data.source = {
    url = "https://champdarts.com/main-tour/order-of-merit/", 
	title = "CDC Order of Merit",
	website = "CDC"
}

-- table titles
data.labels = { title = "CDC Rankings" }


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

-- see "Generating code" section on doc page for how to update the rankings
-- { "Name" , rank , "points" },
data.rankings = {
	{ "Darin Young" , 1 , "189" },
	{ "Matt Campbell" , 2 , "146" },
	{ "Danny Lauby" , 3 , "144" },
	{ "Chuck Puleo" , 4 , "127" },
	{ "Jim Long" , 5 , "120" },
	{ "Gary Mawson" , 6 , "97" },
	{ "Leonard Gates" , 7 , "94" },
	{ "Nick Linberg" , 8 , "89" },
	{ "Joe Huffman" , 9 , "77" },
	{ "Jeff Smith" , 10 , "71" },
	{ "David Fatum" , 11 , "68" },
	{ "Timmy Nicoll" , 12 , "68" },
	{ "Larry Butler" , 13 , "66" },
	{ "Jeremiah Millar" , 14 , "61" },
	{ "Chris White" , 15 , "56" },
	{ "John Part" , 16 , "53" },
	{ "Kiley Edmunds" , 17 , "53" },
	{ "Dave Richardson" , 18 , "52" },
	{ "Shawn Brenneman" , 19 , "49" },
	{ "Dan Lauby, Sr." , 20 , "46" },
	{ "Ross Snook" , 21 , "45" },
	{ "Joey Beecroft" , 22 , "43" },
	{ "Gino Florian" , 23 , "43" },
	{ "John Steinhofer" , 24 , "38" },
	{ "David Cameron" , 25 , "37" },
	{ "Joe Chaney" , 26 , "36" },
	{ "DJ Sayre" , 27 , "34" },
	{ "Jim Widmayer" , 28 , "32" },
	{ "Trevor Buboltz" , 29 , "30" },
	{ "Robbie Modra" , 30 , "29" },
	{ "Jacob Taylor" , 31 , "28" },
	{ "Michael Burns" , 32 , "28" },
}

data.rankingsold = {
	{ "Darin Young" , 1 , "189" },
	{ "Matt Campbell" , 2 , "146" },
	{ "Danny Lauby" , 3 , "144" },
	{ "Chuck Puleo" , 4 , "127" },
	{ "Jim Long" , 5 , "120" },
	{ "Gary Mawson" , 6 , "97" },
	{ "Leonard Gates" , 7 , "94" },
	{ "Nick Linberg" , 8 , "89" },
	{ "Joe Huffman" , 9 , "77" },
	{ "Jeff Smith" , 10 , "71" },
	{ "David Fatum" , 11 , "68" },
	{ "Timmy Nicoll" , 12 , "68" },
	{ "Larry Butler" , 13 , "66" },
	{ "Jeremiah Millar" , 14 , "61" },
	{ "Chris White" , 15 , "56" },
	{ "John Part" , 16 , "53" },
	{ "Kiley Edmunds" , 17 , "53" },
	{ "Dave Richardson" , 18 , "52" },
	{ "Shawn Brenneman" , 19 , "49" },
	{ "Dan Lauby, Sr." , 20 , "46" },
	{ "Ross Snook" , 21 , "45" },
	{ "Joey Beecroft" , 22 , "43" },
	{ "Gino Florian" , 23 , "43" },
	{ "John Steinhofer" , 24 , "38" },
	{ "David Cameron" , 25 , "37" },
	{ "Joe Chaney" , 26 , "36" },
	{ "DJ Sayre" , 27 , "34" },
	{ "Jim Widmayer" , 28 , "32" },
	{ "Trevor Buboltz" , 29 , "30" },
	{ "Robbie Modra" , 30 , "29" },
	{ "Jacob Taylor" , 31 , "28" },
	{ "Michael Burns" , 32 , "28" },
}

local datalib = require('Module:DartsRankings/data/CDC Players');
data.alias = datalib.library

return data