Jump to content

Module:DartsRankings/data/PDCNB Players

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by DLManiac (talk | contribs) at 19:41, 11 September 2021 (Created page with 'local data = {} -- list of currently ranked PDC playesr by last name with: -- { "Name" , "Country" , "First" , "Last" , "disambiguation" }, -- Name in first entry should match PDC NB listing (case insensitive) -- 2nd entry is the 3 letter country code for the player -- 3rd entry should be the first name (for sorting purposes) of the wikipedia page -- 4th entry should be the last name (for sorting purposes) of the wikipedia page -- 5th entry iundicates if...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
local data = {}


-- list of currently ranked PDC playesr by last name with:
-- { "Name" , "Country" , "First" , "Last" , "disambiguation" },
-- Name in first entry should match PDC NB listing (case insensitive)
-- 2nd entry is the 3 letter country code for the player
-- 3rd entry should be the first name (for sorting purposes) of the wikipedia page
-- 4th entry should be the last name (for sorting purposes) of the wikipedia page
-- 5th entry iundicates if the page exists (to reduce redlinks)
--[[6th entry is optional, and is the disambiguator for page (for Template:Sortname) ]]--
data.library = { 
	{ "Johan Engstrom" , "SWE" , "Johan" , "Engström" , 0 },
	{ "Niels Heinsoe" , "DEN" , "Niels" , "Heinsøe" , 1 },
	{ "Marko Kantele" , "FIN" , "Marko" , "Kantele" , 1 },
	{ "Darius Labanauskas" , "LTU" , "Darius" , "Labanauskas" , 1 },
	{ "Daniel Larsson" , "SWE" , "Daniel" , "Larsson" , 1 , "darts player" },
	{ "Per Laursen" , "DEN" , "Per" , "Laursen" , 1 },
	{ "Madars Razma" , "LVA" , "Madars" , "Razma" , 1 },
	{ "Andreas Toft Jorgensen" , "DEN" , "Andreas Toft" , "Jørgensen" , 0 },
	{ "Ivan Springborg" , "DEN" , "Ivan" , "Springborg" , 0 },

}

return data