-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcachedgoogle.json
More file actions
2473 lines (2468 loc) · 143 KB
/
Copy pathcachedgoogle.json
File metadata and controls
2473 lines (2468 loc) · 143 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
{
"5714 Ch Fourth Line Rd, North Gower, ON, CA, K0A 2T0": [{
"formattedAddress": "5714 Fourth Line Rd, North Gower, ON K0A 2T0, Canada",
"latitude": 45.1754411,
"longitude": -75.77131709999999,
"extra": { "googlePlaceId": "EjQ1NzE0IEZvdXJ0aCBMaW5lIFJkLCBOb3J0aCBHb3dlciwgT04gSzBBIDJUMCwgQ2FuYWRh", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "North Gower", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "5714",
"streetName": "Fourth Line Road",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 2T0",
"provider": "google"
}],
"101 Lyon St N, Ottawa, ON, CA, K1R 5T9": [{
"formattedAddress": "101 Lyon St N, Ottawa, ON K1R 7Y5, Canada",
"latitude": 45.41872190000001,
"longitude": -75.7040361,
"extra": { "googlePlaceId": "ChIJ4ScJ_lMEzkwROL-UOOZZwOk", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Downtown", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "101",
"streetName": "Lyon Street North",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K1R 7Y5",
"provider": "google"
}],
"3160 Ramsayville Rd, Ottawa, ON, K1G3N2": [{
"formattedAddress": "3160 Ramsayville Rd, Gloucester, ON K1G 3N2, Canada",
"latitude": 45.3769013,
"longitude": -75.5701832,
"extra": { "googlePlaceId": "ChIJt8anp6gOzkwRbGqGUPipnPM", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Gloucester", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "3160",
"streetName": "Ramsayville Road",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K1G 3N2",
"provider": "google"
}],
"55 ByWard Market Sq, Ottawa, ON, CA, K1N 9C3": [{
"formattedAddress": "55 Byward Market Square, Ottawa, ON K1N 9C3, Canada",
"latitude": 45.427449,
"longitude": -75.69236459999999,
"extra": { "googlePlaceId": "ChIJ7SNRDAIFzkwROghuC9Jfaxo", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Lower Town", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "55",
"streetName": "Byward Market Square",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K1N 9C3",
"provider": "google"
}],
"3155 County Rd 16, Fournier, ON, CA, K0B 1G0": [{
"formattedAddress": "3155 County Rd 16, Fournier, ON K0B 1G0, Canada",
"latitude": 45.43043189999999,
"longitude": -74.98719439999999,
"extra": { "googlePlaceId": "Ei8zMTU1IENvdW50eSBSZCAxNiwgRm91cm5pZXIsIE9OIEswQiAxRzAsIENhbmFkYQ", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Fournier", "establishment": null },
"administrativeLevels": { "level3long": "The Nation Municipality", "level3short": "The Nation Municipality", "level2long": "Prescott and Russell United Counties", "level2short": "Prescott and Russell United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "3155",
"streetName": "County Road 16",
"city": "Fournier",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0B 1G0",
"provider": "google"
}],
"2750 Iris St, Ottawa, ON, CA, K2C 3C9": [{
"formattedAddress": "2750 Iris St, Ottawa, ON K2C 3C9, Canada",
"latitude": 45.3475215,
"longitude": -75.7871237,
"extra": { "googlePlaceId": "ChIJGR4IntIAzkwRB7sa3X1wfkU", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Iris", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "2750",
"streetName": "Iris Street",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K2C 3C9",
"provider": "google"
}],
"1335 Ottawa Rd 29, Arnprior, ON, CA, K7S 3G7": [{
"formattedAddress": "1335 Ottawa Rd 29, Arnprior, ON K7S 3G7, Canada",
"latitude": 45.3901303,
"longitude": -76.3109941,
"extra": { "googlePlaceId": "Ei8xMzM1IE90dGF3YSBSZCAyOSwgQXJucHJpb3IsIE9OIEs3UyAzRzcsIENhbmFkYQ", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Arnprior", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "1335",
"streetName": "Ottawa Road 29",
"city": "Arnprior",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K7S 3G7",
"provider": "google"
}],
"402 Dillabough Road RR#2, Heckston, ON, CA, K0G 1J0": [],
"6830 Belmeade Rd, Osgoode, ON, CA, KOA 2WO": [{
"formattedAddress": "1000 Islands / Mallorytown KOA Holiday, 1477 Leeds and Grenville 2, Mallorytown, ON K0E 1R0, Canada",
"latitude": 44.4694355,
"longitude": -75.87961349999999,
"extra": { "googlePlaceId": "ChIJi6IdWPIUzUwRXHs1dr4c9Qc", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Mallorytown", "establishment": "1000 Islands / Mallorytown KOA Holiday" },
"administrativeLevels": { "level3long": "Front of Yonge", "level3short": "Front of Yonge", "level2long": "Leeds and Grenville United Counties", "level2short": "Leeds and Grenville United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "1477",
"streetName": "Leeds and Grenville 2",
"city": "Mallorytown",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0E 1R0",
"provider": "google"
}],
"2860 Donnelly Dr, Kemptville, ON, CA, K0G 1J0": [{
"formattedAddress": "2860 Donnelly Dr, Kemptville, ON K0G 1J0, Canada",
"latitude": 45.0514409,
"longitude": -75.6852667,
"extra": { "googlePlaceId": "ChIJgXsuv7PrzUwRfJwudxzVH4s", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Goulbourn", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "2860",
"streetName": "Donnelly Drive",
"city": "Kemptville",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0G 1J0",
"provider": "google"
}],
"10715 Country Rd RR #2, Iroquois, ON, CA, K0E 1K0": [{
"formattedAddress": "10715 Stormont, Dundas and Glengarry County Road 2, Iroquois, ON K0E 1K0, Canada",
"latitude": 44.8456585,
"longitude": -75.32296989999999,
"extra": { "googlePlaceId": "ElAxMDcxNSBTdG9ybW9udCwgRHVuZGFzIGFuZCBHbGVuZ2FycnkgQ291bnR5IFJvYWQgMiwgSXJvcXVvaXMsIE9OIEswRSAxSzAsIENhbmFkYQ", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Iroquois", "establishment": null },
"administrativeLevels": { "level3long": "South Dundas", "level3short": "South Dundas", "level2long": "Stormont, Dundas and Glengarry United Counties", "level2short": "Stormont, Dundas and Glengarry United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "10715",
"streetName": "Stormont, Dundas and Glengarry County Road 2",
"city": "Iroquois",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0E 1K0",
"provider": "google"
}],
"4165 3rd Line Rd, North Lancaster, ON, CA, K0C 1Z0": [{
"formattedAddress": "4165 3rd Line Rd, North Lancaster, ON K0C 1Z0, Canada",
"latitude": 45.2997024,
"longitude": -74.5024746,
"extra": { "googlePlaceId": "EjU0MTY1IDNyZCBMaW5lIFJkLCBOb3J0aCBMYW5jYXN0ZXIsIE9OIEswQyAxWjAsIENhbmFkYQ", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "North Lancaster", "establishment": null },
"administrativeLevels": { "level3long": "South Glengarry", "level3short": "South Glengarry", "level2long": "Stormont, Dundas and Glengarry United Counties", "level2short": "Stormont, Dundas and Glengarry United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "4165",
"streetName": "3rd Line Road",
"city": "North Lancaster",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0C 1Z0",
"provider": "google"
}],
"2390 Concession 3 Rd, Ottawa, ON, CA, K0B 1L0": [{
"formattedAddress": "2390 Concession Rd 3, Alfred, ON K0B 1A0, Canada",
"latitude": 45.6005209,
"longitude": -74.9018176,
"extra": { "googlePlaceId": "EjAyMzkwIENvbmNlc3Npb24gUmQgMywgQWxmcmVkLCBPTiBLMEIgMUEwLCBDYW5hZGE", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Alfred", "establishment": null },
"administrativeLevels": { "level3long": "Alfred and Plantagenet", "level3short": "Alfred and Plantagenet", "level2long": "Prescott and Russell United Counties", "level2short": "Prescott and Russell United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "2390",
"streetName": "Concession Road 3",
"city": "Alfred",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0B 1A0",
"provider": "google"
}],
"3015 County Road 21 RR #2, Spencerville, ON, CA, K0E 1X0": [{
"formattedAddress": "3015 County Rd 21, Spencerville, ON K0E 1X0, Canada",
"latitude": 44.83240139999999,
"longitude": -75.560815,
"extra": { "googlePlaceId": "EjMzMDE1IENvdW50eSBSZCAyMSwgU3BlbmNlcnZpbGxlLCBPTiBLMEUgMVgwLCBDYW5hZGE", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Spencerville", "establishment": null },
"administrativeLevels": { "level3long": "Edwardsburgh/Cardinal", "level3short": "Edwardsburgh/Cardinal", "level2long": "Leeds and Grenville United Counties", "level2short": "Leeds and Grenville United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "3015",
"streetName": "County Road 21",
"city": "Spencerville",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0E 1X0",
"provider": "google"
}],
"2394 Dwyer Hill Rd, Ottawa, ON, CA, K0A 1B0": [{
"formattedAddress": "2394 Dwyer Hill Rd, Ashton, ON K0A 1B0, Canada",
"latitude": 45.1605236,
"longitude": -75.9883083,
"extra": { "googlePlaceId": "ChIJZWTKKC8I0kwRfakNqBBgZ4g", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Ashton", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "2394",
"streetName": "Dwyer Hill Road",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 1B0",
"provider": "google"
}],
"7328 Stone School Rd, Greely, ON, CA, K4P 1M3": [{
"formattedAddress": "7328 Stone School Rd, Greely, ON K4P 1M3, Canada",
"latitude": 45.2308647,
"longitude": -75.5302619,
"extra": { "googlePlaceId": "ChIJk8x7MiLezUwRHPD5JkH8j-s", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Greely", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "7328",
"streetName": "Stone School Road",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K4P 1M3",
"provider": "google"
}],
"53 Elgin St, Ottawa, ON, CA, K1P 5W1": [{
"formattedAddress": "National Arts Centre, 53 Elgin St, Ottawa, ON K1P, Canada",
"latitude": 45.42308389999999,
"longitude": -75.693466,
"extra": { "googlePlaceId": "ChIJjS20aQAFzkwRL2A84yWHWPU", "confidence": 1, "premise": "National Arts Centre", "subpremise": null, "neighborhood": "Downtown", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "53",
"streetName": "Elgin Street",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K1P",
"provider": "google"
}],
"45 Kelly Rd, Gatineau, QC, CA, J9J 3R8": [{
"formattedAddress": "45 Chemin Kelly, Gatineau, QC J9J 3R8, Canada",
"latitude": 45.4791509,
"longitude": -75.8696138,
"extra": { "googlePlaceId": "ChIJib-LNSr90UwRNa3Duz9hCIk", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Aylmer", "establishment": null },
"administrativeLevels": { "level2long": "Communauté-Urbaine-de-l'Outaouais", "level2short": "Communauté-Urbaine-de-l'Outaouais", "level1long": "Québec", "level1short": "QC" },
"streetNumber": "45",
"streetName": "Chemin Kelly",
"city": "Gatineau",
"country": "Canada",
"countryCode": "CA",
"zipcode": "J9J 3R8",
"provider": "google"
}],
"1758 Cassburn Rd, L'Original, ON, CA, K0B 1K0": [{
"formattedAddress": "1758 Cassburn Rd, L'Orignal, ON K0B 1K0, Canada",
"latitude": 45.585432,
"longitude": -74.70224739999999,
"extra": { "googlePlaceId": "ChIJazBlxTjuzkwRCDR29wKzENw", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "L'Orignal", "establishment": null },
"administrativeLevels": { "level3long": "Champlain", "level3short": "Champlain", "level2long": "Prescott and Russell United Counties", "level2short": "Prescott and Russell United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "1758",
"streetName": "Cassburn Road",
"city": "L'Orignal",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0B 1K0",
"provider": "google"
}],
"13214 County Rd 13, Winchester, ON, CA, K0C 2K0": [{
"formattedAddress": "13214 County Rd 13, Winchester, ON K0C 2K0, Canada",
"latitude": 45.1689342,
"longitude": -75.3075921,
"extra": { "googlePlaceId": "EjIxMzIxNCBDb3VudHkgUmQgMTMsIFdpbmNoZXN0ZXIsIE9OIEswQyAySzAsIENhbmFkYQ", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Winchester", "establishment": null },
"administrativeLevels": { "level3long": "North Dundas", "level3short": "North Dundas", "level2long": "Stormont, Dundas and Glengarry United Counties", "level2short": "Stormont, Dundas and Glengarry United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "13214",
"streetName": "County Road 13",
"city": "Winchester",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0C 2K0",
"provider": "google"
}],
"5366 Robertson Rd, Morrisburg, ON, CA, K0C 1X0": [{
"formattedAddress": "5366 Robertson Rd, Morrisburg, ON K0C 1X0, Canada",
"latitude": 44.922009,
"longitude": -75.18742499999999,
"extra": { "googlePlaceId": "ChIJH4DI5B1KzEwRSRYVojZhZM8", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Morrisburg", "establishment": null },
"administrativeLevels": { "level3long": "South Dundas", "level3short": "South Dundas", "level2long": "Stormont, Dundas and Glengarry United Counties", "level2short": "Stormont, Dundas and Glengarry United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "5366",
"streetName": "Robertson Road",
"city": "Morrisburg",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0C 1X0",
"provider": "google"
}],
"332 Route 148, Lochaber, QC, CA, J0X 3B0": [{
"formattedAddress": "332 QC-148, Thurso, QC J0X 3B0, Canada",
"latitude": 45.60269659999999,
"longitude": -75.1869383,
"extra": { "googlePlaceId": "ChIJJwWJEwpDzkwRiScoHboetTk", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Thurso", "establishment": null },
"administrativeLevels": { "level3long": "Lochaber", "level3short": "Lochaber", "level2long": "Papineau", "level2short": "Papineau", "level1long": "Québec", "level1short": "QC" },
"streetNumber": "332",
"streetName": "Québec 148",
"city": "Thurso",
"country": "Canada",
"countryCode": "CA",
"zipcode": "J0X 3B0",
"provider": "google"
}],
"95 Kennedy Rd, Boulter, ON, CA, K0L 1G0": [{
"formattedAddress": "95 Kennedy Rd, Boulter, ON K0L 1G0, Canada",
"latitude": 45.2302492,
"longitude": -77.61171279999999,
"extra": { "googlePlaceId": "Eio5NSBLZW5uZWR5IFJkLCBCb3VsdGVyLCBPTiBLMEwgMUcwLCBDYW5hZGE", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Boulter", "establishment": null },
"administrativeLevels": { "level3long": "Carlow/Mayo", "level3short": "Carlow/Mayo", "level2long": "Hastings County", "level2short": "Hastings County", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "95",
"streetName": "Kennedy Road",
"city": "Boulter",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0L 1G0",
"provider": "google"
}],
"1538 Chemin Marcel Dardel, Namur, QC, CA, J0V 1N0": [{
"formattedAddress": "1538 Chemin Marcel Dardel, Namur, QC J0V 1N0, Canada",
"latitude": 45.879087,
"longitude": -74.90549399999999,
"extra": { "googlePlaceId": "ChIJf9jh0xSsz0wRPOttgqLR5_k", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Namur", "establishment": null },
"administrativeLevels": { "level3long": "Namur", "level3short": "Namur", "level2long": "Papineau", "level2short": "Papineau", "level1long": "Québec", "level1short": "QC" },
"streetNumber": "1538",
"streetName": "Chemin Marcel Dardel",
"city": "Namur",
"country": "Canada",
"countryCode": "CA",
"zipcode": "J0V 1N0",
"provider": "google"
}],
"2391 Pí©pin Ct, Ottawa, ON, CA, K1B 4Z3": [],
"4625 Carp Rd, Carp, ON, CA, K0A 1L0": [{
"formattedAddress": "4625 Carp Rd, Carp, ON K0A 1L0, Canada",
"latitude": 45.3727972,
"longitude": -76.093536,
"extra": { "googlePlaceId": "ChIJnQV7wO330UwR38KKdchjO2M", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Carp", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "4625",
"streetName": "Carp Road",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 1L0",
"provider": "google"
}],
"490 Baillie Rd, Gatineau, QC, CA, J9J 3R5": [{
"formattedAddress": "490 Chemin Baillie, Gatineau, QC J9J 3R4, Canada",
"latitude": 45.4666636,
"longitude": -75.8893199,
"extra": { "googlePlaceId": "ChIJrbXzb9380UwRQcfEEznrpto", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Aylmer", "establishment": null },
"administrativeLevels": { "level2long": "Communauté-Urbaine-de-l'Outaouais", "level2short": "Communauté-Urbaine-de-l'Outaouais", "level1long": "Québec", "level1short": "QC" },
"streetNumber": "490",
"streetName": "Chemin Baillie",
"city": "Gatineau",
"country": "Canada",
"countryCode": "CA",
"zipcode": "J9J 3R4",
"provider": "google"
}],
"2389 PÌ_å©pin Ct, Gloucester, ON, CA, K1B 4Z3": [],
"100 Dopson Rd, Perth, ON, CA, K7H 3C3": [{
"formattedAddress": "100 Dopson Rd, Perth, ON K7H 3C3, Canada",
"latitude": 44.9212886,
"longitude": -76.1565131,
"extra": { "googlePlaceId": "EigxMDAgRG9wc29uIFJkLCBQZXJ0aCwgT04gSzdIIDNDMywgQ2FuYWRh", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Perth", "establishment": null },
"administrativeLevels": { "level3long": "Drummond/North Elmsley", "level3short": "Drummond/North Elmsley", "level2long": "Lanark County", "level2short": "Lanark County", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "100",
"streetName": "Dopson Road",
"city": "Perth",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K7H 3C3",
"provider": "google"
}],
"1406 Gulley Rd, Mississippi Station, ON, CA, K0H 2C0": [{
"formattedAddress": "1406 Gulley Rd, Mississippi Station, ON K0H 2C0, Canada",
"latitude": 44.9305698,
"longitude": -76.6691767,
"extra": { "googlePlaceId": "EjcxNDA2IEd1bGxleSBSZCwgTWlzc2lzc2lwcGkgU3RhdGlvbiwgT04gSzBIIDJDMCwgQ2FuYWRh", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Mississippi Station", "establishment": null },
"administrativeLevels": { "level3long": "North Frontenac", "level3short": "North Frontenac", "level2long": "Frontenac County", "level2short": "Frontenac County", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "1406",
"streetName": "Gulley Road",
"city": "Mississippi Station",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0H 2C0",
"provider": "google"
}],
"4248 Wolf Grove Rd, RR 2 Lanark, ON, CA, K0G 1K0": [{
"formattedAddress": "4248 Wolf Grove Rd, Lanark, ON K0G 1K0, Canada",
"latitude": 45.0967139,
"longitude": -76.3977943,
"extra": { "googlePlaceId": "Ei40MjQ4IFdvbGYgR3JvdmUgUmQsIExhbmFyaywgT04gSzBHIDFLMCwgQ2FuYWRh", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Lanark", "establishment": null },
"administrativeLevels": { "level3long": "Lanark Highlands", "level3short": "Lanark Highlands", "level2long": "Lanark County", "level2short": "Lanark County", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "4248",
"streetName": "Wolf Grove Road",
"city": "Lanark",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0G 1K0",
"provider": "google"
}],
"1701 Concession 4 Rd, Alfred, ON, CA, K0B 1A0": [{
"formattedAddress": "1701 Concession Rd 4, Alfred, ON K0B 1A0, Canada",
"latitude": 45.5933317,
"longitude": -74.8562547,
"extra": { "googlePlaceId": "ChIJ0xQPr5f2zkwR4GH35e2Z_so", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Alfred", "establishment": null },
"administrativeLevels": { "level3long": "Alfred and Plantagenet", "level3short": "Alfred and Plantagenet", "level2long": "Prescott and Russell United Counties", "level2short": "Prescott and Russell United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "1701",
"streetName": "Concession Road 4",
"city": "Alfred",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0B 1A0",
"provider": "google"
}],
"1594 Chemin du Lac, St. Pascal, ON, CA, K0A 3N0": [{
"formattedAddress": "1594 Du Lac Rd, Clarence Creek, ON K0A 1N0, Canada",
"latitude": 45.5241662,
"longitude": -75.1724373,
"extra": { "googlePlaceId": "EjIxNTk0IER1IExhYyBSZCwgQ2xhcmVuY2UgQ3JlZWssIE9OIEswQSAxTjAsIENhbmFkYQ", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Clarence Creek", "establishment": null },
"administrativeLevels": { "level2long": "Prescott and Russell United Counties", "level2short": "Prescott and Russell United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "1594",
"streetName": "Du Lac Road",
"city": "Clarence Creek",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 1N0",
"provider": "google"
}],
"99 Bank St, Ottawa, ON, CA, K1P 1H4": [{
"formattedAddress": "99 Bank St, Ottawa, ON K1P, Canada",
"latitude": 45.4204966,
"longitude": -75.7000906,
"extra": { "googlePlaceId": "ChIJHaF8U1QEzkwRbrLlsU-i3ME", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Byward Market - Parliament Hill", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "99",
"streetName": "Bank Street",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K1P",
"provider": "google"
}],
"928 Oak Creek Rd, Carp, ON, CA, K0A 1L0": [{
"formattedAddress": "928 Oak Creek Rd, Carp, ON K0A 1L0, Canada",
"latitude": 45.3147265,
"longitude": -75.9752333,
"extra": { "googlePlaceId": "ChIJK_GIu7wB0kwRVYizYZFengA", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Goulbourn", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "928",
"streetName": "Oak Creek Road",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 1L0",
"provider": "google"
}],
"13033 County Rd, RR 1 Winchester, ON, CA, K0C 2K0": [{
"formattedAddress": "13033 County Rd 3, Winchester, ON K0C 2K0, Canada",
"latitude": 45.1412527,
"longitude": -75.2980683,
"extra": { "googlePlaceId": "EjExMzAzMyBDb3VudHkgUmQgMywgV2luY2hlc3RlciwgT04gSzBDIDJLMCwgQ2FuYWRh", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Winchester", "establishment": null },
"administrativeLevels": { "level3long": "North Dundas", "level3short": "North Dundas", "level2long": "Stormont, Dundas and Glengarry United Counties", "level2short": "Stormont, Dundas and Glengarry United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "13033",
"streetName": "County Road 3",
"city": "Winchester",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0C 2K0",
"provider": "google"
}],
"3699 Jockvale Rd, Nepean, ON, CA, K2C 3H2": [],
"1101 Yorks Corners Rd, Edwards, ON, CA, K0A 1V0": [{
"formattedAddress": "1101 York's Corners Rd, Edwards, ON K0A 1V0, Canada",
"latitude": 45.321304,
"longitude": -75.464271,
"extra": { "googlePlaceId": "ChIJBfm2Wud0zkwRTio4uLAEndM", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Osgoode", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "1101",
"streetName": "York's Corners Road",
"city": "Edwards",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 1V0",
"provider": "google"
}],
"RR#2, Moose Creek, ON, CA, K0C 1W0": [],
"282 Bennies Corners Rd, Almonte, ON, CA, K0A 1A0": [{
"formattedAddress": "282 Bennies Corners Rd, Almonte, ON K0A 1A0, Canada",
"latitude": 45.2548322,
"longitude": -76.2622986,
"extra": { "googlePlaceId": "EjMyODIgQmVubmllcyBDb3JuZXJzIFJkLCBBbG1vbnRlLCBPTiBLMEEgMUEwLCBDYW5hZGE", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Almonte", "establishment": null },
"administrativeLevels": { "level2long": "Lanark County", "level2short": "Lanark County", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "282",
"streetName": "Bennies Corners Road",
"city": "Mississippi Mills",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 1A0",
"provider": "google"
}],
"3451 Richmond Rd, Ottawa, ON, CA, K2H 8G4": [{
"formattedAddress": "3451 Richmond Rd, Nepean, ON K2H 8G4, Canada",
"latitude": 45.33819949999999,
"longitude": -75.8111523,
"extra": { "googlePlaceId": "ChIJHcip6L4AzkwR2ujFrGuNCKs", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Nepean", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "3451",
"streetName": "Richmond Road",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K2H 8G4",
"provider": "google"
}],
"2 Montí©e Larouche, Ripon, QC, CA, J0V 1V0": [],
"1267 Rae Road RR2, Almonte, ON, CA, K0A 1A0": [{
"formattedAddress": "1267 Rae Rd, Almonte, ON K0A 1A0, Canada",
"latitude": 45.16790169999999,
"longitude": -76.22623639999999,
"extra": { "googlePlaceId": "ChIJ9dZ_NqER0kwRsSkFplMmpaM", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Almonte", "establishment": null },
"administrativeLevels": { "level2long": "Lanark County", "level2short": "Lanark County", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "1267",
"streetName": "Rae Road",
"city": "Mississippi Mills",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 1A0",
"provider": "google"
}],
"1538 Manotick Station Rd, Greely, ON, CA, K4P 1K4": [{
"formattedAddress": "1538 Manotick Station Rd, Greely, ON K4P 1K4, Canada",
"latitude": 45.231459,
"longitude": -75.613694,
"extra": { "googlePlaceId": "ChIJ2b7XdjjhzUwRXYgqz208GzY", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Greely", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "1538",
"streetName": "Manotick Station Road",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K4P 1K4",
"provider": "google"
}],
"1255 Wellington St W, Ottawa, ON, CA, K1Y 3A6": [{
"formattedAddress": "1255 Wellington St W, Ottawa, ON K1Y 0W2, Canada",
"latitude": 45.3995829,
"longitude": -75.7332031,
"extra": { "googlePlaceId": "ChIJkQofYD0EzkwRy1dOw8Gry9o", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Island Park", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "1255",
"streetName": "Wellington Street West",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K1Y 0W2",
"provider": "google"
}],
"6446 Prince of Wales Dr, North Gower, ON, CA, K0A 2T0": [{
"formattedAddress": "6446 Prince of Wales Dr, North Gower, ON K0A 2T0, Canada",
"latitude": 45.1445161,
"longitude": -75.7142131,
"extra": { "googlePlaceId": "ChIJf-MkH2nvzUwRiYeMrSEVrEI", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "North Gower", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "6446",
"streetName": "Prince of Wales Drive",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 2T0",
"provider": "google"
}],
"106 Augsburg Rd RR #5, Eganville, ON, CA, K0J1T0": [{
"formattedAddress": "Augsburg Rd, Eganville, ON K0J 1T0, Canada",
"latitude": 45.5374887,
"longitude": -77.1499187,
"extra": { "googlePlaceId": "ChIJFVTz9RFZ0UwRq8RXT4dUE4M", "confidence": 0.7, "premise": null, "subpremise": null, "neighborhood": "Eganville", "establishment": null },
"administrativeLevels": { "level3long": "Bonnechere Valley", "level3short": "Bonnechere Valley", "level2long": "Renfrew County", "level2short": "Renfrew County", "level1long": "Ontario", "level1short": "ON" },
"streetName": "Augsburg Road",
"city": "Eganville",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0J 1T0",
"provider": "google"
}, { "formattedAddress": "106 Augsburg Rd, Bonnechere Valley, ON K0J, Canada", "latitude": 45.5392977, "longitude": -77.117889, "extra": { "googlePlaceId": "EjIxMDYgQXVnc2J1cmcgUmQsIEJvbm5lY2hlcmUgVmFsbGV5LCBPTiBLMEosIENhbmFkYQ", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Bonnechere Valley", "establishment": null }, "administrativeLevels": { "level3long": "Bonnechere Valley", "level3short": "Bonnechere Valley", "level2long": "Renfrew County", "level2short": "Renfrew County", "level1long": "Ontario", "level1short": "ON" }, "streetNumber": "106", "streetName": "Augsburg Road", "country": "Canada", "countryCode": "CA", "zipcode": "K0J", "provider": "google" }],
"RR#3 3648 Gliderway, Manotick, ON, CA, K4M 1B4": [{
"formattedAddress": "Gliderway Private, Embrun, ON K0A 1W0, Canada",
"latitude": 45.1069241,
"longitude": -75.6151471,
"extra": { "googlePlaceId": "ChIJL1grljLozUwRjLJUDb47HvE", "confidence": 0.7, "premise": null, "subpremise": null, "neighborhood": "Embrun", "establishment": null },
"administrativeLevels": { "level3long": "North Grenville", "level3short": "North Grenville", "level2long": "Leeds and Grenville United Counties", "level2short": "Leeds and Grenville United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetName": "Gliderway Private",
"city": "Embrun",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 1W0",
"provider": "google"
}],
"7893 Bleeks Rd, Munster, ON, CA, K0A 3P0": [{
"formattedAddress": "7893 Bleeks Rd, Ottawa, ON, Canada",
"latitude": 45.1619807,
"longitude": -75.948298,
"extra": { "googlePlaceId": "ChIJV1K7-7v3zUwRztHT7OjvFWk", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Goulbourn", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "7893",
"streetName": "Bleeks Road",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"provider": "google"
}],
"1980 phelan Rd, north gower, ON, CA, k0a 2t0": [{
"formattedAddress": "1980 Phelan Rd W, North Gower, ON K0A 2T0, Canada",
"latitude": 45.15654560000001,
"longitude": -75.7047083,
"extra": { "googlePlaceId": "ChIJtVLokorlzUwROpHpkno50pQ", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "North Gower", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "1980",
"streetName": "Phelan Road West",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 2T0",
"provider": "google"
}],
"2389 Pepin Ct, Ottawa, ON, CA, K1B 4Z3": [{
"formattedAddress": "2389 Pépin Ct, Ottawa, ON K1B, Canada",
"latitude": 45.4266376,
"longitude": -75.57706759999999,
"extra": { "googlePlaceId": "ChIJf9vKCDgOzkwRSSv31r4JVjk", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Gloucester", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "2389",
"streetName": "Pépin Court",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K1B",
"provider": "google"
}],
"11652 County Rd 18 Dundela, RR # 1 Iroquois, ON, CA, K0E 1K0": [{
"formattedAddress": "11652 County Rd 18, Iroquois, ON K0E 1K0, Canada",
"latitude": 44.9437724,
"longitude": -75.2985563,
"extra": { "googlePlaceId": "EjAxMTY1MiBDb3VudHkgUmQgMTgsIElyb3F1b2lzLCBPTiBLMEUgMUswLCBDYW5hZGE", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Iroquois", "establishment": null },
"administrativeLevels": { "level3long": "South Dundas", "level3short": "South Dundas", "level2long": "Stormont, Dundas and Glengarry United Counties", "level2short": "Stormont, Dundas and Glengarry United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "11652",
"streetName": "County Road 18",
"city": "Iroquois",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0E 1K0",
"provider": "google"
}],
"Christie Lake Road, Perth, ON, CA, K0G": [{
"formattedAddress": "Christie Lake Rd, Perth, ON K0G, Canada",
"latitude": 44.9041144,
"longitude": -76.273663,
"extra": { "googlePlaceId": "EidDaHJpc3RpZSBMYWtlIFJkLCBQZXJ0aCwgT04gSzBHLCBDYW5hZGE", "confidence": 0.7, "premise": null, "subpremise": null, "neighborhood": "Perth", "establishment": null },
"administrativeLevels": { "level3long": "Tay Valley", "level3short": "Tay Valley", "level2long": "Lanark County", "level2short": "Lanark County", "level1long": "Ontario", "level1short": "ON" },
"streetName": "Christie Lake Road",
"city": "Perth",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0G",
"provider": "google"
}],
"3444 Scotch Line, Perth, ON, CA, K7H 3C5": [{
"formattedAddress": "3444 Scotch Line, Perth, ON K7H 3C5, Canada",
"latitude": 44.8393548,
"longitude": -76.3072664,
"extra": { "googlePlaceId": "EiszNDQ0IFNjb3RjaCBMaW5lLCBQZXJ0aCwgT04gSzdIIDNDNSwgQ2FuYWRh", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Perth", "establishment": null },
"administrativeLevels": { "level3long": "Tay Valley", "level3short": "Tay Valley", "level2long": "Lanark County", "level2short": "Lanark County", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "3444",
"streetName": "Scotch Line",
"city": "Perth",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K7H 3C5",
"provider": "google"
}],
"C20 6e Concession Rd, Clarendon, QC, CA, J0X 2Y0": [{
"formattedAddress": "6 Concession, Shawville, QC J0X 2Y0, Canada",
"latitude": 45.5827298,
"longitude": -76.448435,
"extra": { "googlePlaceId": "ChIJN47BHBCb0UwRHuSZwbAtcTA", "confidence": 0.7, "premise": null, "subpremise": null, "neighborhood": "Shawville", "establishment": null },
"administrativeLevels": { "level3long": "Clarendon", "level3short": "Clarendon", "level2long": "Pontiac Regional County Municipality", "level2short": "Pontiac Regional County Municipality", "level1long": "Quebec", "level1short": "QC" },
"streetName": "6 Concession",
"city": "Shawville",
"country": "Canada",
"countryCode": "CA",
"zipcode": "J0X 2Y0",
"provider": "google"
}, { "formattedAddress": "6 4 Concession, Shawville, QC J0X 2Y0, Canada", "latitude": 45.5536211, "longitude": -76.4652012, "extra": { "googlePlaceId": "Ei02IDQgQ29uY2Vzc2lvbiwgU2hhd3ZpbGxlLCBRQyBKMFggMlkwLCBDYW5hZGE", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Shawville", "establishment": null }, "administrativeLevels": { "level3long": "Clarendon", "level3short": "Clarendon", "level2long": "Pontiac Regional County Municipality", "level2short": "Pontiac Regional County Municipality", "level1long": "Quebec", "level1short": "QC" }, "streetNumber": "6", "streetName": "4 Concession", "city": "Shawville", "country": "Canada", "countryCode": "CA", "zipcode": "J0X 2Y0", "provider": "google" }, { "formattedAddress": "6 13 Concession, Shawville, QC J0X 2Y0, Canada", "latitude": 45.6853623, "longitude": -76.3996143, "extra": { "googlePlaceId": "Ei42IDEzIENvbmNlc3Npb24sIFNoYXd2aWxsZSwgUUMgSjBYIDJZMCwgQ2FuYWRh", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Shawville", "establishment": null }, "administrativeLevels": { "level3long": "Clarendon", "level3short": "Clarendon", "level2long": "Pontiac Regional County Municipality", "level2short": "Pontiac Regional County Municipality", "level1long": "Quebec", "level1short": "QC" }, "streetNumber": "6", "streetName": "13 Concession", "city": "Shawville", "country": "Canada", "countryCode": "CA", "zipcode": "J0X 2Y0", "provider": "google" }, { "formattedAddress": "6 9 Concession, Shawville, QC J0X 2Y0, Canada", "latitude": 45.6216016, "longitude": -76.41497749999999, "extra": { "googlePlaceId": "Ei02IDkgQ29uY2Vzc2lvbiwgU2hhd3ZpbGxlLCBRQyBKMFggMlkwLCBDYW5hZGE", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Shawville", "establishment": null }, "administrativeLevels": { "level3long": "Clarendon", "level3short": "Clarendon", "level2long": "Pontiac", "level2short": "Pontiac", "level1long": "Québec", "level1short": "QC" }, "streetNumber": "6", "streetName": "9 Concession", "city": "Shawville", "country": "Canada", "countryCode": "CA", "zipcode": "J0X 2Y0", "provider": "google" }, { "formattedAddress": "6 12 Concession, Shawville, QC J0X 2Y0, Canada", "latitude": 45.6833569, "longitude": -76.4414346, "extra": { "googlePlaceId": "Ei42IDEyIENvbmNlc3Npb24sIFNoYXd2aWxsZSwgUUMgSjBYIDJZMCwgQ2FuYWRh", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Shawville", "establishment": null }, "administrativeLevels": { "level3long": "Clarendon", "level3short": "Clarendon", "level2long": "Pontiac Regional County Municipality", "level2short": "Pontiac Regional County Municipality", "level1long": "Quebec", "level1short": "QC" }, "streetNumber": "6", "streetName": "12 Concession", "city": "Shawville", "country": "Canada", "countryCode": "CA", "zipcode": "J0X 2Y0", "provider": "google" }, { "formattedAddress": "6 5e Concession, Shawville, QC J0X 2Y0, Canada", "latitude": 45.565811, "longitude": -76.4552647, "extra": { "googlePlaceId": "Ei42IDVlIENvbmNlc3Npb24sIFNoYXd2aWxsZSwgUUMgSjBYIDJZMCwgQ2FuYWRh", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Shawville", "establishment": null }, "administrativeLevels": { "level3long": "Clarendon", "level3short": "Clarendon", "level2long": "Pontiac", "level2short": "Pontiac", "level1long": "Québec", "level1short": "QC" }, "streetNumber": "6", "streetName": "5e Concession", "city": "Shawville", "country": "Canada", "countryCode": "CA", "zipcode": "J0X 2Y0", "provider": "google" }],
"17829 Island Rd, Martintown, ON, CA, K0C 1S0": [{
"formattedAddress": "17829 Island Rd, Martintown, ON K0C 1S0, Canada",
"latitude": 45.12533370000001,
"longitude": -74.7668516,
"extra": { "googlePlaceId": "ChIJUXMrn18fzEwRxFCOpmz0_ZE", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Martintown", "establishment": null },
"administrativeLevels": { "level3long": "South Stormont", "level3short": "South Stormont", "level2long": "Stormont, Dundas and Glengarry United Counties", "level2short": "Stormont, Dundas and Glengarry United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "17829",
"streetName": "Island Road",
"city": "Martintown",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0C 1S0",
"provider": "google"
}],
"5926 County Road #34 box 190, Lancaster, ON, CA, K0C 1N0": [],
"1083 Bulger Rd, Eganville, ON, CA, K0J": [{
"formattedAddress": "Bulger Rd, Ontario K0J, Canada",
"latitude": 45.5978226,
"longitude": -77.0247706,
"extra": { "googlePlaceId": "ChIJU9peBONc0UwRudvIWefcMMQ", "confidence": 0.7, "premise": null, "subpremise": null, "neighborhood": "Renfrew County", "establishment": null },
"administrativeLevels": { "level2long": "Renfrew County", "level2short": "Renfrew County", "level1long": "Ontario", "level1short": "ON" },
"streetName": "Bulger Road",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0J",
"provider": "google"
}],
"1907 Snake River Line, Cobden, ON, CA, K0J 1K0": [{
"formattedAddress": "1907 Snake River Line, Cobden, ON K0J 1K0, Canada",
"latitude": 45.685496,
"longitude": -76.9823569,
"extra": { "googlePlaceId": "ChIJCyle8y9C0UwR7JWbrKWbDkY", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Cobden", "establishment": null },
"administrativeLevels": { "level3long": "Laurentian Valley", "level3short": "Laurentian Valley", "level2long": "Renfrew County", "level2short": "Renfrew County", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "1907",
"streetName": "Snake River Line",
"city": "Cobden",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0J 1K0",
"provider": "google"
}],
"399 Sugar Bush Rd, Pakenham, ON, CA, K0A 2X0": [{
"formattedAddress": "399 Sugar Bush Rd, Pakenham, ON K0A 2X0, Canada",
"latitude": 45.2476607,
"longitude": -76.31161759999999,
"extra": { "googlePlaceId": "ChIJF4JVKjkY0kwRwnw_0IgzPRk", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Pakenham", "establishment": null },
"administrativeLevels": { "level2long": "Lanark County", "level2short": "Lanark County", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "399",
"streetName": "Sugar Bush Road",
"city": "Pakenham",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 2X0",
"provider": "google"
}],
"2131 Lockhead Rd W, ON, CA, K0A 2T0": [{
"formattedAddress": "2131 Lockhead Rd W, North Gower, ON K0A 2T0, Canada",
"latitude": 45.1170876,
"longitude": -75.6990416,
"extra": { "googlePlaceId": "EjMyMTMxIExvY2toZWFkIFJkIFcsIE5vcnRoIEdvd2VyLCBPTiBLMEEgMlQwLCBDYW5hZGE", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "North Gower", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "2131",
"streetName": "Lockhead Road West",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 2T0",
"provider": "google"
}],
"1981 Sixth Line Beckwith, Smith Falls, ON, CA, K7A 4S7": [{
"formattedAddress": "6th Line, Smiths Falls, ON K7A 4S7, Canada",
"latitude": 45.0566871,
"longitude": -76.1047772,
"extra": { "googlePlaceId": "ChIJtzUjRzQL0kwRTPTBwZaUI1E", "confidence": 0.7, "premise": null, "subpremise": null, "neighborhood": "Smiths Falls", "establishment": null },
"administrativeLevels": { "level3long": "Beckwith", "level3short": "Beckwith", "level2long": "Lanark County", "level2short": "Lanark County", "level1long": "Ontario", "level1short": "ON" },
"streetName": "6th Line",
"city": "Smiths Falls",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K7A 4S7",
"provider": "google"
}],
"430 River Rd, Ottawa, ON, CA, K1V 1E7": [{
"formattedAddress": "430 River Rd, Gloucester, ON K1V 1H2, Canada",
"latitude": 45.30064489999999,
"longitude": -75.69469889999999,
"extra": { "googlePlaceId": "Eiw0MzAgUml2ZXIgUmQsIEdsb3VjZXN0ZXIsIE9OIEsxViAxSDIsIENhbmFkYQ", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Gloucester", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "430",
"streetName": "River Road",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K1V 1H2",
"provider": "google"
}],
"PO Box 258, Woodlawn, ON, CA, K0A 3M0": [{
"formattedAddress": "Woodlawn, ON K0A 3M0, Canada",
"latitude": 45.4662323,
"longitude": -76.1220347,
"extra": { "googlePlaceId": "ChIJtxY_Mwb00UwRXSIdXjaSCvQ", "confidence": 0.5, "premise": null, "subpremise": null, "neighborhood": "Woodlawn", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"zipcode": "K0A 3M0",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"provider": "google"
}],
"155 High St, Almonte, ON, CA, K0A 1A0": [{
"formattedAddress": "155 High St, Almonte, ON K0A 1A0, Canada",
"latitude": 45.2243472,
"longitude": -76.19291059999999,
"extra": { "googlePlaceId": "ChIJ2SRrBYUa0kwR48SCByPE4Nc", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Almonte", "establishment": null },
"administrativeLevels": { "level2long": "Lanark County", "level2short": "Lanark County", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "155",
"streetName": "High Street",
"city": "Mississippi Mills",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 1A0",
"provider": "google"
}],
"4750 Ch Fallowfield Rd, Nepean, ON, CA, K2J 4S4": [{
"formattedAddress": "4750 Fallowfield Rd, Nepean, ON K2J 4S4, Canada",
"latitude": 45.266505,
"longitude": -75.80978,
"extra": { "googlePlaceId": "ChIJ_zY5rD38zUwR8F5cW3vCAxI", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Nepean", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "4750",
"streetName": "Fallowfield Road",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K2J 4S4",
"provider": "google"
}],
"3447 Farmview Rd, RR1 Kinburn, ON, CA, K0A 2H0": [{
"formattedAddress": "3447 Farmview Rd, Kinburn, ON K0A 2H0, Canada",
"latitude": 45.3589245,
"longitude": -76.1977715,
"extra": { "googlePlaceId": "ChIJS8NWpA8e0kwR41rdqc_CkmM", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Kinburn", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "3447",
"streetName": "Farmview Road",
"city": "Kinburn",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 2H0",
"provider": "google"
}],
"1701 Woodroffe Ave, Nepean, ON, CA, K2G 1W2": [{
"formattedAddress": "1701 Woodroffe Ave, Nepean, ON K2G 0C4, Canada",
"latitude": 45.3267752,
"longitude": -75.74527859999999,
"extra": { "googlePlaceId": "ChIJ-aPw8p0HzkwR2kLxJUNU9kQ", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Nepean", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "1701",
"streetName": "Woodroffe Avenue",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K2G 0C4",
"provider": "google"
}],
"Farrelton, QC, CA, J0X": [{
"formattedAddress": "Farrellton, QC J0X 1T0, Canada",
"latitude": 45.741248,
"longitude": -75.90776199999999,
"extra": { "googlePlaceId": "ChIJZX7vlKDc0UwRtSQzx0y53KQ", "confidence": 0.5, "premise": null, "subpremise": null, "neighborhood": "Farrellton", "establishment": null },
"administrativeLevels": { "level3long": "La Pêche", "level3short": "La Pêche", "level2long": "Les Collines-de-l'Outaouais", "level2short": "Les Collines-de-l'Outaouais", "level1long": "Québec", "level1short": "QC" },
"city": "Farrellton",
"country": "Canada",
"countryCode": "CA",
"zipcode": "J0X 1T0",
"provider": "google"
}],
"Box 231 EL 2208 Highway 511, Lanark, ON, CA, K0G 1K0": [],
"3476 Milton Rd, Ottawa, ON, CA, K4B 1H9": [{
"formattedAddress": "3476 Milton Rd, Navan, ON K4B 1H9, Canada",
"latitude": 45.417136,
"longitude": -75.4441595,
"extra": { "googlePlaceId": "ChIJuUayCU0NzkwRWvaj9NQtNa4", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Cumberland", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "3476",
"streetName": "Milton Road",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K4B 1H9",
"provider": "google"
}],
"11351 Miller Rd, North Augusta, ON, CA, K0G 1R0": [{
"formattedAddress": "11351 Miller Rd, North Augusta, ON K0G 1R0, Canada",
"latitude": 44.7177897,
"longitude": -75.88003499999999,
"extra": { "googlePlaceId": "EjIxMTM1MSBNaWxsZXIgUmQsIE5vcnRoIEF1Z3VzdGEsIE9OIEswRyAxUjAsIENhbmFkYQ", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "North Augusta", "establishment": null },
"administrativeLevels": { "level3long": "Elizabethtown-Kitley", "level3short": "Elizabethtown-Kitley", "level2long": "Leeds and Grenville United Counties", "level2short": "Leeds and Grenville United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "11351",
"streetName": "Miller Road",
"city": "North Augusta",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0G 1R0",
"provider": "google"
}],
"365 Parkdale Ave, Ottawa, ON, CA, K1Y 2Z6": [{
"formattedAddress": "365 Parkdale Ave, Ottawa, ON K1Y, Canada",
"latitude": 45.40154500000001,
"longitude": -75.72938669999999,
"extra": { "googlePlaceId": "EigzNjUgUGFya2RhbGUgQXZlLCBPdHRhd2EsIE9OIEsxWSwgQ2FuYWRh", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Ottawa", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "365",
"streetName": "Parkdale Avenue",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K1Y",
"provider": "google"
}],
"5814 34 Hwy, Vankleek Hill, ON, CA, K0B 1R0": [{
"formattedAddress": "5814 ON-34, Vankleek Hill, ON K0B 1R0, Canada",
"latitude": 45.5225422,
"longitude": -74.652243,
"extra": { "googlePlaceId": "ChIJCeptVYbrzkwRxwalAW8HwE0", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Vankleek Hill", "establishment": null },
"administrativeLevels": { "level3long": "Champlain", "level3short": "Champlain", "level2long": "Prescott and Russell United Counties", "level2short": "Prescott and Russell United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "5814",
"streetName": "Ontario 34",
"city": "Vankleek Hill",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0B 1R0",
"provider": "google"
}],
"1919 Route 900 W, St. Albert, ON, CA, K0A 3C0": [{
"formattedAddress": "1919 Rte 900 W, Crysler, ON K0A 1R0, Canada",
"latitude": 45.24159220000001,
"longitude": -75.1674498,
"extra": { "googlePlaceId": "EisxOTE5IFJ0ZSA5MDAgVywgQ3J5c2xlciwgT04gSzBBIDFSMCwgQ2FuYWRh", "confidence": 0.9, "premise": null, "subpremise": null, "neighborhood": "Crysler", "establishment": null },
"administrativeLevels": { "level3long": "The Nation Municipality", "level3short": "The Nation Municipality", "level2long": "Prescott and Russell United Counties", "level2short": "Prescott and Russell United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "1919",
"streetName": "Route 900 W",
"city": "Crysler",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 1R0",
"provider": "google"
}],
"Metcalfe Agricultural Society Fairgrounds, Metcalfe, ON, CA, K0A 2P0": [{
"formattedAddress": "2821 8th Line Rd, Metcalfe, ON K0A 2P0, Canada",
"latitude": 45.22925499999999,
"longitude": -75.46727109999999,
"extra": { "googlePlaceId": "ChIJb4PxK-_ezUwR4RjSYbABr1s", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Metcalfe", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "2821",
"streetName": "8th Line Road",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0A 2P0",
"provider": "google"
}],
"1 Union St, Berwick, ON, CA, K0C 1G0": [{
"formattedAddress": "1 Union St, Berwick, ON K0C 1G0, Canada",
"latitude": 45.1747249,
"longitude": -75.1112859,
"extra": { "googlePlaceId": "ChIJ42KWvAwrzEwRTGEKnt-yU-Q", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Berwick", "establishment": null },
"administrativeLevels": { "level3long": "North Stormont", "level3short": "North Stormont", "level2long": "Stormont, Dundas and Glengarry United Counties", "level2short": "Stormont, Dundas and Glengarry United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "1",
"streetName": "Union Street",
"city": "Berwick",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0C 1G0",
"provider": "google"
}],
"7070 Mansfield Rd, Stittsville, ON, CA, K2S 1B8": [{
"formattedAddress": "7070 Mansfield Rd, Stittsville, ON K2S 1B8, Canada",
"latitude": 45.1938821,
"longitude": -75.9176677,
"extra": { "googlePlaceId": "ChIJazsaTjL4zUwRgIDw2s3ypQo", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Goulbourn", "establishment": null },
"administrativeLevels": { "level2long": "Ottawa Division", "level2short": "Ottawa Division", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "7070",
"streetName": "Mansfield Road",
"city": "Ottawa",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K2S 1B8",
"provider": "google"
}],
"904 Kennedy Rd, Kemptville, ON, CA, K0G 1J0": [{
"formattedAddress": "904 Kennedy Rd, Kemptville, ON K0G 1J0, Canada",
"latitude": 45.02391799999999,
"longitude": -75.5939351,
"extra": { "googlePlaceId": "ChIJ5yCIkFXAzUwRNtu53XxdIAk", "confidence": 1, "premise": null, "subpremise": null, "neighborhood": "Kemptville", "establishment": null },
"administrativeLevels": { "level3long": "North Grenville", "level3short": "North Grenville", "level2long": "Leeds and Grenville United Counties", "level2short": "Leeds and Grenville United Counties", "level1long": "Ontario", "level1short": "ON" },
"streetNumber": "904",
"streetName": "Kennedy Road",
"city": "Kemptville",
"country": "Canada",
"countryCode": "CA",
"zipcode": "K0G 1J0",
"provider": "google"
}],
"1865 ch O'Toole Rd, Cumberland, ON, CA, K4C 1N2": [{
"formattedAddress": "1865 O'Toole Rd, Cumberland, ON K4C 1N2, Canada",
"latitude": 45.4846918,
"longitude": -75.4208514,