-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdublin-trees.json
More file actions
1219 lines (1219 loc) · 28.8 KB
/
dublin-trees.json
File metadata and controls
1219 lines (1219 loc) · 28.8 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"short": {
"drive": {
"abbey": {
"abbey drive": 0
},
"coolrua": {
"coolrua drive": 10
},
"coultry": {
"coultry drive": 5
},
"drumcliffe": {
"drumcliffe drive": 0
},
"park": {
"grove": {
"grove park drive": 10
}
},
"mcauley": {
"mcauley drive": 10
},
"merlyn": {
"merlyn drive": 5
},
"merylin": {
"merylin drive": 5
},
"rathvale": {
"rathvale drive": 10
},
"rathvilly": {
"rathvilly drive": 10
},
"marys": {
"st": {
"st marys drive": 10
}
},
"mobhi": {
"st": {
"st mobhi drive": 10
}
},
"brendens": {
"st": {
"st brendens drive": 0
}
},
"thornville": {
"thornville drive": 10
}
},
"college": {
"albert": {
"albert college": 0
}
},
"road": {
"byrne": {
"alfie": {
"alfie byrne road": 5
}
},
"saints": {
"all": {
"all saints road": 10
}
},
"anner": {
"anner road": 10
},
"armagh": {
"armagh road": 10
},
"ballyfermot": {
"ballyfermot road": 10
},
"barry": {
"barry road": 10
},
"brookvale": {
"brookvale road": 0
},
"brookwood": {
"brookwood road": 10
},
"bulfin": {
"bulfin road": 10
},
"bunting": {
"bunting road": 10
},
"calderwood": {
"calderwood road": 10
},
"caledon": {
"caledon road": 0
},
"canal": {
"canal road": 5
},
"carleton": {
"carleton road": 10
},
"castleforbes": {
"castleforbes road": 10
},
"cedarwood": {
"cedarwood road": 5
},
"mangan": {
"clarence": {
"clarence mangan road": 10
}
},
"clonard": {
"clonard road": 10
},
"clonfert": {
"clonfert road": 10
},
"cooley": {
"cooley road": 10
},
"cowper": {
"cowper road": 10
},
"crumlin": {
"crumlin road": 10
},
"curlew": {
"curlew road": 10
},
"delville": {
"delville road": 10
},
"donaghmede": {
"donaghmede road": 10
},
"donore": {
"donore road": 7
},
"drumalee": {
"drumalee road": 10
},
"drumcliffe": {
"drumcliffe road": 5
},
"durrow": {
"durrow road": 0
},
"ennafort": {
"ennafort road": 10
},
"fassaugh": {
"fassaugh road": 5
},
"fergus": {
"fergus road": 10
},
"finglas": {
"finglas road": 10,
"old": {
"old finglas road": 10
}
},
"galmoy": {
"galmoy road": 5
},
"glencloy": {
"glencloy road": 5
},
"park": {
"grove": {
"grove park road": 10
}
},
"grove": {
"grove road": 10
},
"kilbarrack": {
"kilbarrack road": 10
},
"kildare": {
"kildare road": 10
},
"kildonan": {
"kildonan road": 5
},
"kylemore": {
"kylemore road": 10
},
"landen": {
"landen road": 5
},
"lein": {
"lein road": 5
},
"leinster": {
"leinster road": 5
},
"loreto": {
"loreto road": 10
},
"malahide": {
"malahide road": 10
},
"marlborough": {
"marlborough road": 10
},
"mckelvey": {
"mckelvey road": 10
},
"mellowes": {
"mellowes road": 5
},
"mellows": {
"mellows road": 10
},
"merlyn": {
"merlyn road": 0
},
"merton": {
"merton road": 5
},
"merylin": {
"merylin road": 10
},
"mourne": {
"mourne road": 10
},
"nephim": {
"nephim road": 5
},
"nephin": {
"nephin road": 10
},
"ocarolan": {
"ocarolan road": 10
},
"odonovan": {
"odonovan road": 10
},
"traynor": {
"oscar": {
"oscar traynor road": 10
}
},
"quarry": {
"quarry road": 0
},
"rafters": {
"rafters road": 0
},
"ranelagh": {
"ranelagh road": 10
},
"rathdown": {
"rathdown road": 10
},
"ribh": {
"ribh road": 5
},
"ringsend": {
"ringsend road": 10
},
"teresas": {
"st": {
"st teresas road": 10
}
},
"ennis": {
"seamus": {
"seamus ennis road": 10
}
},
"slievemore": {
"slievemore road": 10
},
"agnes": {
"st": {
"st agnes road": 5
}
},
"albans": {
"st": {
"st albans road": 10
}
},
"summerhill": {
"summerhill road": 5
},
"sundrive": {
"sundrive road": 10
},
"stiles": {
"the": {
"the stiles road": 5
}
},
"moore": {
"thomas": {
"thomas moore road": 10
}
},
"tonlegee": {
"tonlegee road": 10
},
"tritonville": {
"tritonville road": 0
},
"waterloo": {
"waterloo road": 10
},
"wellington": {
"wellington road": 10
},
"springdale": {
"springdale road": 10
}
},
"street": {
"amiens": {
"amiens street": 10
},
"aughrim": {
"aughrim street": 10
},
"baggot": {
"baggot street": 10
},
"bishop": {
"bishop street": 10
},
"bridgefoot": {
"bridgefoot street": 5
},
"buckingham": {
"buckingham street": 10
},
"chatham": {
"chatham street": 5
},
"church": {
"church street": 10
},
"clarendon": {
"clarendon street": 10
},
"college": {
"college street": 5
},
"cork": {
"cork street": 10
},
"gardiner": {
"gardiner street": 5
},
"hamilton": {
"hamilton street": 10
},
"hammond": {
"hammond street": 10
},
"high": {
"high street": 10
},
"joyce": {
"james": {
"james joyce street": 10
}
},
"kirwan": {
"kirwan street": 5
},
"manor": {
"manor street": 10
},
"wapping": {
"new": {
"new wapping street": 10
}
},
"oconnell": {
"oconnell street": 5
},
"parnell": {
"parnell street": 5
},
"pearce": {
"pearce street": 10
},
"reginald": {
"reginald street": 10
},
"dermott": {
"mac": {
"sean": {
"sean mac dermott street": 10
}
}
},
"mcdermott": {
"sean": {
"sean mcdermott street": 10
}
},
"thomas": {
"thomas street": 10
},
"york": {
"york street": 10
}
},
"park": {
"annesley": {
"annesley park": 10
},
"ayrfield": {
"ayrfield park": 10
},
"carndonagh": {
"carndonagh park": 10
},
"coolatree": {
"coolatree park": 10
},
"coolrua": {
"coolrua park": 10
},
"darndale": {
"darndale park": 0
},
"dartry": {
"dartry park": 10
},
"drumalee": {
"drumalee park": 10
},
"dunree": {
"dunree park": 10
},
"finglas": {
"finglas park": 10
},
"glenaulin": {
"glenaulin park": 10
},
"glendhu": {
"glendhu park": 10
},
"kempton": {
"kempton park": 10
},
"kildonan": {
"kildonan park": 10
},
"kylemore": {
"kylemore park": 10
},
"mcauley": {
"mcauley park": 10
},
"mellowes": {
"mellowes park": 10
},
"bernard": {
"mount": {
"mount bernard park": 10
}
},
"rathvale": {
"rathvale park": 10
},
"richview": {
"richview park": 0
},
"agnes": {
"st": {
"st agnes park": 10
}
},
"church": {
"audoens": {
"st": {
"st audoens church park": 10
}
}
},
"the": {
"the park": 10
},
"ventry": {
"ventry park": 0
},
"tone": {
"wolf": {
"wolf tone park": 5
}
},
"mccauley": {
"mccauley park": 10
},
"lein": {
"lein park": 10
},
"markievicz": {
"markievicz park": 5
}
},
"hill": {
"arbour": {
"arbour hill": 5
},
"constitution": {
"constitution hill": 10
}
},
"ashcroft": {
"ashcroft": 10
},
"rise": {
"ashington": {
"ashington rise": 10
}
},
"quay": {
"aston": {
"aston quay": 10
},
"burgh": {
"burgh quay": 10
},
"city": {
"city quay": 5
},
"georges": {
"georges quay": 10
},
"north": {
"north quay": 10
},
"victoria": {
"victoria quay": 10
},
"tone": {
"wilfe": {
"wilfe tone quay": 10
}
},
"wood": {
"wood quay": 10
}
},
"avenue": {
"ayrfield": {
"ayrfield avenue": 10
},
"ballyhoy": {
"ballyhoy avenue": 0
},
"cappagh": {
"cappagh avenue": 5
},
"celestine": {
"celestine avenue": 0
},
"clancy": {
"clancy avenue": 10
},
"droomeen": {
"droomeen avenue": 10
},
"drumalee": {
"drumalee avenue": 10
},
"fassaugh": {
"fassaugh avenue": 5
},
"faussagh": {
"faussagh avenue": 10
},
"fitzroy": {
"fitzroy avenue": 10
},
"glasnevin": {
"glasnevin avenue": 10
},
"greenville": {
"greenville avenue": 10
},
"grove": {
"grove avenue": 10
},
"park": {
"grove": {
"grove park avenue": 5
},
"willow": {
"willow park avenue": 10
}
},
"kinrara": {
"kinrara avenue": 10
},
"kinvara": {
"kinvara avenue": 10
},
"mckee": {
"mckee avenue": 5
},
"prospect": {
"mount": {
"mount prospect avenue": 10
},
"prospect avenue": 7
},
"tallant": {
"mount": {
"mount tallant avenue": 10
}
},
"northbrook": {
"northbrook avenue": 10
},
"traynor": {
"oscar": {
"oscar traynor avenue": 10
}
},
"philipsburgh": {
"philipsburgh avenue": 10
},
"rathvale": {
"rathvale avenue": 10
},
"margarets": {
"st": {
"st margarets avenue": 7
}
},
"lukes": {
"st": {
"st lukes avenue": 10
}
},
"winton": {
"winton avenue": 5
},
"mccauley": {
"mccauley avenue": 5
}
},
"place": {
"ayrfield": {
"ayrfield place": 10
}
},
"walk": {
"bachelors": {
"bachelors walk": 10
},
"church": {
"church walk": 0
},
"view": {
"temple": {
"temple view walk": 10
}
},
"thorndale": {
"thorndale walk": 10
}
},
"gardens": {
"park": {
"belton": {
"belton park gardens": 10
},
"grace": {
"grace park gardens": 10
},
"villa": {
"villa park gardens": 5
}
},
"lein": {
"lein gardens": 10
}
},
"brookfield": {
"brookfield": 10
},
"crescent": {
"brookville": {
"brookville crescent": 5
},
"grattan": {
"grattan crescent": 10
},
"mellowes": {
"mellowes crescent": 10
},
"rathdown": {
"rathdown crescent": 0
}
},
"grove": {
"calderwood": {
"calderwood grove": 10
},
"drumalee": {
"drumalee grove": 10
},
"fairways": {
"fairways grove": 10
},
"abbey": {
"grange": {
"grange abbey grove": 10
}
},
"park": {
"oak": {
"oak park grove": 10
},
"willow": {
"willow park grove": 10
}
}
},
"lower": {
"street": {
"camden": {
"camden street lower": 10
},
"clanbrassal": {
"clanbrassal street lower": 10
},
"kevin": {
"kevin street lower": 10
},
"leeson": {
"leeson street lower": 10
}
}
},
"green": {
"cappagh": {
"cappagh green": 5
},
"edenmore": {
"edenmore green": 5
},
"rectory": {
"rectory green": 10
},
"wellmount": {
"wellmount green": 5
}
},
"mews": {
"chancel": {
"chancel mews": 0
}
},
"terrace": {
"clarkes": {
"clarkes terrace": 10
},
"goldenbridge": {
"goldenbridge terrace": 10
},
"granite": {
"granite terrace": 10
},
"greenville": {
"greenville terrace": 10
},
"michaels": {
"st": {
"st michaels terrace": 10
}
}
},
"lawn": {
"clonshaugh": {
"clonshaugh lawn": 10
},
"cremore": {
"cremore lawn": 10
}
},
"coolatr": {
"coolatr": 10
},
"barn": {
"dolphins": {
"dolphins barn": 10
}
},
"dowland": {
"dowland": 5
},
"court": {
"drumalee": {
"drumalee court": 10
},
"dunard": {
"dunard court": 10
},
"glasnevin": {
"glasnevin court": 10
},
"grosvenor": {
"grosvenor court": 5
},
"kincora": {
"kincora court": 0
},
"walnut": {
"walnut court": 5
}
},
"close": {
"mount": {
"elm": {
"elm mount close": 10
}
}
},
"john": {
"st": {
"froxfield": {
"froxfield st john": 5
}
}
},
"glenavy": {
"glenavy": 10
},
"square": {
"gray": {
"gray square": 10
},
"oscar": {
"oscar square": 10
},
"pearse": {
"pearse square": 10
},
"weavers": {
"weavers square": 10
}
},
"parade": {
"greenville": {
"greenville parade": 10
},
"mountjoy": {
"mountjoy parade": 5
}
},
"wood": {
"grove": {
"grove wood": 10
}
},
"lodge": {
"harcourt": {
"harcourt lodge": 10
}
},
"cottages": {
"herbert": {
"herbert cottages": 10
}
},
"heath": {
"kempton": {
"kempton heath": 10
}
},
"view": {
"kempton": {
"kempton view": 10
},
"park": {
"park view": 10
}
},
"lisle": {
"lisle ": 10
},
"drimnagh": {
"drive": {
"lissadell": {
"lissadell drive drimnagh": 10
}
}
},
"meadowbank": {
"meadowbank": 10
},
"newmarket": {
"newmarket": 10
},
"wall": {
"north": {
"north wall": 10
}
},
"lane": {
"park": {
"park lane": 10
}
},
"harbour": {
"portobello": {
"portobello harbour": 10
}
},
"rathdow": {
"rathdow": 0
},
"rialto": {
"walk": {
"reuben": {
"reuben walk rialto": 10
}
}
},
"abbey": {
"rothe": {
"rothe abbey": 10
}
},
"oaks": {
"seven": {
"seven oaks": 10
}
},
"plaza": {
"street": {
"store": {
"store street plaza": 5
}
}
},
"meadows": {
"the": {
"the meadows": 10
}
},
"willows": {
"the": {
"the willows": 7
}
},
"island": {
"ushers": {
"ushers island": 10
}
},
"westpark": {
"westpark": 10
},
"river": {
"santry": {
"santry river": 10
}
},
"moyle": {
"the": {
"the moyle": 10
}
},
"clearwater": {
"clearwater": 10
}
},
"tall": {
"road": {
"adelaide": {
"adelaide road": 25
},
"beaumont": {
"beaumont road": 20
},
"cabra": {
"cabra road": 25
},
"cambridge": {
"cambridge road": 20
},
"carnlough": {
"carnlough road": 20
},