Last change
on this file since 268 was
268,
checked in by David Sheldon, 14 years ago
|
Postcodeine code from Mr Lightfoot. Minor modifications.
|
File size:
3.9 KB
|
Line | |
---|
1 | /* |
---|
2 | * zones.c: |
---|
3 | * List of postcode zones. |
---|
4 | * |
---|
5 | * From http://www.direct-marketing-lists.co.uk/postcode_map.htm |
---|
6 | * |
---|
7 | */ |
---|
8 | |
---|
9 | static const char rcsid[] = "$Id: zones.c,v 1.1 2006/01/19 11:39:37 chris Exp chris $"; |
---|
10 | |
---|
11 | #include <stdlib.h> /* for NULL! */ |
---|
12 | |
---|
13 | #include "postcodeine.h" |
---|
14 | |
---|
15 | struct postcodezone zones[] = { |
---|
16 | { "AB", "Aberdeen" }, |
---|
17 | { "AL", "St. Albans" }, |
---|
18 | { "B", "Birmingham" }, |
---|
19 | { "BA", "Bath" }, |
---|
20 | { "BB", "Blackburn" }, |
---|
21 | { "BD", "Blandford" }, |
---|
22 | { "BH", "Bournmouth" }, |
---|
23 | { "BL", "Bolton" }, |
---|
24 | { "BN", "Brighton" }, |
---|
25 | { "BR", "Bromley" }, |
---|
26 | { "BS", "Bristol" }, |
---|
27 | { "BT", "Belfast" }, |
---|
28 | { "CA", "Carlisle" }, |
---|
29 | { "CB", "Cambridge" }, |
---|
30 | { "CF", "Cardiff" }, |
---|
31 | { "CH", "Chester" }, |
---|
32 | { "CM", "Chelmsford" }, |
---|
33 | { "CO", "Colchester" }, |
---|
34 | { "CR", "Croydon" }, |
---|
35 | { "CT", "Canterbury" }, |
---|
36 | { "CV", "Coventry" }, |
---|
37 | { "CW", "Crewe" }, |
---|
38 | { "DA", "Dartford" }, |
---|
39 | { "DD", "Dundee" }, |
---|
40 | { "DE", "Derby" }, |
---|
41 | { "DG", "Dumfries" }, |
---|
42 | { "DH", "Durham" }, |
---|
43 | { "DL", "Darlington" }, |
---|
44 | { "DN", "Doncaster" }, |
---|
45 | { "DT", "Dorchester" }, |
---|
46 | { "DY", "Dudley" }, |
---|
47 | { "E", "London E" }, |
---|
48 | { "EC", "London EC" }, |
---|
49 | { "EH", "Edinburgh" }, |
---|
50 | { "EN", "Enfield" }, |
---|
51 | { "EX", "Exeter" }, |
---|
52 | { "FK", "Falkirk" }, |
---|
53 | { "FY", "Blackpool" }, |
---|
54 | { "G", "Glasgow" }, |
---|
55 | { "GL", "Gloucester" }, |
---|
56 | { "GU", "Guilford" }, |
---|
57 | { "HA", "Harlow" }, |
---|
58 | { "HD", "Hudersfield" }, |
---|
59 | { "HG", "Harrogate" }, |
---|
60 | { "HP", "Hemel Hempstead" }, |
---|
61 | { "HR", "Hereford" }, |
---|
62 | { "HU", "Hull" }, |
---|
63 | { "HX", "Halifax" }, |
---|
64 | { "IG", "Ilford" }, |
---|
65 | { "IP", "Ipswich" }, |
---|
66 | { "IV", "Inverness" }, |
---|
67 | { "KA", "Kilmarnock" }, |
---|
68 | { "KT", "Kingston upon Thames" }, |
---|
69 | { "KW", "Kirkwall" }, |
---|
70 | { "KY", "Kirkaldy" }, |
---|
71 | { "L", "Liverpool" }, |
---|
72 | { "LA", "Lancashire" }, |
---|
73 | { "LD", "Llandrindod" }, |
---|
74 | { "LE", "Leicester" }, |
---|
75 | { "LL", "Llandudno" }, |
---|
76 | { "LN", "East Midlands" }, |
---|
77 | { "LS", "Leeds" }, |
---|
78 | { "LU", "Luton" }, |
---|
79 | { "M", "Manchester" }, |
---|
80 | { "ME", "Medway" }, |
---|
81 | { "MK", "Milton Keynes" }, |
---|
82 | { "ML", "Motherwell" }, |
---|
83 | { "N", "London N" }, |
---|
84 | { "NE", "Newcastle" }, |
---|
85 | { "NG", "Nottingham" }, |
---|
86 | { "NN", "Northampton" }, |
---|
87 | { "NP", "Newport" }, |
---|
88 | { "NR", "Norwich" }, |
---|
89 | { "NW", "London NW" }, |
---|
90 | { "OL", "Oldham" }, |
---|
91 | { "OX", "Oxford" }, |
---|
92 | { "PA", "Paisley" }, |
---|
93 | { "PE", "Peterborough" }, |
---|
94 | { "PH", "Perth" }, |
---|
95 | { "PL", "Plymouth" }, |
---|
96 | { "PO", "Portsmouth" }, |
---|
97 | { "PR", "Preston" }, |
---|
98 | { "RG", "Reading" }, |
---|
99 | { "RH", "Redhill" }, |
---|
100 | { "RM", "Romford" }, |
---|
101 | { "S", "Sheffield" }, |
---|
102 | { "SA", "Swansea" }, |
---|
103 | { "SE", "London SE" }, |
---|
104 | { "SG", "Stevenage" }, |
---|
105 | { "SK", "Stockport" }, |
---|
106 | { "SL", "Slough" }, |
---|
107 | { "SM", "Sutton" }, |
---|
108 | { "SN", "Swindon" }, |
---|
109 | { "SO", "Southampton" }, |
---|
110 | { "SP", "Salisbury" }, |
---|
111 | { "SR", "Sunderland" }, |
---|
112 | { "SS", "Southend on Sea" }, |
---|
113 | { "ST", "Stoke on Trent" }, |
---|
114 | { "SW", "London SW" }, |
---|
115 | { "SY", "Shrewsbury" }, |
---|
116 | { "TA", "Taunton" }, |
---|
117 | { "TD", "Galashiels" }, |
---|
118 | { "TF", "Telford" }, |
---|
119 | { "TN", "Tonbridge" }, |
---|
120 | { "TQ", "Torquay" }, |
---|
121 | { "TR", "Truro" }, |
---|
122 | { "TS", "Cleveland" }, |
---|
123 | { "TW", "Twickenham" }, |
---|
124 | { "UB", "Southall" }, |
---|
125 | { "W", "London W" }, |
---|
126 | { "WA", "Warrington" }, |
---|
127 | { "WC", "London WC" }, |
---|
128 | { "WD", "Watford" }, |
---|
129 | { "WF", "Wakefield" }, |
---|
130 | { "WN", "Wigan" }, |
---|
131 | { "WR", "Worcester" }, |
---|
132 | { "WS", "Walsall" }, |
---|
133 | { "WV", "Wolverhampton" }, |
---|
134 | { "YO", "York" }, |
---|
135 | { NULL, NULL } |
---|
136 | }; |
---|
Note: See
TracBrowser
for help on using the repository browser.