1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
module.exports = {
// likely due to our capital case code
'Mccrae': 'McCrae',
'Mckinnon': 'McKinnon',
'Mcmillans': 'McMillans',
'Bend Of Islands': 'Bend of Islands',
'Bridgewater On Loddon': 'Bridgewater on Loddon',
'Hmas Cerberus': 'HMAS Cerberus',
'Mckenzie Creek': 'McKenzie Creek',
'Mcmahons Creek': 'McMahons Creek',
'Murray Sunset': 'Murray-Sunset',
'Yalla Y Poora': 'Yalla-y-poora',
// because these locality names are used more than once, the vicmap data has added a suffix for clarity
'Bellfield Greater Melbourne': 'Bellfield',
'Hillside Greater Melbourne': 'Hillside',
'Hillside Bairnsdale': 'Hillside',
'Springfield Romsey': 'Springfield',
'Springfield Sea Lake': 'Springfield',
'Moonlight Flat Castlemaine': 'Moonlight Flat',
'Moonlight Flat Maryborough': 'Moonlight Flat',
'Golden Point Castlemaine': 'Golden Point',
'Golden Point Ballarat': 'Golden Point',
'Golden Point Maryborough': 'Maryborough',
'Ascot Ballarat': 'Ascot',
'Ascot Bendigo': 'Ascot',
'Big Hill Bendigo': 'Big Hill',
'Big Hill Lorne': 'Big Hill',
'Black Range Stawell': 'Black Range',
'Fairy Dell Bairnsdale': 'Fairy Dell',
'Fairy Dell Rochester': 'Fairy Dell',
'Happy Valley Ballarat': 'Happy Valley',
'Happy Valley Robinvale': 'Happy Valley',
'Killara Casterton': 'Killara',
'Killara Wodonga': 'Killara',
'Merrijig Bairnsdale': 'Merrijig',
'Merrijig Mount Buller': 'Merrijig',
'Myall Kerang': 'Myall',
'Myall Sea Lake': 'Myall',
'Newtown Ballarat': 'Newtown',
'Newtown Geelong': 'Newtown',
'Stony Creek Foster': 'Stony Creek',
'Stony Creek Talbot': 'Stony Creek',
'Thomson Geelong': 'Thomson'
}
|