Sunday 28 March 2010
Performance rating notation on golf score cards
By fred, Sunday 28 March 2010 à 14:54 :: Golf
In this article, I describe the way I note information about my golf parties. The objective is to gather statistics about the way I play to be able to find where I need to improve my game.
The principle of the rating is to write an entry for each stroke. This allows to analyse if I have troubles with particular golf strokes.
The constraint I used to design the rating notation is to be able to use it on a normal golf card. I also plan to implement it on an electronic mean like a mobile phone or a small tablet but that will be another story.

I use 2 different notations one for the field strokes and one for green strokes.
Field strokes
Field strokes are noted using a few letters. Here is a part of a score card with field strokes (inside the blue line):

The first letter is for the location:
- departure area => D;
- fairway => F;
- rough => R;
- field bunker => C;
- green bunker => B;
- around green => A.
The middle letters are for the club type and kind of stroke. Here are the letters I use for my bag:
- driver => D;
- 3 wood => 3;
- rescue => R;
- 4 to 9;
- pitch => P;
- sandwedge 52° => 52;
- sandwedge 56° => S;
- putter outside the green => Pu.
The optional next letter is for the kind of stroke:
- fade => F;
- draw => D;
- punched => P;
- rolled => R;
- parachute => L.
The last letter is for the result:
- on target => T;
- on the right of the target => D;
- on the left of the target => G;
- short => C;
- long => L.
For the result I use a mix of french and english but you could use what you want while you do not change.
Green strokes
I put a G as the first letter to denote a green stroke. Then the number of steps to the hole and then the result letter as for field stokes.

File
I transfer the notation in files to be able to compute statistics.
Here is the file corresponding to the score card in photo:
201002270806 Golf de Saint-Quentin en Yvelines - parcours rouge 543544344344454345 DDFG RRG RPT RSRC G2D G1T DDFT F5D RPRL G5T D8R RSLC ASRT G1.5T DDDR RRT F6G RSLT G3G G1T DDDT F3G RSRT RSRT G0.1T DDDR F5R FPT APuT G0.1T D4T A52RT G0.7T DDFD RRR R9G FSPC APuG G2T DDDR R3D FSLC ASRC G2G G0.1T D7T F52RR F52RL G4G G0.2T DDFT F8T F52RT G1.5G G0.2T DRD R5D RSRT G2G G0.2T DDDT F3T RPRT G1T DDFG F3T R3R FST G6G G1T DDFT RRR A52RT G0.5T D6G RSLC RSRT G1T DDDT F52T G6D G1T DDDT F3T FSPT G6D G1T
for which I can generate these statistics:
Golf de Saint-Quentin en Yvelines - parcours rouge
27/02/2010 08:06
18 holes -> 87 (45 + 42) (+15)
6 4 4 6 5 5 3 6 6 5 5 5 4 6 4 4 4 5
1 0 1 1 1 1 0 2 2 2 1 1 0 1 0 1 0 0
20 different clubs
{'3': 6,
'4': 1,
'5': 3,
'52': 1,
'52R': 5,
'6': 2,
'7': 1,
'8': 2,
'9': 1,
'DD': 7,
'DF': 6,
'P': 2,
'PR': 2,
'Pu': 2,
'R': 5,
'S': 1,
'SL': 4,
'SP': 2,
'SR': 7,
'putt': 27}
On the field: {'C': 6, 'D': 5, 'G': 8, 'L': 2, 'R': 9, 'T': 30}
Putts: {'D': 3, 'G': 6, 'T': 18}
Mean first putt distance: 2.47
8 fairways in regulation (57.14 %)
2 greens in regulation (11.11 %)
Pars: {0: 6, 1: 9, 2: 3}
Locations: {'A': 10, 'D': 30, 'F': 28, 'R': 31}
Result by club
{'3': {'D': 1, 'G': 1, 'R': 1, 'T': 3},
'4': {'T': 1},
'5': {'D': 2, 'R': 1},
'52': {'T': 1},
'52R': {'L': 1, 'R': 1, 'T': 3},
'6': {'G': 2},
'7': {'T': 1},
'8': {'R': 1, 'T': 1},
'9': {'G': 1},
'DD': {'R': 3, 'T': 4},
'DF': {'D': 1, 'G': 2, 'T': 3},
'P': {'T': 2},
'PR': {'L': 1, 'T': 1},
'Pu': {'G': 1, 'T': 1},
'R': {'D': 1, 'G': 1, 'R': 2, 'T': 1},
'S': {'T': 1},
'SL': {'C': 3, 'T': 1},
'SP': {'C': 1, 'T': 1},
'SR': {'C': 2, 'T': 5},
'putt': {'D': 3, 'G': 6, 'T': 18}}
Mean strokes by type of hole
par 3: 4.000000 on 4 holes
par 4: 4.800000 on 10 holes
par 5: 5.750000 on 4 holes

