Jump to content

Module:DartsRankings/data/PDCNB Players

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by JRRobinson (talk | contribs) at 12:03, 29 November 2022. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
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 = { 
	{ "Vladimir Andersen" , "DEN" , "Vladimir" , "Andersen" , 1 },
	{ "Ulf Ceder" , "FIN" , "Ulf" , "Ceder" , 1 },
	{ "Allan Daugbjerg Olsen" , "DEN" , "Allan" , "Daugnjerg Olsen" , 0 },
	{ "Benjamin Drue Reus" , "DEN" , "Benjamin" , "Drue Reus" , 0 },
	{ "Jani Elijoki" , "FIN" , "Jani" , "Elijoki" , 0 },
	{ "Johan Engstrom" , "SWE" , "Johan" , "Engström" , 1 },
	{ "Matthias Orn Fridriksson" , "ISL" , "Matthias Örn" , "Friðriksson" , 0 },
	{ "Nauris Gleglu" , "LVA" , "Nauris" , "Gleglu" , 0 },
	{ "Teemu Harju" , "FIN" , "Teemu" , "Harju" , 0 },
	{ "Andreas Harrysson" , "SWE" , "Andreas" , "Harrysson" , 1 },
	{ "Teuvo Haverinen" , "FIN" , "Teuvo" , "Haverinen" , 1 },
	{ "Niels Heinsoe" , "DEN" , "Niels" , "Heinsøe" , 0 },
	{ "Patrick Heinsoe" , "DEN" , "Patrick" , "Heinsøe" , 0 },
	{ "Marko Kantele" , "FIN" , "Marko" , "Kantele" , 1 },
	{ "Jani Keskinarkaus" , "FIN" , "Jani" , "Keskinarkaus" , 0 },
	{ "Darius Labanauskas" , "LTU" , "Darius" , "Labanauskas" , 1 },
	{ "Michael Ladefoged" , "DEN" , "Michael" , "Ladefoged" , 0 },
	{ "Bent Lambertsen" , "DEN" , "Bent" , "Lambertsen" , 0 },
	{ "Daniel Larsson" , "SWE" , "Daniel" , "Larsson" , 1 , "darts player" },
	{ "Per Laursen" , "DEN" , "Per" , "Laursen" , 1 },
	{ "Brian Lokken" , "DEN" , "Brian" , "Løkken" , 1 },
	{ "Ulrich Meyn" , "DEN" , "Ulrich" , "Meyn" , 0 },
	{ "Janis Mustafejevs" , "LVA" , "Janis" , "Mustafejevs" , 0 },
	{ "Paavo Myller" , "FIN" , "Paavo" , "Myller" , 0 },
	{ "Ricky Nauman" , "SWE" , "Ricky" , "Nauman" , 0 },
	{ "Dennis Nilsson" , "SWE" , "Dennis" , "Nilsson" , 1 },
	{ "Henrik Primdal" , "DEN" , "Henrik" , "Primdal" , 0 },
	{ "Madars Razma" , "LVA" , "Madars" , "Razma" , 1 },
	{ "Ivan Springborg Poulsen" , "DEN" , "Ivan" , "Springborg Poulsen" , 0 },
	{ "Hannu Suominen" , "FIN" , "Hannu" , "Suominen" , 0 },
	{ "Andreas Toft Jorgensen" , "DEN" , "Andreas" , "Toft Jørgensen" , 0 },
	{ "Jyri Ussa" , "FIN" , "Jyri" , "Ussa" , 0 },
	{ "Veijo Viinikka" , "FIN" , "Veijo" , "Viinikka" , 1 },
	{ "Kim Viljanen" , "FIN" , "Kim" , "Viljanen" , 1 },
	{ "Laimis Zubavicius" , "LTU" , "Laimis" , "Zubavicius" , 0 },

}

return data