Module:DartsRankings/data/WDF Rankings
Appearance
local data = {}
-- information about other templates used by module
data.templates = { flagged_team_link = "WDF Rankings" }
-- general information about ranking and website being cited
data.source = {
url = "https://www.dartswdf.com/tables/wdf-mens-rankings/",
title = "WDF Men's Rankings Table",
website = "WDF"
}
-- table titles
data.labels = { title = "WDF Men's World Rankings" }
-- date of latest update and previous one for movement
data.updated = { day = 6, month = 'October', year =2022 }
data.previous = { day = 5, month = 'September', year =2022 }
-- see "Generating code" section on doc page for how to update the rankings
-- { "Name" , rank , points },
data.rankings = {
{ "James Hurrell" , 1 , "673" },
{ "Neil Duff" , 2 , "631" },
{ "Luke Littler" , 3 , "599" },
{ "Haupai Puha" , 4 , "559" },
{ "Jelle Klaasen" , 5 , "545" },
{ "Mark Barilli" , 6 , "491" },
{ "Andy Baetens" , 7 , "482" },
{ "Chris Landman" , 8 , "441" },
{ "Raymond Smith" , 9 , "394" },
{ "Ben Robb" , 10 , "394" },
{ "James Richardson" , 11 , "390" },
{ "Richard Veenstra" , 12 , "374" },
{ "Darren Johnson" , 13 , "373" },
{ "Dave Prins" , 14 , "357" },
{ "Danny Lauby" , 15 , "347" },
{ "Jamie Lewis" , 16 , "347" },
{ "Peter Machin" , 17 , "340" },
{ "Alexander Merkx" , 18 , "330" },
{ "Moreno Blom" , 19 , "328" },
{ "Martyn Turner" , 20 , "316" },
{ "Antony Allen" , 21 , "304" },
{ "Laszlo Kadar" , 22 , "303" },
{ "Shaun McDonald" , 23 , "291" },
{ "Thibault Tricole" , 24 , "285" },
{ "Scott Marsh" , 25 , "285" },
{ "Barry Copeland" , 26 , "283" },
{ "Patrik Kovacs" , 27 , "273" },
{ "Kai Fan Leung" , 28 , "270" },
{ "John Scott" , 29 , "249" },
{ "Ben Hazel" , 30 , "245" },
{ "Kevin Luke" , 31 , "243" },
{ "Leonard Gates" , 32 , "238" },
{ "David Pallett" , 33 , "236" },
{ "Johnny Tata" , 34 , "233" },
{ "Graham Hall" , 35 , "232" },
{ "Jim McEwan" , 36 , "232" },
{ "David Kirwan" , 37 , "229" },
{ "Gabor Takacs" , 38 , "227" },
{ "John Desreumaux" , 39 , "226" },
{ "Jordan Brooks" , 40 , "226" },
{ "Mike Gillet" , 41 , "223" },
{ "Nick Kenny" , 42 , "216" },
{ "Ryan Murray" , 43 , "214" },
{ "Aaron Turner" , 44 , "213" },
{ "Robert Owen" , 45 , "210" },
{ "Aaron Morrison" , 46 , "210" },
{ "Benjamin Pratnemer" , 47 , "203" },
{ "Jim Widmayer" , 48 , "198" },
{ "Reece Colley" , 49 , "189" },
{ "Sebastian Białecki" , 50 , "189" },
{ "Diogo Portela" , 51 , "188" },
{ "Dennie Olde Kalter" , 52 , "185" },
{ "Paul Lim" , 53 , "180" },
{ "Dennis Nilsson" , 54 , "176" },
{ "Greg Ritchie" , 55 , "176" },
{ "Wesley Plaisier" , 56 , "175" },
{ "Wes Newton" , 57 , "173" },
{ "Mal Cuming" , 58 , "169" },
{ "James Beeton" , 59 , "165" },
{ "Tahuna Irwin" , 60 , "159" },
{ "Paul Mitchell" , 61 , "159" },
{ "Mark Graham" , 62 , "153" },
{ "Lee Williams" , 63 , "150" },
{ "Ricky Nauman" , 64 , "142" },
}
data.rankingsold = {
{ "Neil Duff" , 1 , "777" },
{ "James Hurrell" , 2 , "711" },
{ "Luke Littler" , 3 , "655" },
{ "Thibault Tricole" , 4 , "568" },
{ "Jelle Klaasen" , 5 , "545" },
{ "Scott Marsh" , 6 , "533" },
{ "Haupai Puha" , 7 , "510" },
{ "Mark Barilli" , 8 , "476" },
{ "Raymond Smith" , 9 , "471" },
{ "Andy Baetens" , 10 , "427" },
{ "James Richardson" , 11 , "411" },
{ "Dave Prins" , 12 , "405" },
{ "Richard Veenstra" , 13 , "368" },
{ "Antony Allen" , 14 , "339" },
{ "Martyn Turner" , 15 , "337" },
{ "Leonard Gates" , 16 , "319" },
{ "Alexander Merkx" , 17 , "318" },
{ "Darren Johnson" , 18 , "317" },
{ "Danny Lauby" , 19 , "313" },
{ "Jim McEwan" , 20 , "304" },
{ "Shaun McDonald" , 21 , "295" },
{ "Patrik Kovacs" , 22 , "288" },
{ "Ben Robb" , 23 , "287" },
{ "Jordan Brooks" , 24 , "278" },
{ "Moreno Blom" , 25 , "271" },
{ "Aaron Turner" , 26 , "263" },
{ "Andreas Harrysson" , 27 , "261" },
{ "Laszlo Kadar" , 28 , "260" },
{ "Ben Hazel" , 29 , "253" },
{ "Barry Copeland" , 30 , "248" },
{ "Peter Machin" , 31 , "248" },
{ "John Scott" , 32 , "243" },
}
local datalib = require('Module:DartsRankings/data/WDF Players');
data.alias = datalib.library
return data