Module:DartsRankings/data/PDCNB Players
Appearance
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 },
{ "Mindaugas Barauskas" , "LTU" , "Mindaugas" , "Barauskas" , 0 },
{ "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 },
{ "Raino Hasu" , "FIN" , "Raino" , "Hasu" , 0 },
{ "Teuvo Haverinen" , "FIN" , "Teuvo" , "Haverinen" , 1 },
{ "Soren Hedegaard" , "DEN" , "Søren" , "Hedegaard" , 0 },
{ "Niels Heinsoe" , "DEN" , "Niels" , "Heinsøe" , 0 },
{ "Patrick Heinsoe" , "DEN" , "Patrick" , "Heinsøe" , 0 },
{ "Pasi Hyttinen" , "FIN" , "Pasi" , "Hyttinen" , 0 },
{ "Rene Johansen" , "DEN" , "Rene" , "Johansen" , 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 },
{ "Roland Lenngren" , "SWE" , "Roland" , "Lenngren" , 0 },
{ "Brian Lokken" , "DEN" , "Brian" , "Løkken" , 1 },
{ "Oskar Lukasiak" , "SWE" , "Oskar" , "Lukasiak" , 1 },
{ "Steen Lysen" , "DEN" , "Steen" , "Lysen" , 0 },
{ "Ulrich Meyn" , "DEN" , "Ulrich" , "Meyn" , 0 },
{ "Kristaps Mickus" , "LVA" , "Kristaps" , "Mickus" , 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 },
{ "Asko Niskala" , "FIN" , "Asko" , "Niskala" , 0 },
{ "Ville Petajamaki" , "FIN" , "Ville" , "Petäjämäki" , 0 },
{ "Henrik Primdal" , "DEN" , "Henrik" , "Primdal" , 0 },
{ "Madars Razma" , "LVA" , "Madars" , "Razma" , 1 },
{ "Ivan Springborg" , "DEN" , "Ivan" , "Springborg Poulsen" , 0 },
{ "Ivan Springborg Poulsen" , "DEN" , "Ivan" , "Springborg Poulsen" , 0 },
{ "Hannu Suominen" , "FIN" , "Hannu" , "Suominen" , 0 },
{ "Andreas Toft Jorgensen" , "DEN" , "Andreas" , "Toft Jørgensen" , 0 },
{ "Edwin Torbjornsson" , "SWE" , "Edwin" , "Torbjörnsson" , 0 },
{ "Jyri Ussa" , "FIN" , "Jyri" , "Ussa" , 0 },
{ "Veijo Viinikka" , "FIN" , "Veijo" , "Viinikka" , 1 },
{ "Kim Viljanen" , "FIN" , "Kim" , "Viljanen" , 1 },
{ "Mika Wennersten" , "SWE" , "Mika" , "Wennersten" , 0 },
{ "Laimis Zubavicius" , "LTU" , "Laimis" , "Zubavicius" , 0 },
}
return data