2005 Nationwide Tour
The 2005 Nationwide Tour season ran from January 27 to October 30. The season consisted of 31 official money golf tournaments, five of which were played outside the United States. The top 21 players on the year-end money list earned their PGA Tour card for 2006.
Schedule
The number in parentheses after winners' names show the player's total number of wins on the Nationwide Tour including that event. No one accumulates many wins on the Nationwide Tour because success at this level soon leads to promotion to the PGA Tour.
Week | Tournament | State/Country | Winner |
---|---|---|---|
Jan 27-30 | BellSouth Panama Championship | Panama | |
Feb 17-20 | Jacob's Creek Open Championship | Australia | |
Feb 24-27 | ING New Zealand PGA Championship | New Zealand | |
Mar 24-27 | Chitimacha Louisiana Open | Louisiana | |
Apr 21-24 | Virginia Beach Open | Virginia | |
Apr 29 - May 1 | BMW Charity Pro-Am at The Cliffs | South Carolina | |
May 5-8 | Rex Hospital Open | North Carolina | |
May 12-15 | Rheem Classic | Arkansas | |
May 19-22 | Henrico County Open | Virginia | |
Jun 2-5 | Chattanooga Classic | Tennessee | |
Jun 9-12 | LaSalle Bank Open | Illinois | |
Jun 16-19 | Knoxville Open | Tennessee | |
Jun 23-26 | Northeast Pennsylvania Classic | Pennsylvania | |
Jun 30 - Jul 1 | Lake Erie Charity Classic at Peek 'n Peak Resort | New York | |
Jul 7-10 | National Mining Association Pete Dye Classic | West Virginia | |
Jul 14-17 | Scholarship America Showdown | Wisconsin | |
Jul 21-24 | Canadian PGA Championship | Canada | |
Jul 28-31 | Preferred Health Systems Wichita Open | Kansas | |
Aug 4-7 | Cox Classic | Nebraska | |
Aug 11-14 | Price Cutter Charity Championship | Missouri | |
Aug 18-21 | Xerox Classic | New York | |
Aug 25-28 | Cleveland Open | Ohio | |
Sep 1-4 | Alberta Classic | Canada | |
Sep 8-11 | Envirocare Utah Classic | Utah | |
Sep 15-18 | Mark Christopher Charity Classic | California | |
Sep 22-25 | Albertsons Boise Open | Idaho | |
Sep 30 - Oct 2 | Oregon Classic | Oregon | |
Oct 6-9 | Gila River Golf Classic | Arizona | |
Oct 13-16 | Permian Basin Charity Golf Classic | Texas | |
Oct 20-23 | Miccosukee Championship | Florida | cancelled due to Hurricane Wilma |
Oct 27-30 | Nationwide Tour Championship | Alabama |
Leading money winners
Rank | Player | Country | Prize money (US$) |
---|---|---|---|
1 | Troy Matteson | 495,009 | |
2 | Jason Gore | 356,579 | |
3 | Chris Couch | 337,205 | |
4 | Steven Bowditch | 333,329 | |
5 | Jon Mills | 325,806 | |
6 | Jerry Smith | 267,757 | |
7 | David Branshaw | 266,724 | |
8 | Shane Bertsch | 263,373 | |
9 | Mathew Goggin | 260,090 | |
10 | Kris Cox | 257,352 |
gollark: I only need something like two routes so a full web framework is overkill.
gollark: ```nimimport optionsimport asyncdispatchimport httpximport tiny_sqliteimport macrosimport karax/[karaxdsl, vdom]import ./dbmacro includeFile(x: string): string = newStrLitNode(readFile(x.strVal))const css = includeFile("./src/style.css")let database = openDatabase("./monitoring.sqlite3")migrate(database)var threadDB {.threadvar.}: Option[DbConn]proc openDB(): DbConn = if isNone threadDB: threadDB = some openDatabase("./monitoring.sqlite3") get threadDBproc mainPage(): string = let vnode = buildHtml(html()): head: style: text css text "Bee deployed" $vnodeproc onRequest(req: Request) {.async.} = if req.httpMethod == some(HttpGet): case req.path.get() of "/": req.send(body=mainPage(), code=Http200, headers="Content-Type: text/html") else: req.send(Http404) else: req.send(Http404)echo "Starting up"run(onRequest, initSettings(Port(7800), "", 0))```This is what I have so far.
gollark: One per thread is likely sort of better ish slightly anyway.
gollark: Nope, this is probably fine.
gollark: I have a threadvar for each thread's DB connection and a function to get it.
See also
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.