diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Permissions/PaymentsPermissionDefinitionProvider.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Permissions/PaymentsPermissionDefinitionProvider.cs index 721035dda..42fbade83 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Permissions/PaymentsPermissionDefinitionProvider.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Application/Permissions/PaymentsPermissionDefinitionProvider.cs @@ -1,26 +1,57 @@ -using Unity.Payments.Localization; -using Volo.Abp.Authorization.Permissions; -using Volo.Abp.Localization; - -namespace Unity.Payments.Permissions; - -public class PaymentsPermissionDefinitionProvider : PermissionDefinitionProvider -{ - public override void Define(IPermissionDefinitionContext context) - { - var grantApplicationPermissionsGroup = context.AddGroup(PaymentsPermissions.GroupName, L("Permission:Payments")); - - // Payment Requests - var paymentsPermissions = grantApplicationPermissionsGroup.AddPermission(PaymentsPermissions.Payments.Default, L("Permission:Payments.Default")); - paymentsPermissions.AddChild(PaymentsPermissions.Payments.L1ApproveOrDecline, L("Permission:Payments.L1ApproveOrDecline")); - paymentsPermissions.AddChild(PaymentsPermissions.Payments.L2ApproveOrDecline, L("Permission:Payments.L2ApproveOrDecline")); - paymentsPermissions.AddChild(PaymentsPermissions.Payments.L3ApproveOrDecline, L("Permission:Payments.L3ApproveOrDecline")); - paymentsPermissions.AddChild(PaymentsPermissions.Payments.RequestPayment, L("Permission:Payments.RequestPayment")); - paymentsPermissions.AddChild(PaymentsPermissions.Payments.EditSupplierInfo, L("Permission:Payments.EditSupplierInfo")); - } - - private static LocalizableString L(string name) - { - return LocalizableString.Create(name); - } -} +using Unity.Modules.Shared; +using Unity.Payments.Localization; +using Volo.Abp.Authorization.Permissions; +using Volo.Abp.Features; +using Volo.Abp.Localization; + +namespace Unity.Payments.Permissions; + +public class PaymentsPermissionDefinitionProvider : PermissionDefinitionProvider +{ + public override void Define(IPermissionDefinitionContext context) + { + var grantApplicationPermissionsGroup = context.AddGroup(PaymentsPermissions.GroupName, L("Permission:Payments")); + + // Payment Requests + var paymentsPermissions = grantApplicationPermissionsGroup.AddPermission(PaymentsPermissions.Payments.Default, L("Permission:Payments.Default")); + paymentsPermissions.AddChild(PaymentsPermissions.Payments.L1ApproveOrDecline, L("Permission:Payments.L1ApproveOrDecline")); + paymentsPermissions.AddChild(PaymentsPermissions.Payments.L2ApproveOrDecline, L("Permission:Payments.L2ApproveOrDecline")); + paymentsPermissions.AddChild(PaymentsPermissions.Payments.L3ApproveOrDecline, L("Permission:Payments.L3ApproveOrDecline")); + paymentsPermissions.AddChild(PaymentsPermissions.Payments.RequestPayment, L("Permission:Payments.RequestPayment")); + + //-- PAYMENT INFO PERMISSIONS + grantApplicationPermissionsGroup.Add_PaymentInfo_Permissions(); + } + + private static LocalizableString L(string name) + { + return LocalizableString.Create(name); + } +} + +[System.Diagnostics.CodeAnalysis.SuppressMessage("Minor Code Smell", "S1481:Unused local variables should be removed", Justification = "Configuration Code")] +public static class PaymentPermissionGroupDefinitionExtensions +{ + public static void Add_PaymentInfo_Permissions(this PermissionGroupDefinition grantApplicationPermissionsGroup) + { + #region PAYMENT INFO GRANULAR PERMISSIONS + var upx_Payment = grantApplicationPermissionsGroup + .AddPermission(UnitySelector.Payment.Default, LocalizableString.Create(UnitySelector.Payment.Default)) + .RequireFeatures("Unity.Payments"); + + var upx_Payment_Summary = upx_Payment.AddPaymentChild(UnitySelector.Payment.Summary.Default); + + var upx_Payment_Supplier = upx_Payment.AddPaymentChild(UnitySelector.Payment.Supplier.Default); + var upx_Payment_Supplier_Update = upx_Payment_Supplier.AddPaymentChild(UnitySelector.Payment.Supplier.Update); + + var upx_PaymentList_Authority = upx_Payment.AddPaymentChild(UnitySelector.Payment.PaymentList.Default); + #endregion + } + + + + public static PermissionDefinition AddPaymentChild(this PermissionDefinition parent, string name) + { + return parent.AddChild(name, LocalizableString.Create(name)).RequireFeatures("Unity.Payments"); + } +} diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Shared/Localization/Payments/en.json b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Shared/Localization/Payments/en.json index 4e041c448..d70f63207 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Shared/Localization/Payments/en.json +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Shared/Localization/Payments/en.json @@ -116,7 +116,6 @@ "Permission:Payments.L2ApproveOrDecline": "Approve/Decline L2 Payments", "Permission:Payments.L3ApproveOrDecline": "Approve/Decline L3 Payments", "Permission:Payments.RequestPayment": "Request Payment", - "Permission:Payments.EditSupplierInfo": "Update Supplier Info", "Enum:PaymentRequestStatus.L1Pending": "L1 Pending", "Enum:PaymentRequestStatus.L1Approved": "L1 Approved", @@ -132,6 +131,12 @@ "Enum:PaymentRequestStatus.NotValidated": "Not Validated", "Enum:PaymentRequestStatus.Paid": "Paid", "Enum:PaymentRequestStatus.Failed": "Payment Failed", - "Enum:PaymentRequestStatus.PaymentFailed": "Payment Failed" + "Enum:PaymentRequestStatus.PaymentFailed": "Payment Failed", + + "Unity.GrantManager.ApplicationManagement.Payment": "Payment Info", + "Unity.GrantManager.ApplicationManagement.Payment.Summary": "Payment Summary", + "Unity.GrantManager.ApplicationManagement.Payment.Supplier": "Supplier Info", + "Unity.GrantManager.ApplicationManagement.Payment.Supplier.Update": "Edit Supplier Info", + "Unity.GrantManager.ApplicationManagement.Payment.PaymentList": "Payment List" } } \ No newline at end of file diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentRequests/CreatePaymentRequests.cshtml b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentRequests/CreatePaymentRequests.cshtml index dd08fea90..c6bbfd514 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentRequests/CreatePaymentRequests.cshtml +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentRequests/CreatePaymentRequests.cshtml @@ -17,14 +17,17 @@ - - + + + - + + - + + @@ -34,10 +37,19 @@ @for (var i = 0; i < Model.ApplicationPaymentRequestForm?.Count; i++) { -
+
-
@Model.ApplicationPaymentRequestForm[i].ApplicantName/@Model.ApplicationPaymentRequestForm[i].InvoiceNumber
- + +
+ @Model.ApplicationPaymentRequestForm[i].ApplicantName/@Model.ApplicationPaymentRequestForm[i].InvoiceNumber +
+ +
@@ -49,16 +61,15 @@ - + class="amount unity-currency-input" + disabled="@Model.ApplicationPaymentRequestForm[i].DisableFields" + onchange='checkMaxValueRequest("@Model.ApplicationPaymentRequestForm[i].CorrelationId",this, @Model.ApplicationPaymentRequestForm[i].RemainingAmount)' /> diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentRequests/CreatePaymentRequestsModal.js b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentRequests/CreatePaymentRequestsModal.js index c90fbc4e8..77857084b 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentRequests/CreatePaymentRequestsModal.js +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentRequests/CreatePaymentRequestsModal.js @@ -1,21 +1,12 @@ function removeApplicationPaymentRequest(applicationId) { let $container = $('#' + applicationId); - - // Get the amount value inside this container before removing it - let amountValue = $container.find('.amount').val(); - let amount = parseFloat((amountValue || "0").replace(/,/g, '')); - - // Update the total amount - let $totalInput = $('.totalAmount'); - let currentTotal = parseFloat(($totalInput.val() || "0").replace(/,/g, '')) || 0; - let newTotal = currentTotal - amount; - if (newTotal < 0) newTotal = 0; - $totalInput.val(newTotal.toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2 })); + $container.remove(); $('#' + applicationId).remove(); let applicationCount = $('#ApplicationCount').val(); $('#ApplicationCount').val(applicationCount - 1); + if ((applicationCount - 1) == 1) { $('.max-error').css("display", "none"); $('.payment-divider').css("display", "none"); @@ -27,13 +18,16 @@ function removeApplicationPaymentRequest(applicationId) { else { $('#no-payment-msg').css("display", "none"); } + + // Always recalculate the total after removal + calculateTotalAmount(); } function closePaymentModal() { $('#payment-modal').modal('hide'); } -function checkMaxValue(applicationId, input, amountRemaining) { +function checkMaxValueRequest(applicationId, input, amountRemaining) { let enteredValue = parseFloat(input.value.replace(/,/g, "")); let remainingErrorId = "#column_" + applicationId + "_remaining_error"; if (amountRemaining < enteredValue) { @@ -41,6 +35,9 @@ function checkMaxValue(applicationId, input, amountRemaining) { } else { $(remainingErrorId).css("display", "none"); } + + // Update the total amount after checking the value + calculateTotalAmount(); } function submitPayments() { @@ -56,4 +53,13 @@ function submitPayments() { } else { $('#paymentform').submit(); } -}; \ No newline at end of file +}; + +function calculateTotalAmount() { + let total = 0; + $('.amount').each(function () { + let value = parseFloat($(this).val().replace(/,/g, '')) || 0; + total += value; + }); + $('.totalAmount').val(total.toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2 })); +} \ No newline at end of file diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentTags/PaymentTags.js b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentTags/PaymentTags.js index c5530e1f4..70ab08e94 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentTags/PaymentTags.js +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentTags/PaymentTags.js @@ -37,8 +37,8 @@ $(function () { let defaultClass = 'tags-common'; let id, tagText, tagClass; - id = tagData.Id; - tagText = tagData.Name || ''; + id = tagData.id; + tagText = tagData.name || ''; tagClass = tagData.class || defaultClass; @@ -79,7 +79,7 @@ $(function () { TagsInput.prototype.deleteTag = function (tag, i) { let self = this; - if (this.arr[i].Name === 'Uncommon Tags') { + if (this.arr[i].name === 'Uncommon Tags') { abp.message.confirm('Are you sure you want to delete all the uncommon tags?') .then(function (confirmed) { if (confirmed) { @@ -106,7 +106,7 @@ $(function () { if ( !this.options.duplicate && - this.arr.some(tag => tag.Name === string) + this.arr.some(tag => tag.name === string) ) { console.log('duplicate found "' + string + '"'); return true; @@ -130,6 +130,7 @@ $(function () { return this.arr.join(','); } TagsInput.prototype.setSuggestions = function (sugArray) { + suggestionsArray = sugArray; } @@ -164,7 +165,7 @@ $(function () { if (inputValue.length > 1) { const suggestions = suggestionsArray.filter(tag => - (tag.Name.toLowerCase()).includes(inputValue)); + (tag.name.toLowerCase()).includes(inputValue)); if (suggestions.length) { @@ -197,7 +198,7 @@ $(function () { suggestions.forEach(suggestion => { const suggestionElement = document.createElement('div'); suggestionElement.className = 'tags-suggestion-element'; - suggestionElement.innerText = typeof suggestion === 'string' ? suggestion : suggestion.Name; + suggestionElement.innerText = typeof suggestion === 'string' ? suggestion : suggestion.name; suggestionElement.addEventListener('click', function () { @@ -258,7 +259,7 @@ $(function () { const matched = suggestionsArray.find(s => - s.Name.toLowerCase() === str.toLowerCase() + s.name.toLowerCase() === str.toLowerCase() ); if (matched) { diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentTags/PaymentTagsSelectionModal.cshtml b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentTags/PaymentTagsSelectionModal.cshtml index 4078c598a..fe9adc773 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentTags/PaymentTagsSelectionModal.cshtml +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentTags/PaymentTagsSelectionModal.cshtml @@ -15,9 +15,6 @@ - - - diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentTags/PaymentTagsSelectionModal.cshtml.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentTags/PaymentTagsSelectionModal.cshtml.cs index e02989f0a..2df0bdbe5 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentTags/PaymentTagsSelectionModal.cshtml.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Pages/PaymentTags/PaymentTagsSelectionModal.cshtml.cs @@ -67,92 +67,14 @@ public PaymentTagsSelectionModalModel(IPaymentTagAppService paymentTagAppService } - public async Task OnGetAsync(string paymentRequestIds, string actionType) + public Task OnGetAsync(string paymentRequestIds, string actionType) { - CommonTags = new List(); - UncommonTags = new List(); + SelectedPaymentRequestIds = paymentRequestIds; ActionType = actionType; - var paymentRequests = JsonConvert.DeserializeObject>(SelectedPaymentRequestIds); - if (paymentRequests != null && paymentRequests.Count > 0) - { - try - { - var allTags = await _tagsService.GetListAsync(); - - var tags = await _paymentTagsService.GetListWithPaymentRequestIdsAsync(paymentRequests); - var groupedTags = tags - .Where(x => x.Tag != null) - .GroupBy(x => x.PaymentRequestId) - .ToDictionary( - g => g.Key, - g => g.Select(x => x.Tag!).DistinctBy(t => t.Id).ToList() - ); - foreach (var missingId in paymentRequests.Except(groupedTags.Keys)) - { - groupedTags[missingId] = new List(); - } - - - List commonTags = new(); - - if (groupedTags.Values.Count > 0) - { - commonTags = groupedTags.Values - .Aggregate((prev, next) => prev.IntersectBy(next.Select(t => t.Id), t => t.Id).ToList()); - } - - - Tags = groupedTags.Select(kvp => - { - var appId = kvp.Key; - var tagList = kvp.Value; - var uncommonTags = tagList - .Where(tag => !commonTags.Any(ct => ct.Id == tag.Id)) - .ToList(); - return new NewTagItem - { - PaymentRequestId = appId.ToString(), - CommonTags = commonTags.OrderBy(t => t.Name).ToList(), - UncommonTags = uncommonTags.OrderBy(t => t.Name).ToList() - }; - }).ToList(); - - if (Tags.Count > 0) - { - - CommonTags = Tags - .SelectMany(item => item.CommonTags) - .GroupBy(tag => tag.Id) - .Select(group => group.First()) - .OrderBy(tag => tag.Name) - .ToList(); - - UncommonTags = Tags - .SelectMany(item => item.UncommonTags) - .GroupBy(tag => tag.Id) - .Select(group => group.First()) - .OrderBy(tag => tag.Name) - .ToList(); - } - - AllTags = allTags - .DistinctBy(tag => tag.Id) - .OrderBy(tag => tag.Name) - .Select(tag => new GlobalTagDto - { - Id = tag.Id, - Name = tag.Name - }) - .ToList(); - } - catch (Exception ex) - { - Logger.LogError(ex, message: "Error loading tag select list"); - } - } + return Task.CompletedTask; } diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/PaymentActionBar/Default.js b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/PaymentActionBar/Default.js index 9ad9315b2..eeb0f66d0 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/PaymentActionBar/Default.js +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/PaymentActionBar/Default.js @@ -4,38 +4,116 @@ $(function () { viewUrl: 'PaymentTags/PaymentTagsSelectionModal', }); - tagPaymentModal.onOpen(function () { + tagPaymentModal.onOpen(async function () { let tagInput = new TagsInput({ selector: 'SelectedTags', duplicate: false, max: 50 }); - let suggestionsArray = []; - let uncommonTags = JSON.parse($('#UncommonTags').val()); - let commonTags = JSON.parse($('#CommonTags').val()); - let allTags = JSON.parse($('#AllTags').val()); - if (allTags) { - suggestionsArray = allTags; - } - tagInput.setSuggestions(suggestionsArray); + let selectedIds = $('#SelectedPaymentRequestIds').val(); + let paymentRequestIds = JSON.parse(selectedIds); - let tagInputArray = []; + if (!paymentRequestIds || paymentRequestIds.length === 0) return; + try { + let commonTags = []; + let uncommonTags = []; + let allTags = []; + let groupedTags = {}; - if (uncommonTags && uncommonTags.length != 0) { - tagInputArray.push({ tagId: '00000000-0000-0000-0000-000000000000', Name: 'Uncommon Tags', class: 'tags-uncommon', Id: '00000000-0000-0000-0000-000000000000' }) - } - if (commonTags?.length) { - commonTags.forEach(function (item, index) { + allTags = await unity.grantManager.globalTag.tags.getList(); + + let tags = await unity.payments.paymentTags.paymentTag.getListWithPaymentRequestIds(paymentRequestIds); + + + tags.forEach(function (item) { + if (!item.tag) return; + let paymentId = item.paymentRequestId; + if (!groupedTags[paymentId]) { + groupedTags[paymentId] = []; + } + + let exists = groupedTags[paymentId].some(t => t.id === item.tag.id); + if (!exists) { + groupedTags[paymentId].push(item.tag); + } + }); + + paymentRequestIds.forEach(function (id) { + if (!groupedTags.hasOwnProperty(id)) { + groupedTags[id] = []; + } + }); + + + let groupedValues = Object.values(groupedTags); + if (groupedValues.length > 0) { + commonTags = groupedValues.reduce(function (prev, next) { + return prev.filter(p => next.some(n => n.id === p.id)); + }); + } + let alltags = Object.entries(groupedTags).map(([paymentId, tagList]) => { + let uncommon = tagList.filter(tag => !commonTags.some(ct => ct.id === tag.id)); + + return { + paymentRequestId : paymentId, + commonTags: [...commonTags].sort((a, b) => a.name.localeCompare(b.name)), + uncommonTags: uncommon.sort((a, b) => a.name.localeCompare(b.name)) + }; + }); + + + $('#TagsJson').val(JSON.stringify(alltags)); + + let tagInputArray = []; + + + Object.entries(groupedTags).forEach(function ([paymentId, tagList]) { + let uncommon = tagList.filter(tag => !commonTags.some(ct => ct.id === tag.id)); + uncommonTags = uncommonTags.concat(uncommon); + - tagInputArray.push({ tagId: item.Id, Name: item.Name, class: 'tags-common', Id: item.Id }) }); + + + if (uncommonTags.length > 0) { + tagInputArray.unshift({ + tagId: '00000000-0000-0000-0000-000000000000', + name: 'Uncommon Tags', + class: 'tags-uncommon', + id: '00000000-0000-0000-0000-000000000000' + }); + } + + + if (commonTags.length > 0) { + commonTags.forEach(function (tag) { + tagInputArray.push({ + tagId: tag.id, + name: tag.name, + class: 'tags-common', + id: tag.id + }); + }); + } + + tagInput.setSuggestions( + (allTags || []).filter((value, index, self) => + index === self.findIndex(t => t.id === value.id) + ).sort((a, b) => a.name.localeCompare(b.name)) + ); + + tagInput.addData(tagInputArray); + } catch (error) { + console.error("Error loading tag select list", error); } - tagInput.addData(tagInputArray); + }); PubSub.subscribe("select_batchpayment_application", (msg, data) => { - selectedPaymentIds.push(data.id); + if (!selectedPaymentIds.includes(data.id)) { + selectedPaymentIds.push(data.id); + } manageActionButtons(); }); @@ -78,6 +156,7 @@ $(function () { 'The payment tags have been successfully updated.', 'Payment Tags' ); + selectedPaymentIds = []; PubSub.publish("refresh_payment_list"); }); diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/PaymentInfo/Default.cshtml b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/PaymentInfo/Default.cshtml index c8f6c117b..dd72c9880 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/PaymentInfo/Default.cshtml +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/PaymentInfo/Default.cshtml @@ -1,7 +1,8 @@ @using Volo.Abp.Features -@using Volo.Abp.Authorization.Permissions; -@using Unity.Payments.Web.Views.Shared.Components.PaymentInfo; -@using Unity.Payments.Localization; +@using Volo.Abp.Authorization.Permissions +@using Unity.Payments.Web.Views.Shared.Components.PaymentInfo +@using Unity.Payments.Localization +@using Unity.Modules.Shared @using Unity.Modules.Shared.Correlation @using Unity.GrantManager.Flex @using Microsoft.AspNetCore.Mvc.Localization @@ -30,6 +31,8 @@
@* Zone Section : Payment.Summary *@ + @if (await PermissionChecker.IsGrantedAsync(UnitySelector.Payment.Summary.Default)) + {
@@ -65,9 +68,13 @@
- + } + @* Zone Section : Payment.Supplier *@ - @await Component.InvokeAsync("SupplierInfo", new { applicantId = Model.ApplicantId }) + @if (await PermissionChecker.IsGrantedAsync(UnitySelector.Payment.Supplier.Default)) + { + @await Component.InvokeAsync("SupplierInfo", new { applicantId = Model.ApplicantId }) + } @* Zone Section : Payment.Worksheet *@ @if (await FeatureChecker.IsEnabledAsync("Unity.Flex")) @@ -84,6 +91,8 @@ } @* Zone Section : Payment.PaymentList *@ + @if (await PermissionChecker.IsGrantedAsync(UnitySelector.Payment.PaymentList.Default)) + {
@@ -91,10 +100,14 @@
- + } + + @if (await PermissionChecker.IsGrantedAsync(UnitySelector.Payment.PaymentList.Default)) + { @await Component.InvokeAsync("PaymentActionBar") + } diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/PaymentInfo/Default.js b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/PaymentInfo/Default.js index 81776cfb8..65fa8e4d4 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/PaymentInfo/Default.js +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/PaymentInfo/Default.js @@ -73,7 +73,7 @@ try { // Create an initial promise - either the supplier update or a resolved promise - const shouldUpdateSupplier = abp.auth.isGranted('PaymentsPermissions.Payments.EditSupplierInfo') && + const shouldUpdateSupplier = abp.auth.isGranted('Unity.GrantManager.ApplicationManagement.Payment.Supplier.Update') && paymentInfoObj['SupplierNumber'] && paymentInfoObj['SupplierNumber'] !== paymentInfoObj['OriginalSupplierNumber']; @@ -158,6 +158,7 @@ }); return newData; } + dataTable = initializeDataTable({ dt, defaultVisibleColumns, @@ -448,7 +449,8 @@ function openCasResponseModal(casResponse) { function enablePaymentInfoSaveBtn() { if (!$("#paymentInfoForm").valid() - || !abp.auth.isGranted('PaymentsPermissions.Payments.EditSupplierInfo') + // NOTE: Required for worksheets, replace on adding worksheet permissions + || !abp.auth.isGranted('Unity.GrantManager.ApplicationManagement.Payment') || formHasInvalidCurrencyCustomFields("paymentInfoForm")) { $('#savePaymentInfoBtn').prop('disabled', true); return; diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/SupplierInfo/Default.cshtml b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/SupplierInfo/Default.cshtml index 010d29b0b..1e07f9d82 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/SupplierInfo/Default.cshtml +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/SupplierInfo/Default.cshtml @@ -32,19 +32,28 @@ -
- - Refresh Site List - -
+ @if (Model.HasEditSupplierInfo) + { +
+ + Refresh Site List + +
+ } - + @if (Model.HasEditSupplierInfo) + { + + } else + { + + } diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/SupplierInfo/SupplierInfo.js b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/SupplierInfo/SupplierInfo.js index a75de7599..9c1415d1a 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/SupplierInfo/SupplierInfo.js +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/SupplierInfo/SupplierInfo.js @@ -315,7 +315,12 @@ $(function () { if(full.markDeletedInUse) { return 'Deleted-In Use'; } - return ``; + + if (abp.auth.isGranted('Unity.GrantManager.ApplicationManagement.Payment.Supplier.Update')) { + return ``; + } + + return ``; }, index: columnIndex } diff --git a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/SupplierInfo/SupplierInfoViewComponent.cs b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/SupplierInfo/SupplierInfoViewComponent.cs index 7d3b2bf02..aa081e5db 100644 --- a/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/SupplierInfo/SupplierInfoViewComponent.cs +++ b/applications/Unity.GrantManager/modules/Unity.Payments/src/Unity.Payments.Web/Views/Shared/Components/SupplierInfo/SupplierInfoViewComponent.cs @@ -1,17 +1,17 @@ using Microsoft.AspNetCore.Mvc; -using Volo.Abp.AspNetCore.Mvc.UI.Widgets; -using Volo.Abp.AspNetCore.Mvc; -using System.Threading.Tasks; using System; -using Volo.Abp.AspNetCore.Mvc.UI.Bundling; using System.Collections.Generic; -using Unity.Payments.Suppliers; -using Unity.Modules.Shared.Correlation; -using Volo.Abp.Features; +using System.Threading.Tasks; using Unity.GrantManager.Applicants; -using Volo.Abp.Authorization.Permissions; -using Unity.Payments.Permissions; using Unity.GrantManager.Applications; +using Unity.Modules.Shared; +using Unity.Modules.Shared.Correlation; +using Unity.Payments.Suppliers; +using Volo.Abp.AspNetCore.Mvc; +using Volo.Abp.AspNetCore.Mvc.UI.Bundling; +using Volo.Abp.AspNetCore.Mvc.UI.Widgets; +using Volo.Abp.Authorization.Permissions; +using Volo.Abp.Features; namespace Unity.Payments.Web.Views.Shared.Components.SupplierInfo { @@ -60,7 +60,7 @@ public async Task InvokeAsync(Guid applicantId) private async Task HasEditSupplier() { - return await permissionChecker.IsGrantedAsync(PaymentsPermissions.Payments.EditSupplierInfo); + return await permissionChecker.IsGrantedAsync(UnitySelector.Payment.Supplier.Update); } } diff --git a/applications/Unity.GrantManager/modules/Unity.Theme.UX2/src/Unity.Theme.UX2/wwwroot/themes/ux2/unity-styles.css b/applications/Unity.GrantManager/modules/Unity.Theme.UX2/src/Unity.Theme.UX2/wwwroot/themes/ux2/unity-styles.css index d6b55df92..43f1cef8f 100644 --- a/applications/Unity.GrantManager/modules/Unity.Theme.UX2/src/Unity.Theme.UX2/wwwroot/themes/ux2/unity-styles.css +++ b/applications/Unity.GrantManager/modules/Unity.Theme.UX2/src/Unity.Theme.UX2/wwwroot/themes/ux2/unity-styles.css @@ -9,6 +9,7 @@ --bc-colors-grey-text-100: #9F9D9C; --bc-colors-blue-text-links: #1A5A96; --bc-colors-blue-background: #013366; + --bc-colors-ligh-gray-background: #FAF9F8; --bc-colors-white-background: #F2F2F2; --bc-colors-blue-primary-500: #003366; --bc-colors-white-primary-500: #FFF; @@ -864,6 +865,12 @@ div.dataTables_wrapper div.dataTables_filter { opacity: 0.8 !important; } +.unt-form-label-primary { + color: var(--bc-colors-blue-primary); + -webkit-font-smoothing: antialiased; + font-weight: bold; +} + .filter-search-action-bar { display: flex; justify-content: flex-end; diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantApplications/IApplicationTagsService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantApplications/IApplicationTagsService.cs index bced8f801..bcc2aa109 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantApplications/IApplicationTagsService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantApplications/IApplicationTagsService.cs @@ -13,7 +13,7 @@ public interface IApplicationTagsService : IApplicationService Task> AssignTagsAsync(AssignApplicationTagsDto input); - Task GetApplicationTagsAsync(Guid id); + Task> GetApplicationTagsAsync(Guid id); Task> GetTagSummaryAsync(); Task> RenameTagAsync(string originalTag, string replacementTag); diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Permissions/GrantApplications/GrantApplicationPermissionDefinitionProvider.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Permissions/GrantApplications/GrantApplicationPermissionDefinitionProvider.cs index c85624249..2263677df 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Permissions/GrantApplications/GrantApplicationPermissionDefinitionProvider.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/Permissions/GrantApplications/GrantApplicationPermissionDefinitionProvider.cs @@ -72,7 +72,7 @@ public override void Define(IPermissionDefinitionContext context) //-- APPLICANT INFO PERMISSIONS grantApplicationPermissionsGroup.AddApplication_ApplicantInfo_Permissions(); - // Project Info + //-- PROJECT INFO PERMISSIONS grantApplicationPermissionsGroup.AddApplication_ProjectInfo_Permissions(); var settingManagement = context.GetGroup(SettingManagementPermissions.GroupName); diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantSupplierAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantSupplierAppService.cs index 358d2f400..0a69399e2 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantSupplierAppService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Applicants/ApplicantSupplierAppService.cs @@ -5,6 +5,7 @@ using System.Threading.Tasks; using Unity.GrantManager.Applications; using Unity.GrantManager.Payments; +using Unity.Modules.Shared; using Unity.Modules.Shared.Correlation; using Unity.Payments.Domain.Suppliers; using Unity.Payments.Integrations.Cas; @@ -42,7 +43,7 @@ public async Task GetSupplierByBusinessNumber(string bn9) /// /// Update the supplier number for the applicant regardless of application. /// - [Authorize(PaymentsPermissions.Payments.EditSupplierInfo)] + [Authorize(UnitySelector.Payment.Supplier.Update)] public async Task UpdateApplicantSupplierNumberAsync(Guid applicantId, string supplierNumber) { if (await FeatureChecker.IsEnabledAsync(PaymentConsts.UnityPaymentsFeature) && !string.IsNullOrEmpty(supplierNumber)) diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicationForms/ApplicationFormSycnronizationService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicationForms/ApplicationFormSycnronizationService.cs index af5911b1d..ca61e4fa1 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicationForms/ApplicationFormSycnronizationService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/ApplicationForms/ApplicationFormSycnronizationService.cs @@ -205,7 +205,7 @@ private async Task ProcessSubmission(ApplicationFormDto applicationFormDto, JObj foreach (string submissionId in missingSubmissions) { - missingSubmissionsReportBuilder.AppendLine($"{missingSubmissionsCounter}-{applicationFormDto.ApplicationFormName}-{submissionId}
"); + missingSubmissionsReportBuilder.AppendLine($"{missingSubmissionsCounter}-\"{applicationFormDto.ApplicationFormName}\"-{submissionId}
"); missingSubmissionsCounter++; } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/ApplicationTagsAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/ApplicationTagsAppService.cs index 56f2dd01c..504314ed6 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/ApplicationTagsAppService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/ApplicationTagsAppService.cs @@ -14,6 +14,7 @@ using Volo.Abp.Domain.Repositories; using Volo.Abp.EventBus.Local; using Volo.Abp.ObjectMapping; +using static Unity.GrantManager.Permissions.GrantApplicationPermissions; namespace Unity.GrantManager.GrantApplications; @@ -40,20 +41,24 @@ public async Task> GetListAsync() public async Task> GetListWithApplicationIdsAsync(List ids) { - var tags = await _applicationTagsRepository.GetListAsync(e => ids.Contains(e.ApplicationId)); + var queryable = await _applicationTagsRepository.GetQueryableAsync(); + + var tags = await queryable + .Where(x => ids.Contains(x.ApplicationId)) + .Include(x => x.Tag) + .ToListAsync(); return ObjectMapper.Map, List>(tags.OrderBy(t => t.Id).ToList()); } - public async Task GetApplicationTagsAsync(Guid id) + public async Task> GetApplicationTagsAsync(Guid id) { - var applicationTags = await (await _applicationTagsRepository.GetQueryableAsync()) - .Include(x => x.Tag) - .FirstOrDefaultAsync(x => x.ApplicationId == id); - - if (applicationTags == null) return null; + var tags = await (await _applicationTagsRepository + .WithDetailsAsync(x => x.Tag)) + .Where(e => e.ApplicationId == id) + .ToListAsync(); - return ObjectMapper.Map(applicationTags); + return ObjectMapper.Map, List>(tags); } public async Task> AssignTagsAsync(AssignApplicationTagsDto input) diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/GrantApplicationAppService.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/GrantApplicationAppService.cs index 7804727c2..785acb68d 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/GrantApplicationAppService.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/GrantApplicationAppService.cs @@ -540,7 +540,7 @@ public async Task UpdateFundingAgreementInfoAsync(Guid id, /// /// Update the supplier number for the applicant associated with the application. /// - [Authorize(PaymentsPermissions.Payments.EditSupplierInfo)] + [Authorize(UnitySelector.Payment.Supplier.Update)] public async Task UpdateSupplierNumberAsync(Guid applicationId, string supplierNumber) { // Could be moved to payments module but dependency on ApplicationId diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/BackgroundWorkers/IntakeSyncWorker.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/BackgroundWorkers/IntakeSyncWorker.cs index bbd104010..5f90f6eb8 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/BackgroundWorkers/IntakeSyncWorker.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Application/Intakes/BackgroundWorkers/IntakeSyncWorker.cs @@ -1,5 +1,6 @@ using Microsoft.Extensions.Logging; using Quartz; +using System; using System.Threading.Tasks; using Unity.GrantManager.ApplicationForms; using Unity.GrantManager.Settings; @@ -78,8 +79,9 @@ public override async Task Execute(IJobExecutionContext context) emailBodyBuilder.AppendLine("
Bests"); string emailBody = emailBodyBuilder.ToString(); + string? envInfo = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT"); - if (sendEmail) { + if (sendEmail && string.Equals(envInfo, "Production", StringComparison.OrdinalIgnoreCase)) { string htmlBody = $@" diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Localization/GrantManager/en.json b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Localization/GrantManager/en.json index 415b3f886..925b17a5a 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Localization/GrantManager/en.json +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Localization/GrantManager/en.json @@ -213,9 +213,8 @@ "Unity.GrantManager.ApplicationManagement.Funding.Agreement": "Funding Agreement", "Unity.GrantManager.ApplicationManagement.Funding.Agreement.Update": "Edit Funding Agreement", - "Unity.GrantManager.ApplicationManagement.Payment": "Payment", + "Unity.GrantManager.ApplicationManagement.Payment": "Payment Info", "Unity.GrantManager.ApplicationManagement.Payment.Summary": "Payment Summary", - "Unity.GrantManager.ApplicationManagement.Payment.Summary.Update": "Edit Payment Summary", "Unity.GrantManager.ApplicationManagement.Payment.Supplier": "Supplier Info", "Unity.GrantManager.ApplicationManagement.Payment.Supplier.Update": "Edit Supplier Info", "Unity.GrantManager.ApplicationManagement.Payment.PaymentList": "Payment List", @@ -449,6 +448,6 @@ "ApplicationBatchApprovalRequest:InvalidPermissions": "Invalid permissions", "ApplicationBatchApprovalRequest:InvalidApprovedAmount": "Invalid Approved Amount, it must be greater than 0.00", "ApplicationBatchApprovalRequest:MaxCountExceeded": "You have exceeded the maximum number of items for bulk approval. Please reduce the number to {0} or fewer", - "ApplicationBatchApprovalRequest:InvalidRecommendedAmount": "Invalid Recommended Amount, it must be greater than 0.00" + "ApplicationBatchApprovalRequest:InvalidRecommendedAmount": "Invalid Recommended Amount, it must be greater than 0.00" } } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Permissions/PermissionGrantsDataSeeder.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Permissions/PermissionGrantsDataSeeder.cs index 2c7405890..59abfa7e5 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Permissions/PermissionGrantsDataSeeder.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Domain/Permissions/PermissionGrantsDataSeeder.cs @@ -59,6 +59,7 @@ public PermissionGrantsDataSeeder(IPermissionDataSeeder permissionDataSeeder) ]; public readonly List PaymentInfo_CommonPermissions = [ + UnitySelector.Payment.Default, UnitySelector.Payment.Summary.Default, UnitySelector.Payment.Supplier.Default, UnitySelector.Payment.Supplier.Update, @@ -120,6 +121,7 @@ await _permissionDataSeeder.SeedAsync(RolePermissionValueProvider.ProviderName, .. ReviewAndAssessment_CommonPermissions, .. ApplicantInfo_CommonPermissions, .. ProjectInfo_CommonPermissions, + .. PaymentInfo_CommonPermissions, .. Notifications_CommonPermissions, .. Dashboard_CommonPermissions ], context.TenantId); @@ -136,6 +138,7 @@ await _permissionDataSeeder.SeedAsync(RolePermissionValueProvider.ProviderName, .. ReviewAndAssessment_CommonPermissions, .. ApplicantInfo_CommonPermissions, .. ProjectInfo_CommonPermissions, + .. PaymentInfo_CommonPermissions, .. Notifications_CommonPermissions, .. Dashboard_CommonPermissions ], context.TenantId); @@ -152,6 +155,7 @@ await _permissionDataSeeder.SeedAsync(RolePermissionValueProvider.ProviderName, .. ReviewAndAssessment_CommonPermissions, .. ApplicantInfo_CommonPermissions, .. ProjectInfo_CommonPermissions, + .. PaymentInfo_CommonPermissions, .. Notifications_CommonPermissions, .. Dashboard_CommonPermissions ], context.TenantId); @@ -175,6 +179,7 @@ await _permissionDataSeeder.SeedAsync(RolePermissionValueProvider.ProviderName, .. ReviewAndAssessment_CommonPermissions, .. ApplicantInfo_CommonPermissions, .. ProjectInfo_CommonPermissions, + .. PaymentInfo_CommonPermissions, .. Notifications_CommonPermissions, .. Dashboard_CommonPermissions, @@ -195,6 +200,7 @@ await _permissionDataSeeder.SeedAsync(RolePermissionValueProvider.ProviderName, .. ReviewAndAssessment_CommonPermissions, .. ApplicantInfo_CommonPermissions, .. ProjectInfo_CommonPermissions, + .. PaymentInfo_CommonPermissions, .. Notifications_CommonPermissions, .. Dashboard_CommonPermissions ], context.TenantId); @@ -214,6 +220,7 @@ await _permissionDataSeeder.SeedAsync(RolePermissionValueProvider.ProviderName, .. ReviewAndAssessment_CommonPermissions, .. ApplicantInfo_CommonPermissions, .. ProjectInfo_CommonPermissions, + .. PaymentInfo_CommonPermissions, .. Notifications_CommonPermissions, NotificationsPermissions.Settings, .. Dashboard_CommonPermissions, @@ -233,6 +240,7 @@ await _permissionDataSeeder.SeedAsync(RolePermissionValueProvider.ProviderName, .. ReviewAndAssessment_CommonPermissions, .. ApplicantInfo_CommonPermissions, .. ProjectInfo_CommonPermissions, + .. PaymentInfo_CommonPermissions, .. Notifications_CommonPermissions, .. Dashboard_CommonPermissions ], context.TenantId); @@ -248,6 +256,7 @@ await _permissionDataSeeder.SeedAsync(RolePermissionValueProvider.ProviderName, .. ReviewAndAssessment_CommonPermissions, .. ApplicantInfo_CommonPermissions, .. ProjectInfo_CommonPermissions, + .. PaymentInfo_CommonPermissions, .. Notifications_CommonPermissions, .. Dashboard_CommonPermissions ], context.TenantId); @@ -263,6 +272,7 @@ await _permissionDataSeeder.SeedAsync(RolePermissionValueProvider.ProviderName, .. ReviewAndAssessment_CommonPermissions, .. ApplicantInfo_CommonPermissions, .. ProjectInfo_CommonPermissions, + .. PaymentInfo_CommonPermissions, .. Notifications_CommonPermissions, .. Dashboard_CommonPermissions ], context.TenantId); @@ -294,6 +304,11 @@ await _permissionDataSeeder.SeedAsync(RolePermissionValueProvider.ProviderName, UnitySelector.Project.Summary.Default, UnitySelector.Project.Location.Default, + UnitySelector.Payment.Default, + UnitySelector.Payment.Summary.Default, + UnitySelector.Payment.Supplier.Default, + UnitySelector.Payment.PaymentList.Default, + NotificationsPermissions.Email.Default, ], context.TenantId); diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Identity/PolicyRegistrant.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Identity/PolicyRegistrant.cs index 81915dbf5..e712e4019 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Identity/PolicyRegistrant.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Identity/PolicyRegistrant.cs @@ -151,6 +151,8 @@ internal static void Register(ServiceConfigurationContext context) )); //-- PAYMENT INFO + authorizationBuilder.AddPolicy(UnitySelector.Payment.Default, + policy => policy.RequireClaim(PermissionConstant, UnitySelector.Payment.Default)); authorizationBuilder.AddPolicy(UnitySelector.Payment.Supplier.Default, policy => policy.RequireClaim(PermissionConstant, UnitySelector.Payment.Summary.Default)); authorizationBuilder.AddPolicy(UnitySelector.Payment.Supplier.Default, diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationTags/ApplicationTags.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationTags/ApplicationTags.js index d3548d970..742bf71a3 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationTags/ApplicationTags.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationTags/ApplicationTags.js @@ -37,8 +37,8 @@ $(function () { let defaultClass = 'tags-common'; let id,tagText, tagClass; - id = tagData.Id; - tagText = tagData.Name || ''; + id = tagData.id; + tagText = tagData.name || ''; tagClass = tagData.class || defaultClass; @@ -79,7 +79,7 @@ $(function () { TagsInput.prototype.deleteTag = function (tag, i) { let self = this; - if (this.arr[i].Name === 'Uncommon Tags') { + if (this.arr[i].name === 'Uncommon Tags') { abp.message.confirm('Are you sure you want to delete all the uncommon tags?') .then(function (confirmed) { if (confirmed) { @@ -106,7 +106,7 @@ $(function () { if ( !this.options.duplicate && - this.arr.some(tag => tag.Name === string) + this.arr.some(tag => tag.name === string) ) { console.log('duplicate found "' + string + '"'); return true; @@ -164,7 +164,7 @@ $(function () { if (inputValue.length > 1) { const suggestions = suggestionsArray.filter(tag => - (tag.Name.toLowerCase()).includes(inputValue)); + (tag.name.toLowerCase()).includes(inputValue)); if (suggestions.length) { @@ -197,7 +197,7 @@ $(function () { suggestions.forEach(suggestion => { const suggestionElement = document.createElement('div'); suggestionElement.className = 'tags-suggestion-element'; - suggestionElement.innerText = typeof suggestion === 'string' ? suggestion : suggestion.Name; + suggestionElement.innerText = typeof suggestion === 'string' ? suggestion : suggestion.name; suggestionElement.addEventListener('click', function () { @@ -258,7 +258,7 @@ $(function () { const matched = suggestionsArray.find(s => - s.Name.toLowerCase() === str.toLowerCase() + s.name.toLowerCase() === str.toLowerCase() ); if (matched) { diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationTags/ApplicationTagsSelectionModal.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationTags/ApplicationTagsSelectionModal.cshtml index cb696be86..501cf5ff9 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationTags/ApplicationTagsSelectionModal.cshtml +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationTags/ApplicationTagsSelectionModal.cshtml @@ -16,9 +16,7 @@ - - - + diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationTags/ApplicationTagsSelectionModal.cshtml.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationTags/ApplicationTagsSelectionModal.cshtml.cs index 2b2114a83..96a14a971 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationTags/ApplicationTagsSelectionModal.cshtml.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicationTags/ApplicationTagsSelectionModal.cshtml.cs @@ -64,83 +64,13 @@ public ApplicationTagsModalModel(IApplicationTagsService applicationTagsService, _tagsService = tagsService ?? throw new ArgumentNullException(nameof(tagsService)); } - public async Task OnGetAsync(string applicationIds, string actionType) + public Task OnGetAsync(string applicationIds, string actionType) { SelectedApplicationIds = applicationIds; ActionType = actionType; - var applications = JsonConvert.DeserializeObject>(SelectedApplicationIds); - if (applications != null && applications.Count > 0) - { - try - { - CommonTags = new List(); - UncommonTags = new List(); - var allTags = await _tagsService.GetListAsync(); - var tags = await _applicationTagsService.GetListWithApplicationIdsAsync(applications); - var groupedTags = tags - .Where(x => x.Tag != null) - .GroupBy(x => x.ApplicationId) - .ToDictionary( - g => g.Key, - g => g.Select(x => x.Tag!).DistinctBy(t => t.Id).ToList() - ); - foreach (var missingId in applications.Except(groupedTags.Keys)) - { - groupedTags[missingId] = new List(); - } - List commonTags = new(); - - if (groupedTags.Values.Count > 0) - { - commonTags = groupedTags.Values - .Aggregate((prev, next) => prev.IntersectBy(next.Select(t => t.Id), t => t.Id).ToList()); - } - - Tags = groupedTags.Select(kvp => - { - var appId = kvp.Key; - var tagList = kvp.Value; - - var uncommonTags = tagList - .Where(tag => !commonTags.Any(ct => ct.Id == tag.Id)) - .ToList(); - - return new NewTagItem - { - ApplicationId = appId.ToString(), - CommonTags = commonTags.OrderBy(t => t.Name).ToList(), - UncommonTags = uncommonTags.OrderBy(t => t.Name).ToList() - }; - }).ToList(); - - if (Tags.Count > 0) - { - - CommonTags = Tags - .SelectMany(item => item.CommonTags) - .GroupBy(tag => tag.Id) - .Select(group => group.First()) - .OrderBy(tag => tag.Name) - .ToList(); - - UncommonTags = Tags - .SelectMany(item => item.UncommonTags) - .GroupBy(tag => tag.Id) - .Select(group => group.First()) - .OrderBy(tag => tag.Name) - .ToList(); - } - AllTags = allTags - .DistinctBy(tag => tag.Id) - .OrderBy(tag => tag.Name) - .ToList(); - } - catch (Exception ex) - { - Logger.LogError(ex, message: "Error loading tag select list"); - } - } + // Return a completed task to ensure all code paths return a value + return Task.CompletedTask; } public async Task OnPostAsync() { diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Details.cshtml b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Details.cshtml index 3f8837388..3b51a25c7 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Details.cshtml +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Details.cshtml @@ -207,7 +207,7 @@ @*-------- Funding Agreement Section END ---------*@ @*-------- Payments Section ---------*@ - @if (await FeatureChecker.IsEnabledAsync("Unity.Payments") && IsZoneEnabled(UnitySelector.Payment.Default)) + @if (await FeatureChecker.IsEnabledAsync("Unity.Payments") && await IsZoneVisible(UnitySelector.Payment.Default)) {
diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.css b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.css index 839e06aa9..d2aa2837b 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.css +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.css @@ -25,6 +25,11 @@ table.dataTable tbody tr { border-color: var(--bs-border-color); } +.payment-item { + background-color: var(--bc-colors-ligh-gray-background); +} + + /**CSS for dataTable stateRestore - Save View**/ .container-grant-application .dtsr-background { background: rgba(0, 0, 0, 0.5) !important; diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.js index e7050d8e9..1363c25da 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.js @@ -557,10 +557,10 @@ return { title: 'Total Paid Amount $', name: 'totalPaidAmount', - data: 'totalPaidAmount', + data: 'paymentInfo', className: 'data-table-header currency-display', render: function (data) { - return ''; + return data?.totalPaid ?? ''; }, index: columnIndex } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ActionBar/Default.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ActionBar/Default.js index 8ba4186ee..7c9c06ae0 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ActionBar/Default.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ActionBar/Default.js @@ -22,41 +22,110 @@ $(function () { viewUrl: 'PaymentRequests/CreatePaymentRequests', }); - tagApplicationModal.onOpen(function () { + tagApplicationModal.onOpen(async function () { let tagInput = new TagsInput({ selector: 'SelectedTags', duplicate: false, max: 50 }); - let suggestionsArray = []; - let uncommonTags = JSON.parse($('#UncommonTags').val()); - let commonTags = JSON.parse($('#CommonTags').val()); - let allTags = JSON.parse($('#AllTags').val()); - if (allTags) { - suggestionsArray = allTags; - } - tagInput.setSuggestions(suggestionsArray); + let selectedIds = $('#SelectedApplicationIds').val(); + let applicationIds = JSON.parse(selectedIds); - let tagInputArray = []; - - if (uncommonTags && uncommonTags.length != 0) { - tagInputArray.push({ tagId: '00000000-0000-0000-0000-000000000000', Name: 'Uncommon Tags', class: 'tags-uncommon', Id: '00000000-0000-0000-0000-000000000000' }) + if (!applicationIds || applicationIds.length === 0) return; - } - - if (commonTags?.length) { + try { + let commonTags = []; + let uncommonTags = []; + let allTags = []; + let groupedTags = {}; - + + allTags = await unity.grantManager.globalTag.tags.getList(); - commonTags.forEach(function (item, index) { + let tags = await unity.grantManager.grantApplications.applicationTags.getListWithApplicationIds(applicationIds); + + + tags.forEach(function (item) { + if (!item.tag) return; + let appId = item.applicationId; + if (!groupedTags[appId]) { + groupedTags[appId] = []; + } + + let exists = groupedTags[appId].some(t => t.id === item.tag.id); + if (!exists) { + groupedTags[appId].push(item.tag); + } + }); + + applicationIds.forEach(function (id) { + if (!groupedTags.hasOwnProperty(id)) { + groupedTags[id] = []; + } + }); - tagInputArray.push({ tagId: item.Id, Name: item.Name, class: 'tags-common', Id: item.Id }) + + let groupedValues = Object.values(groupedTags); + if (groupedValues.length > 0) { + commonTags = groupedValues.reduce(function (prev, next) { + return prev.filter(p => next.some(n => n.id === p.id)); }); + } + + let alltags = Object.entries(groupedTags).map(([appId, tagList]) => { + let uncommon = tagList.filter(tag => !commonTags.some(ct => ct.id === tag.id)); + + return { + applicationId: appId, + commonTags: [...commonTags].sort((a, b) => a.name.localeCompare(b.name)), + uncommonTags: uncommon.sort((a, b) => a.name.localeCompare(b.name)) + }; + }); + + + $('#TagsJson').val(JSON.stringify(alltags)); + let tagInputArray = []; - } - tagInput.addData(tagInputArray); + Object.entries(groupedTags).forEach(function ([appId, tagList]) { + let uncommon = tagList.filter(tag => !commonTags.some(ct => ct.id === tag.id)); + uncommonTags = uncommonTags.concat(uncommon); + + + }); + + + if (uncommonTags.length > 0) { + tagInputArray.unshift({ + tagId: '00000000-0000-0000-0000-000000000000', + name: 'Uncommon Tags', + class: 'tags-uncommon', + id: '00000000-0000-0000-0000-000000000000' + }); + } + + if (commonTags.length > 0) { + commonTags.forEach(function (tag) { + tagInputArray.push({ + tagId: tag.id, + name: tag.name, + class: 'tags-common', + id: tag.id + }); + }); + } + + tagInput.setSuggestions( + (allTags || []).filter((value, index, self) => + index === self.findIndex(t => t.id === value.id) + ).sort((a, b) => a.name.localeCompare(b.name)) + ); + + tagInput.addData(tagInputArray); + } catch (error) { + console.error("Error loading tag select list", error); + } }); diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantInfo/ApplicantSummaryViewModel.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantInfo/ApplicantSummaryViewModel.cs index 9de368ee1..bc6618943 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantInfo/ApplicantSummaryViewModel.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicantInfo/ApplicantSummaryViewModel.cs @@ -59,6 +59,7 @@ public class ApplicantSummaryViewModel public bool RedStop { get; set; } + [Display(Name = "ApplicantInfoView:ApplicantInfo.ApplicantName")] public string? ApplicantName { get; set; } } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationTagsWidget/ApplicationTagsWidgetViewComponent.cs b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationTagsWidget/ApplicationTagsWidgetViewComponent.cs index c0ce8d573..73b0d4f30 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationTagsWidget/ApplicationTagsWidgetViewComponent.cs +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/ApplicationTagsWidget/ApplicationTagsWidgetViewComponent.cs @@ -6,6 +6,7 @@ using System.Collections.Generic; using Volo.Abp.AspNetCore.Mvc.UI.Bundling; using Unity.GrantManager.GrantApplications; +using System.Linq; namespace Unity.GrantManager.Web.Views.Shared.Components.ApplicationTagsWidget { @@ -27,12 +28,19 @@ public async Task InvokeAsync(Guid applicationId) { var applicationTags = await _applicationTagsService.GetApplicationTagsAsync(applicationId); string applicationText = ""; - if(applicationTags != null) + if (applicationTags != null && applicationTags.Any()) { - applicationText = applicationTags?.Tag?.Name ?? ""; + var tagNames = applicationTags + .Where(x => x?.Tag?.Name != null) + .Select(x => x.Tag?.Name); + + applicationText = string.Join(", ", tagNames); } - - return View(new ApplicationTagsWidgetViewModel() { ApplicationTags = applicationText.Replace(",", ", ")}); + + return View(new ApplicationTagsWidgetViewModel + { + ApplicationTags = applicationText + }); } } diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/DetailsActionBar/Default.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/DetailsActionBar/Default.js index b3427e040..236f3924f 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/DetailsActionBar/Default.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Views/Shared/Components/DetailsActionBar/Default.js @@ -67,40 +67,111 @@ $(function () { ); }); - tagApplicationModal.onOpen(function () { + tagApplicationModal.onOpen(async function () { let tagInput = new TagsInput({ selector: 'SelectedTags', duplicate: false, max: 50 }); - let suggestionsArray = []; - let uncommonTags = $('#UncommonTags').val(); - let commonTags = $('#CommonTags').val(); - let allTags = $('#AllTags').val(); - if (allTags) { - suggestionsArray = allTags.split(','); - } - tagInput.setSuggestions(suggestionsArray); + + let selectedIds = $('#SelectedApplicationIds').val(); + let applicationIds = JSON.parse(selectedIds); - let tagInputArray = []; + if (!applicationIds || applicationIds.length === 0) return; - if (uncommonTags && uncommonTags != null) { - tagInputArray.push({ text: 'Uncommon Tags', class: 'tags-uncommon', id: 0 }) + try { + let commonTags = []; + let uncommonTags = []; + let allTags = []; + let groupedTags = {}; - } - const commonTagsArray = commonTags.split(','); - if (commonTags && commonTagsArray.length) { - if (commonTagsArray.length) { + allTags = await unity.grantManager.globalTag.tags.getList(); + + let tags = await unity.grantManager.grantApplications.applicationTags.getListWithApplicationIds(applicationIds); + + + tags.forEach(function (item) { + if (!item.tag) return; + let appId = item.applicationId; + if (!groupedTags[appId]) { + groupedTags[appId] = []; + } + + let exists = groupedTags[appId].some(t => t.id === item.tag.id); + if (!exists) { + groupedTags[appId].push(item.tag); + } + }); - commonTagsArray.forEach(function (item, index) { + applicationIds.forEach(function (id) { + if (!groupedTags.hasOwnProperty(id)) { + groupedTags[id] = []; + } + }); - tagInputArray.push({ text: item, class: 'tags-common', id: index + 1 }) + + let groupedValues = Object.values(groupedTags); + if (groupedValues.length > 0) { + commonTags = groupedValues.reduce(function (prev, next) { + return prev.filter(p => next.some(n => n.id === p.id)); }); + } + let alltags = Object.entries(groupedTags).map(([appId, tagList]) => { + let uncommon = tagList.filter(tag => !commonTags.some(ct => ct.id === tag.id)); + + return { + applicationId: appId, + commonTags: [...commonTags].sort((a, b) => a.name.localeCompare(b.name)), + uncommonTags: uncommon.sort((a, b) => a.name.localeCompare(b.name)) + }; + }); + + + $('#TagsJson').val(JSON.stringify(alltags)); + + let tagInputArray = []; + + Object.entries(groupedTags).forEach(function ([appId, tagList]) { + let uncommon = tagList.filter(tag => !commonTags.some(ct => ct.id === tag.id)); + uncommonTags = uncommonTags.concat(uncommon); + + + }); + + + if (uncommonTags.length > 0) { + tagInputArray.unshift({ + tagId: '00000000-0000-0000-0000-000000000000', + name: 'Uncommon Tags', + class: 'tags-uncommon', + id: '00000000-0000-0000-0000-000000000000' + }); } + + + if (commonTags.length > 0) { + commonTags.forEach(function (tag) { + tagInputArray.push({ + tagId: tag.id, + name: tag.name, + class: 'tags-common', + id: tag.id + }); + }); + } + + tagInput.setSuggestions( + (allTags || []).filter((value, index, self) => + index === self.findIndex(t => t.id === value.id) + ).sort((a, b) => a.name.localeCompare(b.name)) + ); + + tagInput.addData(tagInputArray); + } catch (error) { + console.error("Error loading tag select list", error); } - tagInput.addData(tagInputArray); }); tagApplicationModal.onResult(function () { abp.notify.success( diff --git a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationTagWidgetTests.cs b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationTagWidgetTests.cs index feaabb2cf..42d1b1006 100644 --- a/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationTagWidgetTests.cs +++ b/applications/Unity.GrantManager/test/Unity.GrantManager.Web.Tests/Components/ApplicationTagWidgetTests.cs @@ -4,6 +4,7 @@ using NSubstitute; using Shouldly; using System; +using System.Collections.Generic; using System.Threading.Tasks; using Unity.GrantManager.GlobalTag; using Unity.GrantManager.GrantApplications; @@ -24,11 +25,16 @@ public async Task ApplicationTagsWidgetReturnsStatus() var httpContext = new DefaultHttpContext(); // Fix: Ensure 'Tag' is initialized to avoid null dereference - applicationService.GetApplicationTagsAsync(applicationId).Returns(await Task.FromResult(new ApplicationTagsDto() - { - ApplicationId = Guid.Empty, - Tag = new TagDto { Id = Guid.Empty, Name = "Mock" } - })); + applicationService.GetApplicationTagsAsync(applicationId).Returns(callInfo => + Task.FromResult(new List + { + new ApplicationTagsDto + { + ApplicationId = Guid.Empty, + Tag = new TagDto { Id = Guid.Empty, Name = "Mock" } + } + }) + ); var viewContext = new ViewContext { diff --git a/applications/Unity.Tools/Unity.NginxData/reference/common/locations-detailed.json b/applications/Unity.Tools/Unity.NginxData/reference/common/locations-detailed.json index 7ea1e8cd4..ec12026ef 100644 --- a/applications/Unity.Tools/Unity.NginxData/reference/common/locations-detailed.json +++ b/applications/Unity.Tools/Unity.NginxData/reference/common/locations-detailed.json @@ -1 +1 @@ -[{"location":"100 Mile House","place_name":"100 Mile House","community":"One Hundred Mile House","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"105 Mile House","place_name":"105 Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"105 Mile Post 2","place_name":"","community":"105 Mile Post 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"108 Mile Ranch","place_name":"108 Mile Ranch","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"111 Mile House","place_name":"111 Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"114 Mile House","place_name":"114 Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"12 Mile","place_name":"12 Mile","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"122 Mile House","place_name":"122 Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"127 Mile House","place_name":"127 Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"141 Mile House","place_name":"141 Mile House","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"150 Mile House","place_name":"150 Mile House","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"40 Mile Flats","place_name":"40 Mile Flats","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"70 Mile House","place_name":"70 Mile House","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"93 Mile","place_name":"93 Mile","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"A:mai","place_name":"A:mai","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Aa-at-sow-is","place_name":"Aa-at-sow-is","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Abbotsford","place_name":"","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Abbott Heights","place_name":"Abbott Heights","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Aberdeen - Abbotsford","place_name":"Aberdeen","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Aberdeen - Kamloops","place_name":"Aberdeen","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Acous","place_name":"Acous","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Adams Lake","place_name":"Adams Lake","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Agassiz","place_name":"Agassiz","community":"Kent","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Agate","place_name":"Agate","community":"Shackan 11","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Agats Meadow 8","place_name":"","community":"Agats Meadow 8","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Ah:tliish","place_name":"Ah:tliish","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ahahswinis 1","place_name":"","community":"Ahahswinis 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Ahaminaquus 12","place_name":"","community":"Ahaminaquus 12","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Ahbau","place_name":"Ahbau","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ahousat","place_name":"Ahousat","community":"Marktosis 15","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Ainsworth Hot Springs","place_name":"Ainsworth Hot Springs","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Aitchelitch 9","place_name":"","community":"Aitchelitch 9","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Aiyansh (Kitladamas) 1","place_name":"Aiyansh (Kitladamas) 1","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Aiyansh 1","place_name":"Aiyansh 1","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Ak:tiis","place_name":"Ak:tiis","community":"Village Island 1","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Akiskinook","place_name":"Akiskinook","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Alamo","place_name":"Alamo","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Albas","place_name":"Albas","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Alberni","place_name":"Alberni","community":"Port Alberni","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Alberni 2","place_name":"","community":"Alberni 2","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Alberni-Clayoquot A","place_name":"","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Alberni-Clayoquot B","place_name":"","community":"Alberni-Clayoquot B","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Alberni-Clayoquot C","place_name":"","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Alberni-Clayoquot D","place_name":"","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Alberni-Clayoquot E","place_name":"","community":"Alberni-Clayoquot E","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Alberni-Clayoquot F","place_name":"","community":"Alberni-Clayoquot F","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Alberni-Clayoquot, Subd. A","place_name":"Alberni-Clayoquot, Subd. A","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Alberni-Clayoquot, Subd. B","place_name":"Alberni-Clayoquot, Subd. B","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Albert Flat 5","place_name":"","community":"Albert Flat 5","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Albert Head","place_name":"Albert Head","community":"Metchosin","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Albion","place_name":"Albion","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Albreda","place_name":"Albreda","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alder Creek","place_name":"Alder Creek","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Aldergrove","place_name":"Aldergrove","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Alert Bay","place_name":"Alert Bay","community":"Alert Bay - Village","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Alert Bay - Indian reserve","place_name":"","community":"Alert Bay - Indian reserve","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Alert Bay - Village","place_name":"","community":"Alert Bay - Village","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Alert Bay 1","place_name":"Alert Bay 1","community":"Alert Bay - Indian reserve","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Alert Bay 1A","place_name":"Alert Bay 1A","community":"Alert Bay - Indian reserve","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Alexandria","place_name":"","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexandria 1","place_name":"Alexandria 1","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexandria 1A","place_name":"Alexandria 1A","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexandria 3","place_name":"Alexandria 3","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexandria 3A","place_name":"Alexandria 3A","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexis 9","place_name":"","community":"Alexis 9","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Alexis Creek","place_name":"Alexis Creek","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alexis Creek 6","place_name":"Alexis Creek 6","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alexis Creek 14","place_name":"","community":"Alexis Creek 14","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexis Creek 16","place_name":"","community":"Alexis Creek 16","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexis Creek 17","place_name":"Alexis Creek 17","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alexis Creek 21","place_name":"","community":"Alexis Creek 21","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexis Creek 24","place_name":"Alexis Creek 24","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alexis Creek 25","place_name":"Alexis Creek 25","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alexis Creek 34","place_name":"","community":"Alexis Creek 34","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Aleza Lake","place_name":"Aleza Lake","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Alice Arm","place_name":"Alice Arm","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Alice Siding","place_name":"Alice Siding","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Alkali Lake","place_name":"Alkali Lake","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alkali Lake 1","place_name":"","community":"Alkali Lake 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alkali Lake 4A","place_name":"","community":"Alkali Lake 4A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Allenby","place_name":"Allenby","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Allens Addition","place_name":"Allens Addition","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Alliford Bay","place_name":"Alliford Bay","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Allison Lake","place_name":"Allison Lake","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Almond Gardens","place_name":"Almond Gardens","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Almond Gardens Trailer Park","place_name":"Almond Gardens Trailer Park","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Alpine Meadows","place_name":"Alpine Meadows","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Alpine Trailer Park","place_name":"Alpine Trailer Park","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Alta Lake","place_name":"Alta Lake","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Altamont","place_name":"Altamont","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Altona","place_name":"Altona","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Alvin","place_name":"Alvin","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Ambleside","place_name":"Ambleside","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Anacla 12","place_name":"","community":"Anacla 12","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Anaconda","place_name":"Anaconda","community":"Greenwood","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Anahim Lake","place_name":"Anahim Lake","community":"Squinas 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Anahim's Flat 1","place_name":"","community":"Anahim's Flat 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Anahim's Meadow","place_name":"","community":"Anahim's Meadow","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Anahim's Meadow 2","place_name":"Anahim's Meadow 2","community":"Anahim's Meadow","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Anahim's Meadow 2A","place_name":"Anahim's Meadow 2A","community":"Anahim's Meadow","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Anaqtl'a","place_name":"Anaqtl'a","community":"Anacla 12","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Anderson","place_name":"Anderson","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Andy Cahoose Meadow 16","place_name":"Andy Cahoose Meadow 16","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Anglemont","place_name":"Anglemont","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Anmore","place_name":"","community":"Anmore","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Anniedale","place_name":"Anniedale","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Annis","place_name":"Annis","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Annis Bay","place_name":"Annis Bay","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Anvil Island","place_name":"Anvil Island","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Anyox","place_name":"Anyox","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Anzac","place_name":"Anzac","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Apex Mountain","place_name":"Apex Mountain","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Appledale","place_name":"Appledale","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Applegrove","place_name":"Applegrove","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Apsagayu 1A","place_name":"Apsagayu 1A","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Arbutus","place_name":"Arbutus","community":"Cowichan Valley C","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Arbutus Ridge","place_name":"Arbutus Ridge","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Archibald Subdivision","place_name":"Archibald Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ardmore","place_name":"Ardmore","community":"North Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Argenta","place_name":"Argenta","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Armitage Trailer Court","place_name":"Armitage Trailer Court","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Armstrong","place_name":"","community":"Armstrong","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Armstrong - Armstrong","place_name":"Armstrong","community":"Armstrong","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Armstrong - Spallumcheen","place_name":"Armstrong","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Arnold","place_name":"Arnold","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Arras","place_name":"Arras","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Arrow Creek","place_name":"Arrow Creek","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Arrow Creek-Lakeview","place_name":"Arrow Creek-Lakeview","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Arrow Park","place_name":"Arrow Park","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Arrowhead","place_name":"Arrowhead","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Arrowview Heights","place_name":"Arrowview Heights","community":"Alberni-Clayoquot F","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Artina Trailer Court","place_name":"Artina Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Aschcroft Ranch","place_name":"Aschcroft Ranch","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ashcroft","place_name":"","community":"Ashcroft","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ashcroft 4","place_name":"","community":"Ashcroft 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Ashcroft Manor","place_name":"Ashcroft Manor","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ashnola 10","place_name":"","community":"Ashnola 10","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Ashton Creek","place_name":"Ashton Creek","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Aspen Grove","place_name":"Aspen Grove","community":"Thompson-Nicola N (Beautiful Nicola Valley - South)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Aspen Mobile Trailer Court","place_name":"Aspen Mobile Trailer Court","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Atchelitz","place_name":"Atchelitz","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Athalmer","place_name":"Athalmer","community":"Shuswap","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Atlin","place_name":"Atlin","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Atluck","place_name":"Atluck","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Atnarko","place_name":"Atnarko","community":"Central Coast C","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Attachie","place_name":"Attachie","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Aupe 6","place_name":"Aupe 6","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Aupe 6A","place_name":"Aupe 6A","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Austin Heights","place_name":"Austin Heights","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Australian","place_name":"Australian","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Avola","place_name":"Avola","community":"Thompson-Nicola B (Thompson Headwaters)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Aywawwis 15","place_name":"Aywawwis 15","community":"Hope","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Azu Ski Village","place_name":"Azu Ski Village","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"B and D Trailer Court","place_name":"B and D Trailer Court","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Babcock Subdivision","place_name":"Babcock Subdivision","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Babine 6","place_name":"Babine 6","community":"Babine 6","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Babine 16","place_name":"","community":"Babine 16","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Babine 17","place_name":"","community":"Babine 17","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Babine 25","place_name":"","community":"Babine 25","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Babine 6","place_name":"","community":"Babine 6","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Babine Lake 21B","place_name":"","community":"Babine Lake 21B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Baezaeko River 25","place_name":"Baezaeko River 25","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Baezaeko River 26","place_name":"Baezaeko River 26","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Baezaeko River 27","place_name":"","community":"Baezaeko River 27","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Baker","place_name":"Baker","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Baker Creek","place_name":"Baker Creek","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Baldonnel","place_name":"Baldonnel","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Baldy Hughes","place_name":"Baldy Hughes","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Balfour","place_name":"Balfour","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Balmoral","place_name":"Balmoral","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Balmoral Beach","place_name":"Balmoral Beach","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Bamberton","place_name":"Bamberton","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Bamfield","place_name":"Bamfield","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Bankeir","place_name":"Bankeir","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Baptiste Meadow 2","place_name":"","community":"Baptiste Meadow 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Bargain Harbour","place_name":"Bargain Harbour","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Barkerville","place_name":"Barkerville","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Barlow Creek","place_name":"Barlow Creek","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Barnet","place_name":"Barnet","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Barnhartvale","place_name":"Barnhartvale","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Barnston Island","place_name":"Barnston Island","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Barnston Island 3","place_name":"","community":"Barnston Island 3","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Barrett Lake","place_name":"Barrett Lake","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Barriere","place_name":"","community":"Barriere","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Barrowtown","place_name":"Barrowtown","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Basque 18","place_name":"","community":"Basque 18","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Bastion Bay","place_name":"Bastion Bay","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Batchelor Hills","place_name":"Batchelor Hills","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Bates Beach","place_name":"Bates Beach","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Baynes Lake","place_name":"Baynes Lake","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Bayview Estates","place_name":"Bayview Estates","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Beach Grove","place_name":"Beach Grove","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Beachcomber","place_name":"Beachcomber","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Beachcomber Bay","place_name":"Beachcomber Bay","community":"Vernon","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Bealby Point","place_name":"Bealby Point","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Bear Camp","place_name":"Bear Camp","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bear Creek","place_name":"Bear Creek","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bear Flat","place_name":"Bear Flat","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Bear Lake - Fraser-Fort George G","place_name":"Bear Lake","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Bear Lake - Stikine Region","place_name":"Bear Lake","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bear Mountain","place_name":"Bear Mountain","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Bear River Trailer Court","place_name":"Bear River Trailer Court","community":"Stewart","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Beard's Creek","place_name":"Beard's Creek","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Beasley","place_name":"Beasley","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Beaton","place_name":"Beaton","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Beatton Ranch","place_name":"Beatton Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Beaver Cove","place_name":"Beaver Cove","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Beaver Creek","place_name":"Beaver Creek","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Beaver Falls","place_name":"Beaver Falls","community":"Montrose","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Beaver Lake","place_name":"Beaver Lake","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Beaver Pass House","place_name":"Beaver Pass House","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Beaver Point","place_name":"Beaver Point","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Beaverdell","place_name":"Beaverdell","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Beaverley","place_name":"Beaverley","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Beban Trailer Park","place_name":"Beban Trailer Park","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Becher Bay 1","place_name":"","community":"Becher Bay 1","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Becher Bay 2","place_name":"Becher Bay 2","community":"Metchosin","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Becher House","place_name":"Becher House","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Bedwell Harbour","place_name":"Bedwell Harbour","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Belaire Estates Trailer Park","place_name":"Belaire Estates Trailer Park","community":"Duck Lake 7","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Belcarra","place_name":"","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Bell II","place_name":"Bell II","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Bella Bella","place_name":"Bella Bella","community":"Bella Bella 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Bella Bella 1","place_name":"","community":"Bella Bella 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Bella Coola","place_name":"Bella Coola","community":"Bella Coola 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Bella Coola 1","place_name":"","community":"Bella Coola 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Belle Vue Trailer Court","place_name":"Belle Vue Trailer Court","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Belleview","place_name":"Belleview","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Belmont Park","place_name":"Belmont Park","community":"Colwood","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Belva's Trailer Park","place_name":"Belva's Trailer Park","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Belvedere","place_name":"Belvedere","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Ben-My-Chree","place_name":"Ben-My-Chree","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bennett","place_name":"Bennett","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Benson Lake","place_name":"Benson Lake","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Benvoulin","place_name":"Benvoulin","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Beresford","place_name":"Beresford","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Bergs","place_name":"Bergs","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Beryl Prairie","place_name":"Beryl Prairie","community":"Hudson's Hope","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Bessborough","place_name":"Bessborough","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Bestwick","place_name":"Bestwick","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Betty Creek 18","place_name":"","community":"Betty Creek 18","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Bevan","place_name":"Bevan","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Big Bar","place_name":"Big Bar","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Big Bar Creek","place_name":"Big Bar Creek","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Big Bay","place_name":"Big Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Big Creek","place_name":"Big Creek","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Big Eddy","place_name":"Big Eddy","community":"Revelstoke","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Big Lake Ranch","place_name":"Big Lake Ranch","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Big White","place_name":"Big White","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Big White Village","place_name":"Big White Village","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Bihl' k'a 18","place_name":"Bihl' k'a 18","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bihlk'a 6","place_name":"Bihlk'a 6","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Billings","place_name":"Billings","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Billings Bay","place_name":"Billings Bay","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Binche 2","place_name":"","community":"Binche 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Binche 2 (Pinchie 2)","place_name":"Binche 2 (Pinchie 2)","community":"Binche 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Birch Island","place_name":"Birch Island","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Birchdale","place_name":"Birchdale","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Birchland Manor","place_name":"Birchland Manor","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Birken","place_name":"Birken","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Black Creek - Cariboo F","place_name":"Black Creek","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Black Creek - Comox Valley C (Puntledge - Black Creek)","place_name":"Black Creek","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Black Pines","place_name":"Black Pines","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Blackcomb","place_name":"Blackcomb","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Blackloam","place_name":"Blackloam","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Blackpool","place_name":"Blackpool","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Blackstock Subdivision","place_name":"Blackstock Subdivision","community":"One Hundred Mile House","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Blackwater - Cariboo I","place_name":"Blackwater","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Blackwater - Squamish-Lillooet C","place_name":"Blackwater","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Blackwater Meadow 11","place_name":"Blackwater Meadow 11","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Blaeberry","place_name":"Blaeberry","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Blakeburn","place_name":"Blakeburn","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Blewett","place_name":"Blewett","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Blind Bay","place_name":"Blind Bay","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Blind Channel","place_name":"Blind Channel","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Blind Creek 6","place_name":"","community":"Blind Creek 6","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Bliss Landing","place_name":"Bliss Landing","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Bloedel","place_name":"Bloedel","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Blowhole","place_name":"Blowhole","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Blubber Bay","place_name":"Blubber Bay","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Blucher Hall","place_name":"Blucher Hall","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Blue Hills","place_name":"Blue Hills","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Blue River","place_name":"Blue River","community":"Thompson-Nicola B (Thompson Headwaters)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Blue Springs","place_name":"Blue Springs","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Blueberry Creek","place_name":"Blueberry Creek","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Blueberry Farm","place_name":"Blueberry Farm","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Blueberry River 205","place_name":"","community":"Blueberry River 205","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Blueridge","place_name":"Blueridge","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Boat Basin","place_name":"Boat Basin","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Boat Harbour","place_name":"Boat Harbour","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Bob Quinn Lake","place_name":"Bob Quinn Lake","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Bold Point","place_name":"Bold Point","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Bonaparte 3","place_name":"","community":"Bonaparte 3","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Bonaventure Trailer Park","place_name":"Bonaventure Trailer Park","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Bonnet Hill","place_name":"Bonnet Hill","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Bonnington Falls","place_name":"Bonnington Falls","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Boothroyd","place_name":"Boothroyd","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Boothroyd (Part) 8A","place_name":"Boothroyd (Part) 8A","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Boothroyd 13","place_name":"","community":"Boothroyd 13","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Boothroyd 5A","place_name":"Boothroyd 5A","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Boothroyd 8A","place_name":"","community":"Boothroyd 8A","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Boring Ranch","place_name":"Boring Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Boston Bar","place_name":"Boston Bar","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Boston Bar 1A","place_name":"","community":"Boston Bar 1A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Boston Flats","place_name":"Boston Flats","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Boswell - Central Coast A","place_name":"Boswell","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Boswell - Central Kootenay A","place_name":"Boswell","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Bouchie Lake","place_name":"Bouchie Lake","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Boulder City","place_name":"Boulder City","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Boundary Bay","place_name":"Boundary Bay","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Boundary Falls","place_name":"Boundary Falls","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Bowen Bay","place_name":"Bowen Bay","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bowen Island","place_name":"","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bowen Island Trust","place_name":"Bowen Island Trust","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bowron Lake","place_name":"Bowron Lake","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Bowser","place_name":"Bowser","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Box Lake","place_name":"Box Lake","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Brackendale","place_name":"Brackendale","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bradner","place_name":"Bradner","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brady Ranch","place_name":"Brady Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Braeloch","place_name":"Braeloch","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Braemar Heights","place_name":"Braemar Heights","community":"Colwood","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Braeside","place_name":"Braeside","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bralorne","place_name":"Bralorne","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Brandon","place_name":"Brandon","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Brauns Island","place_name":"Brauns Island","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Brem River","place_name":"Brem River","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Brennan Creek","place_name":"Brennan Creek","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Brentwood Bay","place_name":"Brentwood Bay","community":"South Saanich 1","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Brentwood Park","place_name":"Brentwood Park","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brew Bay","place_name":"Brew Bay","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Brexton","place_name":"Brexton","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Briar Ridge","place_name":"Briar Ridge","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Bridal Falls","place_name":"Bridal Falls","community":"Fraser Valley D","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bridesville","place_name":"Bridesville","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Bridge Lake","place_name":"Bridge Lake","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Bridge River 1","place_name":"","community":"Bridge River 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Bridgeview","place_name":"Bridgeview","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brigade Lake","place_name":"Brigade Lake","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Brighouse","place_name":"Brighouse","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brighton Beach","place_name":"Brighton Beach","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brilliant","place_name":"Brilliant","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Brisco","place_name":"Brisco","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Britannia Beach","place_name":"Britannia Beach","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"British Properties","place_name":"British Properties","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Broadmoor","place_name":"Broadmoor","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Broadview","place_name":"Broadview","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Broadview Villa","place_name":"Broadview Villa","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Brocklehurst","place_name":"Brocklehurst","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Broman Lake","place_name":"Broman Lake","community":"Duncan Lake 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Brookfield Trailers","place_name":"Brookfield Trailers","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Brookmere","place_name":"Brookmere","community":"Thompson-Nicola N (Beautiful Nicola Valley - South)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Brookswood","place_name":"Brookswood","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brouse","place_name":"Brouse","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Brown Road Trailer Park","place_name":"Brown Road Trailer Park","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Browns Bay","place_name":"Browns Bay","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Brunette Creek","place_name":"Brunette Creek","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brunswick","place_name":"Brunswick","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Brunswick Beach","place_name":"Brunswick Beach","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Buccaneer Bay","place_name":"Buccaneer Bay","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Buckhorn","place_name":"Buckhorn","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Buckingham Heights","place_name":"Buckingham Heights","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Buckinghorse River","place_name":"Buckinghorse River","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Buckley Bay","place_name":"Buckley Bay","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Bucktum 4","place_name":"","community":"Bucktum 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Buena Vista Estates","place_name":"Buena Vista Estates","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Buffalo Creek","place_name":"Buffalo Creek","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Buick","place_name":"Buick","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Bulkley House","place_name":"Bulkley House","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley River 19","place_name":"","community":"Bulkley River 19","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Bulkley-Nechako A","place_name":"","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako B","place_name":"","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako C","place_name":"","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako D","place_name":"","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako E","place_name":"","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako F","place_name":"","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako G","place_name":"","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako, Subd. A","place_name":"Bulkley-Nechako, Subd. A","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako, Subd. B","place_name":"Bulkley-Nechako, Subd. B","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako, Subd. C","place_name":"Bulkley-Nechako, Subd. C","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bull Harbour","place_name":"Bull Harbour","community":"Hope Island 1","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Bull River","place_name":"Bull River","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Bummers Flat 6","place_name":"Bummers Flat 6","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Buntzen Bay","place_name":"Buntzen Bay","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Burkeville","place_name":"Burkeville","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Burnaby","place_name":"","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Burnaby Heights","place_name":"Burnaby Heights","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Burns Lake","place_name":"","community":"Burns Lake","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Burns Lake 18","place_name":"","community":"Burns Lake 18","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Burnt Flats","place_name":"Burnt Flats","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Burquitlam","place_name":"Burquitlam","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Burrard Inlet 3","place_name":"","community":"Burrard Inlet 3","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Burton","place_name":"Burton","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Butedale","place_name":"Butedale","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Cache Creek","place_name":"","community":"Cache Creek","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Cache Creek Campground","place_name":"Cache Creek Campground","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cadboro Bay","place_name":"Cadboro Bay","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Caesars","place_name":"Caesars","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Cahilty","place_name":"Cahilty","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Cahoose 8","place_name":"Cahoose 8","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cahoose 10","place_name":"Cahoose 10","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cahoose 12","place_name":"Cahoose 12","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Caithness","place_name":"Caithness","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Caithness Trailer Court","place_name":"Caithness Trailer Court","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Callison Ranch","place_name":"Callison Ranch","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cambie-Solsqua","place_name":"Cambie-Solsqua","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Camborne","place_name":"Camborne","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Cameron Bar 13","place_name":"Cameron Bar 13","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cameron Heights","place_name":"Cameron Heights","community":"Port Alberni","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Camp Artaban","place_name":"Camp Artaban","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Camp Homewood","place_name":"Camp Homewood","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Camp McKinney","place_name":"Camp McKinney","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Campbell Creek","place_name":"Campbell Creek","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Campbell Island","place_name":"Campbell Island","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Campbell River","place_name":"","community":"Campbell River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Campbell River 11","place_name":"","community":"Campbell River 11","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Campbellton","place_name":"Campbellton","community":"Campbell River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Canal Flats","place_name":"","community":"Canal Flats","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Canford","place_name":"Canford","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Canim Lake","place_name":"Canim Lake","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Canim Lake 1","place_name":"","community":"Canim Lake 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Canim Lake 2","place_name":"","community":"Canim Lake 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Canim Lake 4","place_name":"","community":"Canim Lake 4","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Canoe","place_name":"Canoe","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Canoe Creek 1","place_name":"","community":"Canoe Creek 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Canoe Creek 2","place_name":"","community":"Canoe Creek 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Canoe Creek 3","place_name":"","community":"Canoe Creek 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Canyon","place_name":"Canyon","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Canyon Alpine","place_name":"Canyon Alpine","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Canyon Heights","place_name":"Canyon Heights","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Canyon Hot Springs","place_name":"Canyon Hot Springs","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Canyon Trailer Park","place_name":"Canyon Trailer Park","community":"Revelstoke","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cape Mudge 10","place_name":"","community":"Cape Mudge 10","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Capilano 5","place_name":"","community":"Capilano 5","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Capilano Highlands","place_name":"Capilano Highlands","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Capital B","place_name":"Capital B","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capital D","place_name":"Capital D","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capital, Subd. A","place_name":"Capital, Subd. A","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capital, Subd. B","place_name":"Capital, Subd. B","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capital, Subd. C","place_name":"Capital, Subd. C","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capital, Subd. D","place_name":"Capital, Subd. D","community":"Juan de Fuca (Part 2)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capitol Hill","place_name":"Capitol Hill","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cariboo - Cariboo C","place_name":"Cariboo","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo - Coquitlam","place_name":"Cariboo","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cariboo A","place_name":"","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo B","place_name":"","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo C","place_name":"","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo D","place_name":"","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo E","place_name":"","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo F","place_name":"","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo G","place_name":"","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo H","place_name":"","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo I","place_name":"","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo J","place_name":"","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo K","place_name":"","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo L","place_name":"","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo Meadows","place_name":"Cariboo Meadows","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Cariboo, Subd. A","place_name":"Cariboo, Subd. A","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo, Subd. B","place_name":"Cariboo, Subd. B","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo, Subd. C","place_name":"Cariboo, Subd. C","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Carlin","place_name":"Carlin","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Carlson","place_name":"Carlson","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Carmi","place_name":"Carmi","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Carmi Subdivision","place_name":"Carmi Subdivision","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Carnaby","place_name":"Carnaby","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Carraholly","place_name":"Carraholly","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Carrolls Landing","place_name":"Carrolls Landing","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Carrs","place_name":"Carrs","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Carrs Landing","place_name":"Carrs Landing","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Carson","place_name":"Carson","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Cascade - Belcarra","place_name":"Cascade","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Cascade - Kootenay Boundary C / Christina Lake","place_name":"Cascade","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Cascade Heights","place_name":"Cascade Heights","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Casimiel Meadows 15A","place_name":"Casimiel Meadows 15A","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Casino","place_name":"Casino","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Cassiar","place_name":"Cassiar","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cassidy","place_name":"Cassidy","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cassidy Mobile Home Park","place_name":"Cassidy Mobile Home Park","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cassimayooks (Mayook) 5","place_name":"","community":"Cassimayooks (Mayook) 5","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Cassin","place_name":"Cassin","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Castle Rock","place_name":"Castle Rock","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Castledale","place_name":"Castledale","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Castlegar","place_name":"","community":"Castlegar","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Caulfeild","place_name":"Caulfeild","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cawston","place_name":"Cawston","community":"Okanagan-Similkameen B","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Caycuse","place_name":"Caycuse","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cayoosh Creek 1","place_name":"","community":"Cayoosh Creek 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Cecil Lake","place_name":"Cecil Lake","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Cedar","place_name":"Cedar","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cedar By The Sea","place_name":"Cedar By The Sea","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cedar Creek Mobile Home Park","place_name":"Cedar Creek Mobile Home Park","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cedar Grove","place_name":"Cedar Grove","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Cedar Heights Estates","place_name":"Cedar Heights Estates","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cedardale","place_name":"Cedardale","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cedarside","place_name":"Cedarside","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cedarvale","place_name":"Cedarvale","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Ceepeecee","place_name":"Ceepeecee","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Celista","place_name":"Celista","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Central Coast A","place_name":"","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Central Coast C","place_name":"","community":"Central Coast C","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Central Coast D","place_name":"","community":"Central Coast D","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Central Coast E","place_name":"","community":"Central Coast E","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Central Coast, Subd. A","place_name":"Central Coast, Subd. A","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Central Fraser Valley, Subd. A","place_name":"Central Fraser Valley, Subd. A","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Central Kootenay A","place_name":"","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay B","place_name":"","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay C","place_name":"","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay D","place_name":"","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay E","place_name":"","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay F","place_name":"","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay G","place_name":"","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay H","place_name":"","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay I","place_name":"","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay J","place_name":"","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay K","place_name":"","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay, Subd. A","place_name":"Central Kootenay, Subd. A","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay, Subd. B","place_name":"Central Kootenay, Subd. B","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay, Subd. C","place_name":"Central Kootenay, Subd. C","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Okanagan","place_name":"","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan G","place_name":"Central Okanagan G","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan H","place_name":"Central Okanagan H","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan J","place_name":"Central Okanagan J","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan West","place_name":"","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan, Subd. A","place_name":"Central Okanagan, Subd. A","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan, Subd. B","place_name":"Central Okanagan, Subd. B","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Saanich","place_name":"","community":"Central Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Centreville","place_name":"Centreville","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cha cha tsi tsi us","place_name":"Cha cha tsi tsi us","community":"Numukamis 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Chaatl","place_name":"Chaatl","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Chain Lake","place_name":"Chain Lake","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Chamiss Bay","place_name":"Chamiss Bay","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Channel Ridge","place_name":"Channel Ridge","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Chap-is","place_name":"Chap-is","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Chapman Camp","place_name":"Chapman Camp","community":"Kimberley","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Chapmans","place_name":"Chapmans","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Chapperon Ranch","place_name":"Chapperon Ranch","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Charella Garden","place_name":"Charella Garden","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Charley Boy's Meadow 3","place_name":"","community":"Charley Boy's Meadow 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Charlie Lake","place_name":"Charlie Lake","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Charlotte Lake","place_name":"Charlotte Lake","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chase","place_name":"","community":"Chase","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Chase River","place_name":"Chase River","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Chasm","place_name":"Chasm","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Chateau Village Trailer Court","place_name":"Chateau Village Trailer Court","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Chaumox","place_name":"Chaumox","community":"Speyum 3","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Chaumox 11","place_name":"Chaumox 11","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Chawathil 4","place_name":"","community":"Chawathil 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Cheakamus","place_name":"Cheakamus","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Cheakamus 11","place_name":"","community":"Cheakamus 11","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Cheam 1","place_name":"","community":"Cheam 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Cheam View","place_name":"Cheam View","community":"Fraser Valley D","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Cheekye","place_name":"Cheekye","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Chehalis 5","place_name":"","community":"Chehalis 5","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Chekwelp 26","place_name":"","community":"Chekwelp 26","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Chekwelp 26A","place_name":"Chekwelp 26A","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Chemainus","place_name":"Chemainus","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Chemainus 13","place_name":"","community":"Chemainus 13","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Chenahkint 12","place_name":"","community":"Chenahkint 12","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Chenatha","place_name":"Chenatha","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Chequis","place_name":"Chequis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Cherry Creek - Alberni-Clayoquot F","place_name":"Cherry Creek","community":"Alberni-Clayoquot F","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cherry Creek - Thompson-Nicola J (Copper Desert Country)","place_name":"Cherry Creek","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cherryville","place_name":"Cherryville","community":"North Okanagan E","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ches-la-kee 3","place_name":"Ches-la-kee 3","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Cheslatta","place_name":"Cheslatta","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cheslatta 1","place_name":"","community":"Cheslatta 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Chetarpe","place_name":"Chetarpe","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Chetwynd","place_name":"","community":"Chetwynd","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Chezacut","place_name":"Chezacut","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chicoltin Estates Trailer Park","place_name":"Chicoltin Estates Trailer Park","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chilanko Forks","place_name":"Chilanko Forks","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chilco Lake 1","place_name":"","community":"Chilco Lake 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Chilco Lake 1A","place_name":"","community":"Chilco Lake 1A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Chilcotin Forest","place_name":"Chilcotin Forest","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chilhil 6","place_name":"","community":"Chilhil 6","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Chilliwack","place_name":"","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Chilton Subdivision","place_name":"Chilton Subdivision","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Chimney Valley","place_name":"Chimney Valley","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chineside","place_name":"Chineside","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Chinook Cove","place_name":"Chinook Cove","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Chinook Mobile Home Park","place_name":"Chinook Mobile Home Park","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Choate","place_name":"Choate","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Chopaka","place_name":"Chopaka","community":"Chopaka 7 & 8","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chopaka 7 & 8","place_name":"","community":"Chopaka 7 & 8","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Christian Valley","place_name":"Christian Valley","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Christina Lake","place_name":"Christina Lake","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Chu Chua","place_name":"Chu Chua","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Chuchhraischin","place_name":"","community":"Chuchhraischin","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chuchhriaschin 5","place_name":"Chuchhriaschin 5","community":"Chuchhraischin","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chuchhriaschin 5A","place_name":"Chuchhriaschin 5A","community":"Chuchhraischin","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chuchuwayha 2","place_name":"","community":"Chuchuwayha 2","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chum Creek 2","place_name":"","community":"Chum Creek 2","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chumata","place_name":"Chumata","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Church House","place_name":"Church House","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Chute Lake","place_name":"Chute Lake","community":"Okanagan-Similkameen E","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cinema","place_name":"Cinema","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cinnabar Valley","place_name":"Cinnabar Valley","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"City of West Kelowna","place_name":"City of West Kelowna","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Clairmont","place_name":"Clairmont","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Clakamucus 2","place_name":"","community":"Clakamucus 2","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Claoose 4","place_name":"Claoose 4","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Clapperton","place_name":"Clapperton","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Claremont Subdivision","place_name":"Claremont Subdivision","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Clayburn","place_name":"Clayburn","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Clayhurst","place_name":"Clayhurst","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Clayoquot","place_name":"Clayoquot","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Cleagh Creek","place_name":"Cleagh Creek","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Clearbrook","place_name":"Clearbrook","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Clearwater","place_name":"","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Clearwater Trailer Park","place_name":"Clearwater Trailer Park","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Clem Clem","place_name":"Clem Clem","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Clemretta","place_name":"Clemretta","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cleveland Park","place_name":"Cleveland Park","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Clinton","place_name":"","community":"Clinton","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Clo-oose","place_name":"Clo-oose","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Clover Acres Mobile Villa","place_name":"Clover Acres Mobile Villa","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cloverdale","place_name":"Cloverdale","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Clutus","place_name":"Clutus","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Coal Harbour","place_name":"Coal Harbour","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Coal River","place_name":"Coal River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Coalmont","place_name":"Coalmont","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cobble Hill","place_name":"Cobble Hill","community":"Cowichan Valley C","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cody","place_name":"Cody","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Coffin Point","place_name":"Coffin Point","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Coglistiko River 29","place_name":"","community":"Coglistiko River 29","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Cokato","place_name":"Cokato","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Coldspring House","place_name":"Coldspring House","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Coldstream","place_name":"","community":"Coldstream","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Coldstream Ranch","place_name":"Coldstream Ranch","community":"Coldstream","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Coldwater 1","place_name":"","community":"Coldwater 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Coldwell Beach","place_name":"Coldwell Beach","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cole Bay 3","place_name":"","community":"Cole Bay 3","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"College Heights","place_name":"College Heights","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Collettville","place_name":"Collettville","community":"Merritt","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Colleymount","place_name":"Colleymount","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Colquitz","place_name":"Colquitz","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Columbia Gardens","place_name":"Columbia Gardens","community":"Kootenay Boundary A","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Columbia Lake 3","place_name":"","community":"Columbia Lake 3","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Columbia Lake Resort Trailer Park","place_name":"Columbia Lake Resort Trailer Park","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Columbia-Shuswap A","place_name":"","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Columbia-Shuswap B","place_name":"","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Columbia-Shuswap C","place_name":"","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Columbia-Shuswap D","place_name":"","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Columbia-Shuswap E","place_name":"","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Columbia-Shuswap F","place_name":"","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Columbia-Shuswap, Subd. A","place_name":"Columbia-Shuswap, Subd. A","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Columbia-Shuswap, Subd. B","place_name":"Columbia-Shuswap, Subd. B","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Columbia-Shuswap, Subd. C","place_name":"Columbia-Shuswap, Subd. C","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Columere Park","place_name":"Columere Park","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Colwood","place_name":"","community":"Colwood","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Comer Hill Trailer Park","place_name":"Comer Hill Trailer Park","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Comiaken","place_name":"Comiaken","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Commodore Heights","place_name":"Commodore Heights","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Comox","place_name":"","community":"Comox","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox 1","place_name":"","community":"Comox 1","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Comox Valley A","place_name":"","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox Valley B (Lazo North)","place_name":"","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox Valley C (Puntledge - Black Creek)","place_name":"","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox-Strathcona A","place_name":"Comox-Strathcona A","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox-Strathcona B","place_name":"Comox-Strathcona B","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox-Strathcona C","place_name":"Comox-Strathcona C","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox-Strathcona D","place_name":"Comox-Strathcona D","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Comox-Strathcona G","place_name":"Comox-Strathcona G","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Comox-Strathcona H","place_name":"Comox-Strathcona H","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Comox-Strathcona I","place_name":"Comox-Strathcona I","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Comox-Strathcona J","place_name":"Comox-Strathcona J","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Comox-Strathcona K","place_name":"Comox-Strathcona K","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox-Strathcona, Subd. A","place_name":"Comox-Strathcona, Subd. A","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Comox-Strathcona, Subd. B","place_name":"Comox-Strathcona, Subd. B","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Comox-Strathcona, Subd. C","place_name":"Comox-Strathcona, Subd. C","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox-Strathcona, Subd. D","place_name":"Comox-Strathcona, Subd. D","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Compton Island 6","place_name":"Compton Island 6","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Connaught Heights","place_name":"Connaught Heights","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Coombe","place_name":"Coombe","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Coombs","place_name":"Coombs","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Coombs Trailer Park","place_name":"Coombs Trailer Park","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cooper Creek","place_name":"Cooper Creek","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Copper City","place_name":"Copper City","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Copper Cove","place_name":"Copper Cove","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Copper Creek","place_name":"Copper Creek","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Copper Mountain","place_name":"Copper Mountain","community":"Princeton","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Coquitlam","place_name":"","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Coquitlam 1","place_name":"","community":"Coquitlam 1","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Coquitlam 2","place_name":"","community":"Coquitlam 2","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Coral Beach","place_name":"Coral Beach","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Corbin","place_name":"Corbin","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Cordova Bay","place_name":"Cordova Bay","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Cornwall Lodge Trailer Park","place_name":"Cornwall Lodge Trailer Park","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Corra Linn","place_name":"Corra Linn","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Cortes Bay","place_name":"Cortes Bay","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Coryatsaqua (Moricetown) 2","place_name":"","community":"Coryatsaqua (Moricetown) 2","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Coryville","place_name":"Coryville","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cosy Cove","place_name":"Cosy Cove","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Cottonwood","place_name":"Cottonwood","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cottonwood Trailer Park","place_name":"Cottonwood Trailer Park","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Couldwell Subdivision","place_name":"Couldwell Subdivision","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Country Lane Park","place_name":"Country Lane Park","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Country Side Estates Trailer Court","place_name":"Country Side Estates Trailer Court","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Courtenay","place_name":"","community":"Courtenay","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Coutlee","place_name":"Coutlee","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cove Cliff","place_name":"Cove Cliff","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cowans Point","place_name":"Cowans Point","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Cowichan","place_name":"","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Cowichan 1","place_name":"Cowichan 1","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Cowichan 9","place_name":"Cowichan 9","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Cowichan Bay","place_name":"Cowichan Bay","community":"Cowichan Valley D","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Lake","place_name":"","community":"Cowichan Lake","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Cowichan Station","place_name":"Cowichan Station","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley A","place_name":"","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley B","place_name":"","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley C","place_name":"","community":"Cowichan Valley C","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley D","place_name":"","community":"Cowichan Valley D","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley E","place_name":"","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley F","place_name":"","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley G","place_name":"","community":"Cowichan Valley G","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley H","place_name":"","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley I","place_name":"","community":"Cowichan Valley I","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley, Subd. A","place_name":"Cowichan Valley, Subd. A","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley, Subd. B","place_name":"Cowichan Valley, Subd. B","community":"Cowichan Valley G","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley, Subd. C","place_name":"Cowichan Valley, Subd. C","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley, Subd. D","place_name":"Cowichan Valley, Subd. D","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Coyle","place_name":"Coyle","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cracroft","place_name":"Cracroft","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Craigellachie","place_name":"Craigellachie","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Craigs Trailer Court","place_name":"Craigs Trailer Court","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Cranberry","place_name":"Cranberry","community":"Powell River","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Cranberry Junction","place_name":"Cranberry Junction","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Cranbrook","place_name":"","community":"Cranbrook","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Cranbrook Trailer Court","place_name":"Cranbrook Trailer Court","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Crawford Bay","place_name":"Crawford Bay","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Creekside","place_name":"Creekside","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Creekside Trailer Park","place_name":"Creekside Trailer Park","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Creighton Valley","place_name":"Creighton Valley","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Crescent","place_name":"Crescent","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Crescent Bay - Central Kootenay F","place_name":"Crescent Bay","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Crescent Bay - Central Kootenay K","place_name":"Crescent Bay","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Crescent Beach - Okanagan-Similkameen F","place_name":"Crescent Beach","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Crescent Beach - Surrey","place_name":"Crescent Beach","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Crescent Spur","place_name":"Crescent Spur","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Crescent Valley","place_name":"Crescent Valley","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Crest-A-Way","place_name":"Crest-A-Way","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Creston","place_name":"","community":"Creston","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Creston 1","place_name":"","community":"Creston 1","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Creston Valley Mobile Park","place_name":"Creston Valley Mobile Park","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Creston Wyndle Road","place_name":"Creston Wyndle Road","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Crestwood Subdivision","place_name":"Crestwood Subdivision","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Criss Creek","place_name":"Criss Creek","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Crofton","place_name":"Crofton","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Crotteau Subdivision","place_name":"Crotteau Subdivision","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Crowsnest","place_name":"Crowsnest","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Croydon","place_name":"Croydon","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cultus Lake","place_name":"Cultus Lake","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Cultus Lake Estates Mobile Home Park","place_name":"Cultus Lake Estates Mobile Home Park","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Cumberland","place_name":"","community":"Cumberland","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cumshewa","place_name":"Cumshewa","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Curzon","place_name":"Curzon","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Cypress Park","place_name":"Cypress Park","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Dadens","place_name":"Dadens","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Dallas","place_name":"Dallas","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Danskin","place_name":"Danskin","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"D'Arcy","place_name":"D'Arcy","community":"Nequatque","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Darfield","place_name":"Darfield","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Darrell Bay","place_name":"Darrell Bay","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dartmoor","place_name":"Dartmoor","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Dashwood","place_name":"Dashwood","community":"Nanaimo G","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Davis Bay","place_name":"Davis Bay","community":"Sunshine Coast D","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dawson Creek","place_name":"","community":"Dawson Creek","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 3"},{"location":"Dawsons Landing","place_name":"Dawsons Landing","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Days Ranch","place_name":"Days Ranch","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Day's Subdivision","place_name":"Day's Subdivision","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"De Courcy Island","place_name":"De Courcy Island","community":"Nanaimo B","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Dead Point 5","place_name":"","community":"Dead Point 5","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Deadtree Point","place_name":"Deadtree Point","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Deadwood","place_name":"Deadwood","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Dease Lake","place_name":"Dease Lake","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Dease Lake 9","place_name":"","community":"Dease Lake 9","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Dease River 1","place_name":"","community":"Dease River 1","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Decker Lake","place_name":"Decker Lake","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Deekyakus","place_name":"Deekyakus","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Deep Bay","place_name":"Deep Bay","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Deep Cove - North Saanich","place_name":"Deep Cove","community":"North Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Deep Cove - North Vancouver - District municipality","place_name":"Deep Cove","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Deep Creek","place_name":"Deep Creek","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Deep Creek 2","place_name":"","community":"Deep Creek 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Deer Park","place_name":"Deer Park","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Deerholme","place_name":"Deerholme","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Defot","place_name":"Defot","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Deka Lake","place_name":"Deka Lake","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Deka Lake Subdivision","place_name":"Deka Lake Subdivision","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Del Oro Subdivision","place_name":"Del Oro Subdivision","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Delbrook","place_name":"Delbrook","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Delkatla","place_name":"Delkatla","community":"Masset","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Delta","place_name":"","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Denman Island","place_name":"Denman Island","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Dentville","place_name":"Dentville","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Departure Bay","place_name":"Departure Bay","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Deroche","place_name":"Deroche","community":"Fraser Valley G","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Devine","place_name":"Devine","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dewdney","place_name":"Dewdney","community":"Fraser Valley G","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Dewdney-Alouette, Subd. A","place_name":"Dewdney-Alouette, Subd. A","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dibble Subdivision","place_name":"Dibble Subdivision","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Digby Island","place_name":"Digby Island","community":"S1/2 Tsimpsean 2","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Dochsupple","place_name":"Dochsupple","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Dodge Cove","place_name":"Dodge Cove","community":"North Coast A","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Doe River","place_name":"Doe River","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Dog Creek - Bulkley-Nechako F","place_name":"Dog Creek","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Dog Creek - Cariboo E","place_name":"Dog Creek","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Dog Creek 1","place_name":"","community":"Dog Creek 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Dog Creek 2","place_name":"","community":"Dog Creek 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Dogpatch","place_name":"Dogpatch","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dogwood Valley","place_name":"Dogwood Valley","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Doig River","place_name":"Doig River","community":"Doig River 206","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Doig River 206","place_name":"","community":"Doig River 206","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Dokie Siding","place_name":"Dokie Siding","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Dokkie Subdivision","place_name":"Dokkie Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Dolan Road Subdivision","place_name":"Dolan Road Subdivision","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dollarton","place_name":"Dollarton","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Dolphin Beach","place_name":"Dolphin Beach","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Dolphin Beach Estates","place_name":"Dolphin Beach Estates","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Dolphin Island 1","place_name":"","community":"Dolphin Island 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Dome Creek","place_name":"Dome Creek","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Donald","place_name":"Donald","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Donald Landing","place_name":"Donald Landing","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Donnely Landing","place_name":"Donnely Landing","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Don's Trailer Court","place_name":"Don's Trailer Court","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Dookqua","place_name":"Dookqua","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Dorcas Point","place_name":"Dorcas Point","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Doriston","place_name":"Doriston","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Dorreen","place_name":"Dorreen","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Douglas","place_name":"Douglas","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Douglas 8","place_name":"","community":"Douglas 8","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Douglas Hill Estates","place_name":"Douglas Hill Estates","community":"Cowichan Valley C","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Douglas Lake","place_name":"Douglas Lake","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Douglas Lake 3","place_name":"","community":"Douglas Lake 3","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Dove Creek","place_name":"Dove Creek","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Dragon Lake 3","place_name":"","community":"Dragon Lake 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Drew Harbour","place_name":"Drew Harbour","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Driftwood Creek","place_name":"Driftwood Creek","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Dry Gulch","place_name":"Dry Gulch","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Duck Lake 7","place_name":"","community":"Duck Lake 7","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Duck Range","place_name":"Duck Range","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dufferin","place_name":"Dufferin","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Dugan Lake","place_name":"Dugan Lake","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Dunbar-Southlands","place_name":"Dunbar-Southlands","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Duncan","place_name":"","community":"Duncan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Duncan Bay","place_name":"Duncan Bay","community":"Campbell River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Duncan Lake 2","place_name":"","community":"Duncan Lake 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Duncanby Landing","place_name":"Duncanby Landing","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Dundarave","place_name":"Dundarave","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Dunkley","place_name":"Dunkley","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Dunsmuir","place_name":"Dunsmuir","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Dunster","place_name":"Dunster","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Durieu","place_name":"Durieu","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dutch Creek Subdivision","place_name":"Dutch Creek Subdivision","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Dutch Lake","place_name":"Dutch Lake","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dutch Lake Resort","place_name":"Dutch Lake Resort","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dutch Lake Subdivision","place_name":"Dutch Lake Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dutch Lake Trailer Park","place_name":"Dutch Lake Trailer Park","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dzitline Lee 9","place_name":"","community":"Dzitline Lee 9","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Ê”Esdilagh","place_name":"Ê”Esdilagh","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Eagle Bay","place_name":"Eagle Bay","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Eagle Bay Estates Subdivision","place_name":"Eagle Bay Estates Subdivision","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Eagle Bluff","place_name":"Eagle Bluff","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Eagle Creek","place_name":"Eagle Creek","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Eagle Harbour","place_name":"Eagle Harbour","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Eagle Heights","place_name":"Eagle Heights","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Eagle Ridge","place_name":"Eagle Ridge","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Eagle Rock Trailer Park","place_name":"Eagle Rock Trailer Park","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Eagle Run","place_name":"Eagle Run","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Earls Cove","place_name":"Earls Cove","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"East Arrow Park","place_name":"East Arrow Park","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Gate - Columbia-Shuswap A","place_name":"East Gate","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"East Gate - Okanagan-Similkameen H","place_name":"East Gate","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"East Kelowna","place_name":"East Kelowna","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"East Kootenay A","place_name":"","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay B","place_name":"","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay C","place_name":"","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"East Kootenay E","place_name":"","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay F","place_name":"","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay G","place_name":"","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay, Subd. A","place_name":"East Kootenay, Subd. A","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay, Subd. B","place_name":"East Kootenay, Subd. B","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"East Kootenay, Subd. C","place_name":"East Kootenay, Subd. C","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Moberly Lake 169","place_name":"","community":"East Moberly Lake 169","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"East Osoyoos","place_name":"East Osoyoos","community":"Okanagan-Similkameen A","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"East Pine","place_name":"East Pine","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"East Saanich 2","place_name":"","community":"East Saanich 2","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"East Sooke","place_name":"East Sooke","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"East Trail","place_name":"East Trail","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"East Wellington","place_name":"East Wellington","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Eastbourne","place_name":"Eastbourne","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Eastburn","place_name":"Eastburn","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Eastgate","place_name":"Eastgate","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Echo Bay","place_name":"Echo Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ecoole","place_name":"Ecoole","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Eddontenajon","place_name":"Eddontenajon","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Eddy","place_name":"Eddy","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Edelweiss","place_name":"Edelweiss","community":"Golden","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Edgewater","place_name":"Edgewater","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Edgewood","place_name":"Edgewood","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Edgewood Trailer Court","place_name":"Edgewood Trailer Court","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Egmont","place_name":"Egmont","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Ehatis 11","place_name":"","community":"Ehatis 11","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Ehatisaht","place_name":"Ehatisaht","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Eholt","place_name":"Eholt","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ekins Point","place_name":"Ekins Point","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Elephant Crossing","place_name":"Elephant Crossing","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Eleven Mile Site","place_name":"Eleven Mile Site","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Elgin","place_name":"Elgin","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Elhlateese 2","place_name":"","community":"Elhlateese 2","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Elk Bay","place_name":"Elk Bay","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Elk Prairie","place_name":"Elk Prairie","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Elk Valley Trailer Court","place_name":"Elk Valley Trailer Court","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Elkford","place_name":"","community":"Elkford","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Elko","place_name":"Elko","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ellison","place_name":"Ellison","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Ellsworth Trailer Camp","place_name":"Ellsworth Trailer Camp","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Elphinstone","place_name":"Elphinstone","community":"Sunshine Coast E","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Endako","place_name":"Endako","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Enderby","place_name":"","community":"Enderby","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Enderby 2","place_name":"","community":"Enderby 2","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Engen","place_name":"Engen","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Engineer","place_name":"Engineer","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Enterprise","place_name":"Enterprise","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Entlqwekkinh 19","place_name":"","community":"Entlqwekkinh 19","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Erickson","place_name":"Erickson","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Erie","place_name":"Erie","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Errington","place_name":"Errington","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Esler","place_name":"Esler","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Esowista 3","place_name":"","community":"Esowista 3","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Esperanza","place_name":"Esperanza","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Espinosa Inlet","place_name":"Espinosa Inlet","community":"Oclucje 7","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Esquimalt - District municipality","place_name":"","community":"Esquimalt - District municipality","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Esquimalt - Indian reserve","place_name":"","community":"Esquimalt - Indian reserve","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Essondale","place_name":"Essondale","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Estevan Point","place_name":"Estevan Point","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Est-Patrolas 4","place_name":"","community":"Est-Patrolas 4","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Euchinico Creek 17","place_name":"","community":"Euchinico Creek 17","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Evergreen Acres - Clearwater","place_name":"Evergreen Acres","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Evergreen Acres - Peace River B","place_name":"Evergreen Acres","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Evergreen Trailer Park","place_name":"Evergreen Trailer Park","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ewing","place_name":"Ewing","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Exeter","place_name":"Exeter","community":"One Hundred Mile House","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Exlou","place_name":"Exlou","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Extension","place_name":"Extension","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fair Harbour","place_name":"Fair Harbour","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Fairbridge","place_name":"Fairbridge","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fairfield - Chilliwack","place_name":"Fairfield","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Fairfield - Victoria","place_name":"Fairfield","community":"Victoria","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Fairmont Hot Springs","place_name":"Fairmont Hot Springs","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fairview - Okanagan-Similkameen C","place_name":"Fairview","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Fairview - Vancouver","place_name":"Fairview","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Fairview Subdivision","place_name":"Fairview Subdivision","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fairwinds","place_name":"Fairwinds","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Falkland","place_name":"Falkland","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Fallsway","place_name":"Fallsway","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"False Bay","place_name":"False Bay","community":"qathet E","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Fanny Bay - Comox Valley A","place_name":"Fanny Bay","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fanny Bay - Strathcona C","place_name":"Fanny Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Farmington","place_name":"Farmington","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Farrell Creek","place_name":"Farrell Creek","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Fauquier","place_name":"Fauquier","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Federal Ranch","place_name":"Federal Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Fellers Heights","place_name":"Fellers Heights","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Ferguson","place_name":"Ferguson","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Fern Ridge","place_name":"Fern Ridge","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ferndale","place_name":"Ferndale","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Fernie","place_name":"","community":"Fernie","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Fernlee","place_name":"Fernlee","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Fernwood","place_name":"Fernwood","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Field","place_name":"Field","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Fife","place_name":"Fife","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fifth Cabin","place_name":"Fifth Cabin","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Finlay River 6","place_name":"","community":"Finlay River 6","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Fintry","place_name":"Fintry","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Fireside","place_name":"Fireside","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Firvale","place_name":"Firvale","community":"Central Coast C","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Fishtrap 19","place_name":"","community":"Fishtrap 19","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Five Mile","place_name":"Five Mile","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Five Mile Point 3","place_name":"Five Mile Point 3","community":"Five Mile Point 3","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Five Mile Point 3","place_name":"","community":"Five Mile Point 3","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Flathead","place_name":"Flathead","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Flatrock","place_name":"Flatrock","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Flats","place_name":"Flats","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Fleetwood","place_name":"Fleetwood","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Floods","place_name":"Floods","community":"Hope","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fontas","place_name":"Fontas","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Fontas 1","place_name":"","community":"Fontas 1","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"N/A"},{"location":"Fontas 1 - Northern Rockies","place_name":"Fontas 1","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Forde","place_name":"Forde","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Foreman","place_name":"Foreman","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Forest Grove","place_name":"Forest Grove","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Forest Grove Trailer Park","place_name":"Forest Grove Trailer Park","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Forest Hills","place_name":"Forest Hills","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Forest Knolls","place_name":"Forest Knolls","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Forest Lawn Trailer Court","place_name":"Forest Lawn Trailer Court","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Forestdale","place_name":"Forestdale","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Forestglade Trailer Park","place_name":"Forestglade Trailer Park","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fort Babine","place_name":"Fort Babine","community":"Babine 6","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Fort Fraser","place_name":"Fort Fraser","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Fort George (Shelley) 2","place_name":"Fort George (Shelley) 2","community":"Fort George 2","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Fort George 2","place_name":"","community":"Fort George 2","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Fort Langley","place_name":"Fort Langley","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Fort Nelson","place_name":"Fort Nelson","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Fort Nelson 2","place_name":"","community":"Fort Nelson 2","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"N/A"},{"location":"Fort Nelson-Liard, Subd. A","place_name":"Fort Nelson-Liard, Subd. A","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Fort Rupert","place_name":"Fort Rupert","community":"Port Hardy","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Fort Rupert 1","place_name":"","community":"Fort Rupert 1","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Fort St. James","place_name":"","community":"Fort St. James","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Fort St. John","place_name":"","community":"Fort St. John","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 3"},{"location":"Fort Steele","place_name":"Fort Steele","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Fort Ware","place_name":"Fort Ware","community":"Fort Ware 1","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Fort Ware 1","place_name":"","community":"Fort Ware 1","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Fosthall","place_name":"Fosthall","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fountain","place_name":"Fountain","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Fountain 1","place_name":"Fountain 1","community":"Fountain 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 3","place_name":"Fountain 3","community":"Fountain 3","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 1","place_name":"","community":"Fountain 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 10","place_name":"","community":"Fountain 10","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 11","place_name":"","community":"Fountain 11","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 12","place_name":"","community":"Fountain 12","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 1B","place_name":"","community":"Fountain 1B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 1D","place_name":"","community":"Fountain 1D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 3","place_name":"","community":"Fountain 3","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 3A","place_name":"","community":"Fountain 3A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain Creek 8","place_name":"","community":"Fountain Creek 8","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain Valley","place_name":"Fountain Valley","community":"Fountain 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fourth Cabin","place_name":"Fourth Cabin","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Fourways Trailer Park","place_name":"Fourways Trailer Park","community":"Cowichan Valley D","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fowler","place_name":"Fowler","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Fox Mountain","place_name":"Fox Mountain","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Frames","place_name":"Frames","community":"Anmore","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Francis Peninsula","place_name":"Francis Peninsula","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"François Lake","place_name":"François Lake","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Francois Lake 7","place_name":"","community":"Francois Lake 7","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Franklin Camp","place_name":"Franklin Camp","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Franks 10","place_name":"Franks 10","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser","place_name":"Fraser","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fraser Heights","place_name":"Fraser Heights","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Fraser Lake","place_name":"","community":"Fraser Lake","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Fraser Mills","place_name":"Fraser Mills","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Fraser Valley A","place_name":"","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Fraser Valley B","place_name":"","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley C","place_name":"","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley D","place_name":"","community":"Fraser Valley D","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley E","place_name":"","community":"Fraser Valley E","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley F","place_name":"","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley G","place_name":"","community":"Fraser Valley G","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Fraser Valley H","place_name":"","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley, Subd. A","place_name":"Fraser Valley, Subd. A","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley, Subd. B","place_name":"Fraser Valley, Subd. B","community":"Fraser Valley E","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley, Subd. C","place_name":"Fraser Valley, Subd. C","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley, Subd. D","place_name":"Fraser Valley, Subd. D","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Fraser Valley, Subd. E","place_name":"Fraser Valley, Subd. E","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser-Fort George A","place_name":"","community":"Fraser-Fort George A","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Fraser-Fort George C","place_name":"","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Fraser-Fort George D","place_name":"","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Fraser-Fort George E","place_name":"","community":"Fraser-Fort George E","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Fraser-Fort George F","place_name":"","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Fraser-Fort George G","place_name":"","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Fraser-Fort George H","place_name":"","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Fraser-Fort George, Subd. A","place_name":"Fraser-Fort George, Subd. A","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Fraser-Fort George, Subd. B","place_name":"Fraser-Fort George, Subd. B","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Freeport Trailer Park","place_name":"Freeport Trailer Park","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"French Creek","place_name":"French Creek","community":"Nanaimo G","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fruitvale","place_name":"","community":"Fruitvale","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Fry Creek","place_name":"Fry Creek","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fulford Harbour","place_name":"Fulford Harbour","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Furry Creek","place_name":"Furry Creek","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Gabriola","place_name":"Gabriola","community":"Nanaimo B","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Gabriola Island","place_name":"Gabriola Island","community":"Nanaimo B","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Gabriola Island Trust Area part A","place_name":"Gabriola Island Trust Area part A","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Galena","place_name":"Galena","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Galena Bay","place_name":"Galena Bay","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Galiano Island 9","place_name":"","community":"Galiano Island 9","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Gallagher Lake","place_name":"Gallagher Lake","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Galloway","place_name":"Galloway","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Gambier Harbour","place_name":"Gambier Harbour","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Gambier Island","place_name":"Gambier Island","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Gang Ranch","place_name":"Gang Ranch","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ganges","place_name":"Ganges","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Garden","place_name":"","community":"Garden","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Garden 2","place_name":"Garden 2","community":"Garden","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Garden 2A","place_name":"Garden 2A","community":"Garden","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Garden Bay","place_name":"Garden Bay","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Garden Village","place_name":"Garden Village","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Gardner Lake Mobile Home Park","place_name":"Gardner Lake Mobile Home Park","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Garibaldi","place_name":"Garibaldi","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Garibaldi Estates","place_name":"Garibaldi Estates","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Garnet Rock Trailer Court","place_name":"Garnet Rock Trailer Court","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Garnet Valley","place_name":"Garnet Valley","community":"Summerland","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Garry Oaks","place_name":"Garry Oaks","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Gates","place_name":"Gates","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Gateway","place_name":"Gateway","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Gellatly","place_name":"Gellatly","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Genelle","place_name":"Genelle","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Genoa Bay","place_name":"Genoa Bay","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"George River","place_name":"George River","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Georgetown Mills","place_name":"Georgetown Mills","community":"Lax Kw'alaams 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Germansen Landing","place_name":"Germansen Landing","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Gerow Island","place_name":"Gerow Island","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Gerrard","place_name":"Gerrard","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Gibson Creek","place_name":"Gibson Creek","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Gibsons","place_name":"","community":"Gibsons","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Gifford","place_name":"Gifford","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Gillies Bay","place_name":"Gillies Bay","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Gilpin","place_name":"Gilpin","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Gingolx","place_name":"Gingolx","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Giscome","place_name":"Giscome","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Gitanmaax 1","place_name":"","community":"Gitanmaax 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitanyow","place_name":"Gitanyow","community":"Gitanyow 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitanyow 1","place_name":"","community":"Gitanyow 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitlaxksiip","place_name":"Gitlaxksiip","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitsegukla 1","place_name":"","community":"Gitsegukla 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitwangak 1","place_name":"","community":"Gitwangak 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitwinksihlkw","place_name":"Gitwinksihlkw","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitwinksihlkw 7","place_name":"Gitwinksihlkw 7","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitzault 24","place_name":"Gitzault 24","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Glacier Gulch","place_name":"Glacier Gulch","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Glade","place_name":"Glade","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Gladwin Trailer Court","place_name":"Gladwin Trailer Court","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Glen Lake","place_name":"Glen Lake","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Glen Valley","place_name":"Glen Valley","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Glen Vowell","place_name":"Glen Vowell","community":"Sik-e-dakh 2","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Glenannan","place_name":"Glenannan","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Glenbank","place_name":"Glenbank","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Glenbrooke North","place_name":"Glenbrooke North","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Glendale","place_name":"Glendale","community":"Williams Lake","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 3"},{"location":"Gleneagles","place_name":"Gleneagles","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Gleneden","place_name":"Gleneden","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Glenemma","place_name":"Glenemma","community":"Okanagan (Part) 1 - Thompson/Okanagan","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Glen-Gla-Ouch 5","place_name":"Glen-Gla-Ouch 5","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Glenlily","place_name":"Glenlily","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Glenmerry","place_name":"Glenmerry","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Glenmore","place_name":"Glenmore","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Glenora - Cowichan Valley E","place_name":"Glenora","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Glenora - Kitimat-Stikine D","place_name":"Glenora","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Glenrosa","place_name":"Glenrosa","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Glentanna","place_name":"Glentanna","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Glimpse Lake","place_name":"Glimpse Lake","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Gold Bridge","place_name":"Gold Bridge","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Gold River","place_name":"","community":"Gold River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Golden","place_name":"","community":"Golden","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Goldstream","place_name":"Goldstream","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Good Hope","place_name":"Good Hope","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Good Hope Lake","place_name":"","community":"Good Hope Lake","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Goodlow","place_name":"Goodlow","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Goose Bay","place_name":"Goose Bay","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Gordon Head","place_name":"Gordon Head","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Gordon River","place_name":"Gordon River","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Gordon River 2","place_name":"","community":"Gordon River 2","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Gorge Harbour","place_name":"Gorge Harbour","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Gossen Creek","place_name":"Gossen Creek","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Gossip Island","place_name":"Gossip Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Gowlland Harbour","place_name":"Gowlland Harbour","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Graffunder Trailer Park","place_name":"Graffunder Trailer Park","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Gramsons","place_name":"Gramsons","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Grand Forks","place_name":"","community":"Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Grand Haven","place_name":"Grand Haven","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Grand Rapids","place_name":"Grand Rapids","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Granduc","place_name":"Granduc","community":"Stewart","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Grandview","place_name":"Grandview","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Grandview Bench","place_name":"Grandview Bench","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Grandview-Woodlands","place_name":"Grandview-Woodlands","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Granisle","place_name":"","community":"Granisle","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Granite","place_name":"Granite","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Granite Bay","place_name":"Granite Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Granite Falls","place_name":"Granite Falls","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Granite Trailer Park","place_name":"Granite Trailer Park","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Grantham","place_name":"Grantham","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Granthams Landing","place_name":"Granthams Landing","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Grasmere","place_name":"Grasmere","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Grassy Plains","place_name":"Grassy Plains","community":"Cheslatta 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Gravelle Ferry","place_name":"Gravelle Ferry","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Gray Creek","place_name":"Gray Creek","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Great Central","place_name":"Great Central","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Great Central Lake","place_name":"Great Central Lake","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Greata","place_name":"Greata","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Greater Vancouver A","place_name":"Greater Vancouver A","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Greater Vancouver C","place_name":"Greater Vancouver C","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Greater Vancouver, Subd. A","place_name":"Greater Vancouver, Subd. A","community":"North Vancouver - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Green Acres Trailer Park - Central Kootenay J","place_name":"Green Acres Trailer Park","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Green Acres Trailer Park - Columbia-Shuswap E","place_name":"Green Acres Trailer Park","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Green Bay Resort","place_name":"Green Bay Resort","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Green Cove","place_name":"Green Cove","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Greendale","place_name":"Greendale","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Greenwood","place_name":"","community":"Greenwood","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Greenwood Mobile Park","place_name":"Greenwood Mobile Park","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Grindrod","place_name":"Grindrod","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Groundbirch","place_name":"Groundbirch","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Guhthe Tah 12","place_name":"","community":"Guhthe Tah 12","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Guildford","place_name":"Guildford","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Gun Lake","place_name":"Gun Lake","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Gundy","place_name":"Gundy","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Gwayasdums 1","place_name":"","community":"Gwayasdums 1","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hagensborg","place_name":"Hagensborg","community":"Central Coast C","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hagwilget","place_name":"Hagwilget","community":"Hagwilget 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Hagwilget 1","place_name":"","community":"Hagwilget 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Haig","place_name":"Haig","community":"Schkam 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Haina","place_name":"Haina","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Halalt 2","place_name":"","community":"Halalt 2","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Halfmoon Bay","place_name":"Halfmoon Bay","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Halfway Graham Subdivision","place_name":"Halfway Graham Subdivision","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Halfway Ranch","place_name":"Halfway Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Halfway River 168","place_name":"","community":"Halfway River 168","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Halhalaeden","place_name":"","community":"Halhalaeden","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Halhalaeden 14","place_name":"Halhalaeden 14","community":"Halhalaeden","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Halhalaeden 14A","place_name":"Halhalaeden 14A","community":"Halhalaeden","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Hall","place_name":"Hall","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Halyn Trailer Court","place_name":"Halyn Trailer Court","community":"Canal Flats","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hamilton Creek 2","place_name":"","community":"Hamilton Creek 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Hamilton Creek 7","place_name":"Hamilton Creek 7","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Hanbury","place_name":"Hanbury","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hanceville","place_name":"Hanceville","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Haney","place_name":"Haney","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Happy Valley","place_name":"Happy Valley","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Happy Valley Trailer Park","place_name":"Happy Valley Trailer Park","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Harbour Chines","place_name":"Harbour Chines","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Harbour Village","place_name":"Harbour Village","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hardwicke Island","place_name":"Hardwicke Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Harmac","place_name":"Harmac","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Harmony Heights Trailer Park","place_name":"Harmony Heights Trailer Park","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Harris 3","place_name":"","community":"Harris 3","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Harrison Hot Springs","place_name":"","community":"Harrison Hot Springs","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Harrison Mills","place_name":"Harrison Mills","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Harrogate","place_name":"Harrogate","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Harrop","place_name":"Harrop","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hart Highlands","place_name":"Hart Highlands","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Hartley Bay","place_name":"Hartley Bay","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Harwood Island 2","place_name":"Harwood Island 2","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hasler Flat","place_name":"Hasler Flat","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hasler Flats Subdivision","place_name":"Hasler Flats Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hastings-Sunrise","place_name":"Hastings-Sunrise","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hatzic","place_name":"Hatzic","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hawkins Lake Subdivision","place_name":"Hawkins Lake Subdivision","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Hayview Mobile Home","place_name":"Hayview Mobile Home","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Hayward Subdivision","place_name":"Hayward Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hazelmere","place_name":"Hazelmere","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hazelton","place_name":"","community":"Hazelton","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Headquarters","place_name":"Headquarters","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Headwaters Ranch","place_name":"Headwaters Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Health Bay","place_name":"Health Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hecate","place_name":"Hecate","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hedley","place_name":"Hedley","community":"Okanagan-Similkameen G","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Heffley Creek","place_name":"Heffley Creek","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Hells Gate","place_name":"Hells Gate","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Hemlock Valley","place_name":"Hemlock Valley","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Hendrix Lake","place_name":"Hendrix Lake","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Henry And Ann Trailer Park","place_name":"Henry And Ann Trailer Park","community":"Cowichan Valley I","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Heriot Bay","place_name":"Heriot Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hesquiat","place_name":"Hesquiat","community":"Hesquiat 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hesquiat 1","place_name":"","community":"Hesquiat 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Heydon Bay","place_name":"Heydon Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hickethier Ranch","place_name":"Hickethier Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hideway Trailer Court","place_name":"Hideway Trailer Court","community":"Revelstoke","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"High Bar 1","place_name":"","community":"High Bar 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Highland Valley Subdivision","place_name":"Highland Valley Subdivision","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Highlands","place_name":"","community":"Highlands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 3"},{"location":"Hiina'is","place_name":"Hiina'is","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Hillcrest","place_name":"Hillcrest","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Hilliers","place_name":"Hilliers","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Hills","place_name":"Hills","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hillside Mobile Home Park","place_name":"Hillside Mobile Home Park","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Hilltop Ranch","place_name":"Hilltop Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hippa","place_name":"Hippa","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Hisnit","place_name":"Hisnit","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hitacu","place_name":"Hitacu","community":"Ittatsoo 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hi'tatis","place_name":"Hi'tatis","community":"Elhlateese 2","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hiusta Meadow","place_name":"Hiusta Meadow","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Hixon","place_name":"Hixon","community":"Fraser-Fort George E","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Hkusam","place_name":"Hkusam","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Holachten 8","place_name":"","community":"Holachten 8","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Holberg","place_name":"Holberg","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Holiday Family Trailer Park","place_name":"Holiday Family Trailer Park","community":"Priest's Valley 6","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Hollyburn","place_name":"Hollyburn","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Holmwood","place_name":"Holmwood","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Homalco 9","place_name":"","community":"Homalco 9","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Homestead Trailer Park","place_name":"Homestead Trailer Park","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Homfray Creek","place_name":"Homfray Creek","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Honeymoon Bay","place_name":"Honeymoon Bay","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Honeymoon Creek","place_name":"Honeymoon Creek","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Hoodoos","place_name":"Hoodoos","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hoo-ii","place_name":"Hoo-ii","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Hope","place_name":"","community":"Hope","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Hope Bay","place_name":"Hope Bay","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Hope Island 1","place_name":"","community":"Hope Island 1","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hopetown","place_name":"Hopetown","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hopetown 10A","place_name":"","community":"Hopetown 10A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hopington","place_name":"Hopington","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hopkins Landing","place_name":"Hopkins Landing","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Horlick Point","place_name":"Horlick Point","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hornby Island","place_name":"Hornby Island","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Horsefly","place_name":"Horsefly","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Horseshoe Bay","place_name":"Horseshoe Bay","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hosmatqts'os","place_name":"Hosmatqts'os","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Hosmer","place_name":"Hosmer","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hosmer Trailer Park","place_name":"Hosmer Trailer Park","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hospital Hill","place_name":"Hospital Hill","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Hot Springs Cove","place_name":"Hot Springs Cove","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Houpsitas","place_name":"Houpsitas","community":"Houpsitas 6","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Houpsitas 6","place_name":"","community":"Houpsitas 6","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Houston","place_name":"","community":"Houston","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Houston Trailer Court","place_name":"Houston Trailer Court","community":"Houston","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Howser","place_name":"Howser","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hudson Hope","place_name":"Hudson Hope","community":"Hudson's Hope","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hudson's Hope","place_name":"","community":"Hudson's Hope","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hullcar","place_name":"Hullcar","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Humpback Bay","place_name":"Humpback Bay","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Huntingdon","place_name":"Huntingdon","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hunts Inlet","place_name":"Hunts Inlet","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Hupel","place_name":"Hupel","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Huscroft","place_name":"Huscroft","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hustalen 1","place_name":"","community":"Hustalen 1","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Hutchinson","place_name":"Hutchinson","community":"Cowichan Valley C","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Hu'ul","place_name":"Hu'ul","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Hyacinthe Bay","place_name":"Hyacinthe Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hyde Creek","place_name":"Hyde Creek","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hydraulic","place_name":"Hydraulic","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Hyland Post","place_name":"Hyland Post","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Hyland Ranch","place_name":"Hyland Ranch","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Idabel Lake","place_name":"Idabel Lake","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Indian Rock","place_name":"Indian Rock","community":"Okanagan-Similkameen E","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ingenika Mine","place_name":"Ingenika Mine","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Ingenika Point","place_name":"","community":"Ingenika Point","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Inkahtsaph 6","place_name":"","community":"Inkahtsaph 6","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Inkaneep","place_name":"Inkaneep","community":"Osoyoos 1","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Inkluckcheen","place_name":"","community":"Inkluckcheen","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Inkluckcheen 21","place_name":"Inkluckcheen 21","community":"Inkluckcheen","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Inkluckcheen 21B","place_name":"Inkluckcheen 21B","community":"Inkluckcheen","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Inklyuhkinatko 2","place_name":"","community":"Inklyuhkinatko 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Invermere","place_name":"","community":"Invermere","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Ioco","place_name":"Ioco","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Iron Bay","place_name":"Iron Bay","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Iron Mask Trailer Park","place_name":"Iron Mask Trailer Park","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Irvines Landing","place_name":"Irvines Landing","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Isaac (Gale Lake) 8","place_name":"Isaac (Gale Lake) 8","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Isidore's Ranch 4","place_name":"","community":"Isidore's Ranch 4","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Iskut","place_name":"Iskut","community":"Iskut 6","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Iskut 6","place_name":"","community":"Iskut 6","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Island Cache","place_name":"Island Cache","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Isle Pierre","place_name":"Isle Pierre","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Ittatsoo 1","place_name":"","community":"Ittatsoo 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Ivy Green Mobile Home Park","place_name":"Ivy Green Mobile Home Park","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Jackfish Lake Subdivision","place_name":"Jackfish Lake Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Jackman","place_name":"Jackman","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Jackpine Flats","place_name":"Jackpine Flats","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Jackson Bay","place_name":"Jackson Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Jacksons","place_name":"Jacksons","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Jade City","place_name":"Jade City","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Jaffray","place_name":"Jaffray","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Jaffray Estates","place_name":"Jaffray Estates","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"James Bay","place_name":"James Bay","community":"Victoria","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Jean Baptiste 28","place_name":"","community":"Jean Baptiste 28","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Jedway","place_name":"Jedway","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Jellicoe","place_name":"Jellicoe","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Jersey","place_name":"Jersey","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Jervis Inlet","place_name":"Jervis Inlet","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Jesmond","place_name":"Jesmond","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Jeune Landing","place_name":"Jeune Landing","community":"Port Alice","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Jim Smith Lake and Area","place_name":"Jim Smith Lake and Area","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Joeyaska 2","place_name":"","community":"Joeyaska 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Johnson","place_name":"Johnson","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Johnson Heights","place_name":"Johnson Heights","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Johnsons Landing","place_name":"Johnsons Landing","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Johny Sticks 2","place_name":"","community":"Johny Sticks 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Jordan River","place_name":"Jordan River","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Juan de Fuca","place_name":"Juan de Fuca","community":"Juan de Fuca (Part 2)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Juan de Fuca (Part 1)","place_name":"","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Juan de Fuca (Part 2)","place_name":"","community":"Juan de Fuca (Part 2)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Jumbo Glacier","place_name":"Jumbo Glacier","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"June Springs Estates","place_name":"June Springs Estates","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Juniper Ridge","place_name":"Juniper Ridge","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Jura","place_name":"Jura","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Juskatla","place_name":"Juskatla","community":"Port Clements","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Ka:ook","place_name":"Ka:ook","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ka:oop:insh","place_name":"Ka:oop:insh","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ka:youk","place_name":"Ka:youk","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kahmoose 4","place_name":"","community":"Kahmoose 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Kahntah","place_name":"Kahntah","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Kahntah 3","place_name":"","community":"Kahntah 3","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"N/A"},{"location":"Kaisun","place_name":"Kaisun","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kakawis","place_name":"Kakawis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kaleden","place_name":"Kaleden","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kaleva","place_name":"Kaleva","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kamloops","place_name":"","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Kamloops 1","place_name":"","community":"Kamloops 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kanaka Bar","place_name":"","community":"Kanaka Bar","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kanaka Bar - Thompson-Nicola I (Blue Sky Country)","place_name":"Kanaka Bar","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kanaka Bar 1A","place_name":"Kanaka Bar 1A","community":"Kanaka Bar","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kanaka Bar 2","place_name":"Kanaka Bar 2","community":"Kanaka Bar","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Karlukwees","place_name":"Karlukwees","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Karlukwees 1","place_name":"Karlukwees 1","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kaslo","place_name":"","community":"Kaslo","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Katit 1","place_name":"","community":"Katit 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Katzie 1","place_name":"","community":"Katzie 1","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Katzie 2","place_name":"","community":"Katzie 2","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Ka-x-shiitl","place_name":"Ka-x-shiitl","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Keating","place_name":"Keating","community":"Central Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Keats Island","place_name":"Keats Island","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Kedleston","place_name":"Kedleston","community":"North Okanagan C","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Keekwillie Subdivision","place_name":"Keekwillie Subdivision","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Keekwillie Trailer Park","place_name":"Keekwillie Trailer Park","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Keeshan 9","place_name":"Keeshan 9","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Keithley Creek","place_name":"Keithley Creek","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Keith-Lynn","place_name":"Keith-Lynn","community":"North Vancouver - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kelly Lake - Peace River D","place_name":"Kelly Lake","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Kelly Lake - Thompson-Nicola E (Bonaparte Plateau)","place_name":"Kelly Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Kelly Lake Road Estates","place_name":"Kelly Lake Road Estates","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Kelowna","place_name":"","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Kelvin","place_name":"Kelvin","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kemano","place_name":"Kemano","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kemano Beach","place_name":"Kemano Beach","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kendrick Camp","place_name":"Kendrick Camp","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kensington-Cedar Cottage","place_name":"Kensington-Cedar Cottage","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kent","place_name":"","community":"Kent","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Keremeos","place_name":"","community":"Keremeos","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kerr Creek","place_name":"Kerr Creek","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kerrisdale","place_name":"Kerrisdale","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kershaw Subdivision","place_name":"Kershaw Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kersley","place_name":"Kersley","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Kettle Valley","place_name":"Kettle Valley","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Khahanie Trailer Court","place_name":"Khahanie Trailer Court","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Khenipsen","place_name":"Khenipsen","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"K'i Deldel","place_name":"K'i Deldel","community":"Charley Boy's Meadow 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Kia Ora Trailer Park","place_name":"Kia Ora Trailer Park","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Kicking Horse","place_name":"Kicking Horse","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Kiikiixink'ok","place_name":"Kiikiixink'ok","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kiix aa","place_name":"Kiix aa","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kiix-in","place_name":"Kiix-in","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kilbella Bay","place_name":"Kilbella Bay","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kildala Arm","place_name":"Kildala Arm","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kildonan","place_name":"Kildonan","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kilgard","place_name":"Kilgard","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kilkerran","place_name":"Kilkerran","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Killarney","place_name":"Killarney","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Killiney Beach","place_name":"Killiney Beach","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Kil-pah-las 3","place_name":"","community":"Kil-pah-las 3","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kimberley","place_name":"","community":"Kimberley","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kimsquit","place_name":"Kimsquit","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kincolith 14","place_name":"Kincolith 14","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kingcome","place_name":"Kingcome","community":"Quaee 7","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kingcome Inlet - Mount Waddington A","place_name":"Kingcome Inlet","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kingcome Inlet - Quaee 7","place_name":"Kingcome Inlet","community":"Quaee 7","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kingfisher","place_name":"Kingfisher","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kingsgate","place_name":"Kingsgate","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kinnaird","place_name":"Kinnaird","community":"Castlegar","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Kippase 2","place_name":"","community":"Kippase 2","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kispiox","place_name":"Kispiox","community":"Kispiox 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kispiox 1","place_name":"","community":"Kispiox 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kispiox Valley","place_name":"Kispiox Valley","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitamaat 2","place_name":"","community":"Kitamaat 2","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitamaat Village","place_name":"Kitamaat Village","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitasoo 1","place_name":"","community":"Kitasoo 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitchener","place_name":"Kitchener","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kitimat","place_name":"","community":"Kitimat","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 2"},{"location":"Kitimat-Stikine A","place_name":"","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine B","place_name":"","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine C (Part 1)","place_name":"","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine C (Part 2)","place_name":"","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine D","place_name":"","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine E","place_name":"","community":"Kitimat-Stikine E","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine F","place_name":"","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine, Subd. A","place_name":"Kitimat-Stikine, Subd. A","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine, Subd. B","place_name":"Kitimat-Stikine, Subd. B","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine, Subd. C","place_name":"Kitimat-Stikine, Subd. C","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine, Subd. D","place_name":"Kitimat-Stikine, Subd. D","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitkatla","place_name":"Kitkatla","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitsault","place_name":"Kitsault","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitseguecla","place_name":"Kitseguecla","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitselas 1","place_name":"","community":"Kitselas 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitsilano","place_name":"Kitsilano","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kitsumkalum","place_name":"Kitsumkalum","community":"Terrace","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 3"},{"location":"Kitsumkaylum 1","place_name":"","community":"Kitsumkaylum 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitty Coleman","place_name":"Kitty Coleman","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Kitwanga","place_name":"Kitwanga","community":"Gitwangak 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitzowit 20","place_name":"","community":"Kitzowit 20","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kiusta","place_name":"Kiusta","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Klahkamich 17","place_name":"","community":"Klahkamich 17","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Klahkowit 5","place_name":"Klahkowit 5","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kleanza Creek Subdivision","place_name":"Kleanza Creek Subdivision","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kleecoot","place_name":"Kleecoot","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kleena Kleene","place_name":"Kleena Kleene","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Kleetlekut 22","place_name":"","community":"Kleetlekut 22","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Klehkoot 2","place_name":"","community":"Klehkoot 2","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kleindale","place_name":"Kleindale","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Klemtu","place_name":"Klemtu","community":"Kitasoo 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Klickkumcheen 18","place_name":"","community":"Klickkumcheen 18","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kliikliihuwis","place_name":"Kliikliihuwis","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Klit-kle-mah-ah","place_name":"Klit-kle-mah-ah","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kloklowuck 7","place_name":"","community":"Kloklowuck 7","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kluachon Lake 1","place_name":"Kluachon Lake 1","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kluskus 1","place_name":"","community":"Kluskus 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Knutsford","place_name":"Knutsford","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kobes","place_name":"Kobes","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Kokish","place_name":"Kokish","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Koksilah","place_name":"Koksilah","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kookswees","place_name":"Kookswees","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kootenay 1","place_name":"","community":"Kootenay 1","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Kootenay Bay","place_name":"Kootenay Bay","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Boundary A","place_name":"","community":"Kootenay Boundary A","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary B","place_name":"Kootenay Boundary B","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary B / Lower Columbia-Old-Glory","place_name":"","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary C","place_name":"Kootenay Boundary C","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Boundary C / Christina Lake","place_name":"","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Boundary D","place_name":"Kootenay Boundary D","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Boundary D / Rural Grand Forks","place_name":"","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Boundary E","place_name":"Kootenay Boundary E","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary E / West Boundary","place_name":"","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary, Subd. A","place_name":"Kootenay Boundary, Subd. A","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary, Subd. B","place_name":"Kootenay Boundary, Subd. B","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Cove Mobile Village","place_name":"Kootenay Cove Mobile Village","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Crossing","place_name":"Kootenay Crossing","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Flats West","place_name":"Kootenay Flats West","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kopchitchin 2","place_name":"","community":"Kopchitchin 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Kowtain 17","place_name":"","community":"Kowtain 17","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"K'oxsinqii","place_name":"K'oxsinqii","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kragmont","place_name":"Kragmont","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Krestova","place_name":"Krestova","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ksan","place_name":"Ksan","community":"Gitanmaax 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kshish 4","place_name":"","community":"Kshish 4","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kuldo","place_name":"Kuldo","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Kulkayu (Hartley Bay) 4","place_name":"","community":"Kulkayu (Hartley Bay) 4","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kulkayu (Hartley Bay) 4A","place_name":"","community":"Kulkayu (Hartley Bay) 4A","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kulkayu 4","place_name":"Kulkayu 4","community":"Kulkayu (Hartley Bay) 4","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kulspai 6","place_name":"","community":"Kulspai 6","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kumcheen 1","place_name":"","community":"Kumcheen 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kung","place_name":"Kung","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kuper Island 7","place_name":"Kuper Island 7","community":"Penelakut Island 7","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kushya Creek 7","place_name":"Kushya Creek 7","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Kuskonook","place_name":"Kuskonook","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kuthlalth 3","place_name":"Kuthlalth 3","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Kuz Che 5","place_name":"Kuz Che 5","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Kwawkwawapilt 6","place_name":"","community":"Kwawkwawapilt 6","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Kwinaquth","place_name":"Kwinaquth","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kwisitis","place_name":"Kwisitis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kye Bay","place_name":"Kye Bay","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Kyuquot","place_name":"Kyuquot","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Lac la Hache","place_name":"Lac la Hache","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lac Le Jeune","place_name":"Lac Le Jeune","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lachkaltsap 9","place_name":"Lachkaltsap 9","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Ladner","place_name":"Ladner","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ladysmith","place_name":"","community":"Ladysmith","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Laidlaw","place_name":"Laidlaw","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Lakahahmen 11","place_name":"","community":"Lakahahmen 11","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Lake Buntzen","place_name":"Lake Buntzen","community":"Anmore","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Lake Country","place_name":"","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Lake Cowichan","place_name":"","community":"Lake Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Lake Errock","place_name":"Lake Errock","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Lake Hill","place_name":"Lake Hill","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Lake Kathlyn","place_name":"Lake Kathlyn","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Lakelse Lake","place_name":"Lakelse Lake","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Lakeshore Highlands","place_name":"Lakeshore Highlands","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Laketon","place_name":"Laketon","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Laketown 3","place_name":"","community":"Laketown 3","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Lakeview Heights","place_name":"Lakeview Heights","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Lambourn Trailer Park","place_name":"Lambourn Trailer Park","community":"Cowichan Valley D","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Lamming Mills","place_name":"Lamming Mills","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lang Bay","place_name":"Lang Bay","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Langdale","place_name":"Langdale","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Langford","place_name":"","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Langley - City","place_name":"","community":"Langley - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Langley - District municipality","place_name":"","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Langley 2","place_name":"","community":"Langley 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Langley 5","place_name":"Langley 5","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Langner Trailer Park","place_name":"Langner Trailer Park","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Lantzville","place_name":"","community":"Lantzville","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Larch Hill","place_name":"Larch Hill","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lardeau","place_name":"Lardeau","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Larsons Landing","place_name":"Larsons Landing","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Laurentian Belaire","place_name":"Laurentian Belaire","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Lavington","place_name":"Lavington","community":"Coldstream","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Lawnhill","place_name":"Lawnhill","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Lax Kw'alaams","place_name":"Lax Kw'alaams","community":"Lax Kw'alaams 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Lax Kw'alaams 1","place_name":"","community":"Lax Kw'alaams 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Laxgalts'ap","place_name":"Laxgalts'ap","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Lazo","place_name":"Lazo","community":"Comox","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Lebahdo","place_name":"Lebahdo","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Lee Creek","place_name":"Lee Creek","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Leechtown","place_name":"Leechtown","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Lees Corner","place_name":"Lees Corner","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lejac","place_name":"Lejac","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Lemon Creek","place_name":"Lemon Creek","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Lemoray","place_name":"Lemoray","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Leo Creek","place_name":"Leo Creek","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Leon Creek 2","place_name":"Leon Creek 2","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Lexau Ranch","place_name":"Lexau Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Lexington Subdivision","place_name":"Lexington Subdivision","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lezbye 6","place_name":"Lezbye 6","community":"Lezbye 6","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Lezbye 6","place_name":"","community":"Lezbye 6","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Liard River","place_name":"Liard River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Liard River 3","place_name":"","community":"Liard River 3","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Lighthouse Point","place_name":"Lighthouse Point","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Likely","place_name":"Likely","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lillooet","place_name":"","community":"Lillooet","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Lillooet 1","place_name":"","community":"Lillooet 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Lily Lake","place_name":"Lily Lake","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Lincoln Park","place_name":"Lincoln Park","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Lindell","place_name":"Lindell","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Lindell Beach","place_name":"Lindell Beach","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Lindeman","place_name":"Lindeman","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Lions Bay","place_name":"","community":"Lions Bay","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Lismore Trailer Park","place_name":"Lismore Trailer Park","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Lister","place_name":"Lister","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Little Acres Trailer Court","place_name":"Little Acres Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Little Fort","place_name":"Little Fort","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Little River","place_name":"Little River","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Little Springs","place_name":"","community":"Little Springs","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Little Springs 8","place_name":"Little Springs 8","community":"Little Springs","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Little Springs 18","place_name":"Little Springs 18","community":"Little Springs","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Liumchen Village Mobile Home Park","place_name":"Liumchen Village Mobile Home Park","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Living Waters Trailer Park","place_name":"Living Waters Trailer Park","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lockeport","place_name":"Lockeport","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Lodge Pole Trailer Park","place_name":"Lodge Pole Trailer Park","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Logan Lake","place_name":"","community":"Logan Lake","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lohbiee 3","place_name":"","community":"Lohbiee 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Lone Butte","place_name":"Lone Butte","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lone Prairie","place_name":"Lone Prairie","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Long Harbour","place_name":"Long Harbour","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Longbeach","place_name":"Longbeach","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Longworth","place_name":"Longworth","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Loon Lake","place_name":"Loon Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Loon Lake Subdivision","place_name":"Loon Lake Subdivision","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Loos","place_name":"Loos","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Louis Creek","place_name":"Louis Creek","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Louis Creek 4","place_name":"","community":"Louis Creek 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Louis Squinas Ranch 14","place_name":"Louis Squinas Ranch 14","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lower China Creek","place_name":"Lower China Creek","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Lower Hat Creek 2","place_name":"","community":"Lower Hat Creek 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lower Lodge Pole Trailer Court","place_name":"Lower Lodge Pole Trailer Court","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Lower Lonsdale","place_name":"Lower Lonsdale","community":"North Vancouver - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Lower Nicola","place_name":"Lower Nicola","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lower Nicola Trailer Park","place_name":"Lower Nicola Trailer Park","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lower Post","place_name":"","community":"Lower Post","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Lower Similkameen 2","place_name":"","community":"Lower Similkameen 2","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lucerne","place_name":"Lucerne","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lukseetsissum 9","place_name":"","community":"Lukseetsissum 9","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Lulu 5","place_name":"","community":"Lulu 5","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lumberton","place_name":"Lumberton","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Lumby","place_name":"","community":"Lumby","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lund","place_name":"Lund","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Lust Subdivision","place_name":"Lust Subdivision","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Luxton","place_name":"Luxton","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Lyacksun 3","place_name":"","community":"Lyacksun 3","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Lynn Valley","place_name":"Lynn Valley","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Lynnmour","place_name":"Lynnmour","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Lynx Creek","place_name":"Lynx Creek","community":"Hudson's Hope","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Lytton","place_name":"","community":"Lytton","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lytton 27B","place_name":"Lytton 27B","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lytton 4A","place_name":"","community":"Lytton 4A","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lytton 4E","place_name":"","community":"Lytton 4E","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lytton 9A","place_name":"","community":"Lytton 9A","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lytton 9B","place_name":"","community":"Lytton 9B","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Maalth-sit","place_name":"Maalth-sit","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Mabel Lake","place_name":"Mabel Lake","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Macalister","place_name":"Macalister","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Mackenzie","place_name":"","community":"Mackenzie","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Macoah","place_name":"Macoah","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Macoah 1","place_name":"","community":"Macoah 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Madeira Park","place_name":"Madeira Park","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Magic Lake Estates","place_name":"Magic Lake Estates","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Magna Bay","place_name":"Magna Bay","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Magnum Mine","place_name":"Magnum Mine","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Mah:kiit","place_name":"Mah:kiit","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mahatta River","place_name":"Mahatta River","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mahmalillikullah 1","place_name":"Mahmalillikullah 1","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mahood Falls","place_name":"Mahood Falls","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Mahope","place_name":"Mahope","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Maht'ii'as","place_name":"Maht'ii'as","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Maillardville","place_name":"Maillardville","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Makinson","place_name":"Makinson","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Malachan 11","place_name":"","community":"Malachan 11","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Malahat","place_name":"Malahat","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Malahat 11","place_name":"","community":"Malahat 11","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Malakwa","place_name":"Malakwa","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Malakwa Trailer Park","place_name":"Malakwa Trailer Park","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Malibu","place_name":"Malibu","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Mammel Subdivision","place_name":"Mammel Subdivision","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Manca Subdivision","place_name":"Manca Subdivision","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Manning Park","place_name":"Manning Park","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Manson Creek","place_name":"Manson Creek","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Mansons Landing","place_name":"Mansons Landing","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mapes","place_name":"Mapes","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Maple Bay","place_name":"Maple Bay","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Maple Ridge","place_name":"","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Maplewood","place_name":"Maplewood","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Maq:cup","place_name":"Maq:cup","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mara","place_name":"Mara","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Marble Canyon 3","place_name":"","community":"Marble Canyon 3","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Marblehead","place_name":"Marblehead","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Margaret Bay","place_name":"Margaret Bay","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Marguerite","place_name":"Marguerite","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Marigold","place_name":"Marigold","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Marilla","place_name":"Marilla","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Marktosis","place_name":"Marktosis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Marktosis 15","place_name":"","community":"Marktosis 15","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Marne","place_name":"Marne","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Marpole","place_name":"Marpole","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Marron Valley","place_name":"Marron Valley","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Marsh Creek Area","place_name":"Marsh Creek Area","community":"Kootenay Boundary A","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Marsh Subdivision","place_name":"Marsh Subdivision","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Marshall School Junction","place_name":"Marshall School Junction","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Martin Prairie","place_name":"Martin Prairie","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Martin Valley","place_name":"Martin Valley","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mary Hill","place_name":"Mary Hill","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Marysville","place_name":"Marysville","community":"Kimberley","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Mason Creek","place_name":"Mason Creek","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Masset","place_name":"","community":"Masset","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Masset 1","place_name":"","community":"Masset 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Matilpi","place_name":"Matilpi","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Matsayno 5","place_name":"Matsayno 5","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Matsqui","place_name":"Matsqui","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Matsqui 4","place_name":"","community":"Matsqui 4","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Matsqui Main 2","place_name":"","community":"Matsqui Main 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Maurelle Island","place_name":"Maurelle Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Maxan Lake 4","place_name":"Maxan Lake 4","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Mayfair","place_name":"Mayfair","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Mayne Island","place_name":"Mayne Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mayne Island 6","place_name":"Mayne Island 6","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mayook","place_name":"Mayook","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"McBride","place_name":"","community":"McBride","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"McCalls Landing","place_name":"McCalls Landing","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"McCartney's Flat 4","place_name":"","community":"McCartney's Flat 4","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"McCulloch","place_name":"McCulloch","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"McDame","place_name":"McDame","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"McDonalds Landing","place_name":"McDonalds Landing","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"McGillivray","place_name":"McGillivray","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"McGregor","place_name":"McGregor","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"McGuire","place_name":"McGuire","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"McKearney Ranch","place_name":"McKearney Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"McKinley Landing","place_name":"McKinley Landing","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"McLean Ranch","place_name":"McLean Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"McLeese Lake","place_name":"McLeese Lake","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"McLeod Lake","place_name":"McLeod Lake","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"McLeod Lake 1","place_name":"","community":"McLeod Lake 1","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"N/A"},{"location":"McLeod Lake 5","place_name":"McLeod Lake 5","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"McLeod Subdivision","place_name":"McLeod Subdivision","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"McLure","place_name":"McLure","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"McMillan Island 6","place_name":"","community":"McMillan Island 6","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"McNab Creek","place_name":"McNab Creek","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Meachen","place_name":"Meachen","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Meadow Creek - Central Kootenay D","place_name":"Meadow Creek","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Meadow Creek - Columbia-Shuswap F","place_name":"Meadow Creek","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Meadow Lake","place_name":"Meadow Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Meadowbrook","place_name":"Meadowbrook","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Meadowbrook Estates Trailer Park","place_name":"Meadowbrook Estates Trailer Park","community":"Duck Lake 7","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Meadows","place_name":"Meadows","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Meem Quam Leese","place_name":"Meem Quam Leese","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Meldrum Creek","place_name":"Meldrum Creek","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Merritt","place_name":"","community":"Merritt","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Merville","place_name":"Merville","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mesachie Lake","place_name":"Mesachie Lake","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mesilinka 7","place_name":"","community":"Mesilinka 7","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Metchosin","place_name":"","community":"Metchosin","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Metlakatla","place_name":"Metlakatla","community":"S1/2 Tsimpsean 2","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Metro Vancouver A","place_name":"","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Metrotown","place_name":"Metrotown","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Meziadin Junction","place_name":"Meziadin Junction","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Meziadin Subdivision","place_name":"Meziadin Subdivision","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Mica Creek","place_name":"Mica Creek","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Michel Gardens 36","place_name":"","community":"Michel Gardens 36","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Middle River","place_name":"Middle River","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Middlegate","place_name":"Middlegate","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Midway","place_name":"","community":"Midway","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Mile 16 (Hwy 97)","place_name":"Mile 16 (Hwy 97)","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Mile 19 Overhead","place_name":"Mile 19 Overhead","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Mile 292 Subdivision Alaska Hwy","place_name":"Mile 292 Subdivision Alaska Hwy","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Mile 293 Alaska Highway","place_name":"Mile 293 Alaska Highway","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Mile 422 Alaska Highway","place_name":"Mile 422 Alaska Highway","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Mile 5 Alaska Highway","place_name":"Mile 5 Alaska Highway","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Mile 62 1/2","place_name":"Mile 62 1/2","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Mill Bay - Bulkley-Nechako G","place_name":"Mill Bay","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Mill Bay - Cowichan Valley A","place_name":"Mill Bay","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mill Bay - Nisga'a","place_name":"Mill Bay","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Miller Creek Subdivision","place_name":"Miller Creek Subdivision","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Miller Subdivision","place_name":"Miller Subdivision","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Millers Landing","place_name":"Millers Landing","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Millstream","place_name":"Millstream","community":"Highlands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 3"},{"location":"Milner","place_name":"Milner","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Milnes Landing","place_name":"Milnes Landing","community":"Sooke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Minaty Bay","place_name":"Minaty Bay","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Minstrel Island","place_name":"Minstrel Island","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Minto Landing","place_name":"Minto Landing","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Miocene","place_name":"Miocene","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Miracle Beach","place_name":"Miracle Beach","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Miracle Valley","place_name":"Miracle Valley","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Mirror Lake","place_name":"Mirror Lake","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Missezula Lake","place_name":"Missezula Lake","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Mission","place_name":"","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Mission 1","place_name":"","community":"Mission 1","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mission 5","place_name":"","community":"Mission 5","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mission Hill","place_name":"Mission Hill","community":"Courtenay","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Mission Island 2","place_name":"Mission Island 2","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mission Lands 17","place_name":"","community":"Mission Lands 17","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Mitchell Bay","place_name":"Mitchell Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Miworth","place_name":"Miworth","community":"Fraser-Fort George A","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Moberly Lake","place_name":"Moberly Lake","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Moha","place_name":"Moha","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Montague Harbour","place_name":"Montague Harbour","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Monte Creek","place_name":"Monte Creek","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Monte Lake","place_name":"Monte Lake","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Montizambert Wynd","place_name":"Montizambert Wynd","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Montney","place_name":"Montney","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Montrose","place_name":"","community":"Montrose","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Moose Heights","place_name":"Moose Heights","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Mooyah Bay","place_name":"Mooyah Bay","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Moresby Camp","place_name":"Moresby Camp","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Morgan Subdivision","place_name":"Morgan Subdivision","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Moricetown","place_name":"Moricetown","community":"Babine 17","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Moricetown 1","place_name":"","community":"Moricetown 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Morrissey","place_name":"Morrissey","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Mound Road Subdivision","place_name":"Mound Road Subdivision","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Mount Baldy","place_name":"Mount Baldy","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Mount Currie","place_name":"","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Currie 1","place_name":"Mount Currie 1","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Currie 2","place_name":"Mount Currie 2","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Currie 6","place_name":"Mount Currie 6","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Currie 8","place_name":"Mount Currie 8","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Currie 10","place_name":"Mount Currie 10","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Gardner","place_name":"Mount Gardner","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Mount Lehman","place_name":"Mount Lehman","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Mount Pleasant","place_name":"Mount Pleasant","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Mount Robson","place_name":"Mount Robson","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Mount View Trailer Court","place_name":"Mount View Trailer Court","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Mount Waddington A","place_name":"","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Waddington B","place_name":"","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Waddington C","place_name":"","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Waddington D","place_name":"","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Waddington, Subd. A","place_name":"Mount Waddington, Subd. A","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Waddington, Subd. B","place_name":"Mount Waddington, Subd. B","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Washington","place_name":"Mount Washington","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mountain Peak Trailer Court","place_name":"Mountain Peak Trailer Court","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Mountain Shadow Trailer Court","place_name":"Mountain Shadow Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Mountain Shadows Trailer Court","place_name":"Mountain Shadows Trailer Court","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Mountain Station","place_name":"Mountain Station","community":"Nelson","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Mountain View","place_name":"Mountain View","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Mountain View Trailer Court","place_name":"Mountain View Trailer Court","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Mountainview Trailer Park","place_name":"Mountainview Trailer Park","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Moyie","place_name":"Moyie","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Moyie Lake","place_name":"Moyie Lake","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Moyie River","place_name":"Moyie River","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Moyie Shore Estates","place_name":"Moyie Shore Estates","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Mud Bay - Comox Valley A","place_name":"Mud Bay","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mud Bay - Surrey","place_name":"Mud Bay","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Mud River","place_name":"Mud River","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Mudge Island","place_name":"Mudge Island","community":"Nanaimo B","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Muncho Lake","place_name":"Muncho Lake","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Murdale","place_name":"Murdale","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Murrayville","place_name":"Murrayville","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Musgrave Landing","place_name":"Musgrave Landing","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Muskwa","place_name":"Muskwa","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Musqueam 2","place_name":"","community":"Musqueam 2","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Musqueam 4","place_name":"","community":"Musqueam 4","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Myra","place_name":"Myra","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Myrtle Point","place_name":"Myrtle Point","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ná:mint","place_name":"Ná:mint","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nadu","place_name":"Nadu","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Nahmint","place_name":"Nahmint","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Nahun","place_name":"Nahun","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Nak'azdli","place_name":"","community":"Nak'azdli","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Nak'azdli (Necoslie 1)","place_name":"Nak'azdli (Necoslie 1)","community":"Nak'azdli","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Nakusp","place_name":"","community":"Nakusp","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Nalos Landing","place_name":"Nalos Landing","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Namu","place_name":"Namu","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nanaimo","place_name":"","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Nanaimo A","place_name":"","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo B","place_name":"","community":"Nanaimo B","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Nanaimo C","place_name":"","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo D","place_name":"Nanaimo D","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo E","place_name":"","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo F","place_name":"","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo G","place_name":"","community":"Nanaimo G","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo H","place_name":"","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo River","place_name":"","community":"Nanaimo River","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanaimo River 2","place_name":"Nanaimo River 2","community":"Nanaimo River","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanaimo River 3","place_name":"Nanaimo River 3","community":"Nanaimo River","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanaimo River 4","place_name":"Nanaimo River 4","community":"Nanaimo River","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanaimo Town 1","place_name":"","community":"Nanaimo Town 1","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanaimo, Subd. A","place_name":"Nanaimo, Subd. A","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo, Subd. B","place_name":"Nanaimo, Subd. B","community":"Nanaimo G","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanoose","place_name":"","community":"Nanoose","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanoose Bay","place_name":"Nanoose Bay","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Naramata","place_name":"Naramata","community":"Okanagan-Similkameen E","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Narcosli Creek","place_name":"Narcosli Creek","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Nasookin Road Subdivision","place_name":"Nasookin Road Subdivision","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nass Camp","place_name":"Nass Camp","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Nautley (Fort Fraser) 1","place_name":"","community":"Nautley (Fort Fraser) 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Nazco 20","place_name":"","community":"Nazco 20","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Nazko","place_name":"Nazko","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Necait 6","place_name":"","community":"Necait 6","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Nechako","place_name":"Nechako","community":"Kitimat","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 2"},{"location":"Nedoats 11","place_name":"","community":"Nedoats 11","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Needles","place_name":"Needles","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nekalliston 2","place_name":"","community":"Nekalliston 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nekliptum 1","place_name":"Nekliptum 1","community":"Nekliptum 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nekliptum 1","place_name":"","community":"Nekliptum 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nelson","place_name":"","community":"Nelson","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Nelson Forks","place_name":"Nelson Forks","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Nelson Island","place_name":"Nelson Island","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Nelway","place_name":"Nelway","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nemaiah Valley","place_name":"Nemaiah Valley","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Nemiah Valley","place_name":"Nemiah Valley","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Nenagwas 12","place_name":"","community":"Nenagwas 12","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nequatque","place_name":"","community":"Nequatque","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Nequatque 1","place_name":"Nequatque 1","community":"Nequatque","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Nequatque 2","place_name":"Nequatque 2","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Nequatque 3A","place_name":"Nequatque 3A","community":"Nequatque","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Nesikep 6","place_name":"","community":"Nesikep 6","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Neskonlith","place_name":"","community":"Neskonlith","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Neskonlith 1","place_name":"Neskonlith 1","community":"Neskonlith","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Neskonlith 1 (Neskainlith 1)","place_name":"Neskonlith 1 (Neskainlith 1)","community":"Neskonlith","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Neskonlith 2","place_name":"Neskonlith 2","community":"Neskonlith","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nesters","place_name":"Nesters","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Nesuch 3","place_name":"","community":"Nesuch 3","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"New Aiyansh","place_name":"New Aiyansh","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"New Aiyansh 1","place_name":"New Aiyansh 1","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"New Barkerville","place_name":"New Barkerville","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"New Brighton","place_name":"New Brighton","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"New Clew","place_name":"New Clew","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"New Denver","place_name":"","community":"New Denver","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"New Hazelton","place_name":"","community":"New Hazelton","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"New Remo","place_name":"New Remo","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"New Settlement","place_name":"New Settlement","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"New Songhees 1A","place_name":"","community":"New Songhees 1A","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"New Westminster","place_name":"","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Newcastle","place_name":"Newcastle","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Newgate","place_name":"Newgate","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Newlands","place_name":"Newlands","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Newton","place_name":"Newton","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Niagara","place_name":"Niagara","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nichols Mobile Homes","place_name":"Nichols Mobile Homes","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Nicholson","place_name":"Nicholson","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Nickel Palm 4","place_name":"","community":"Nickel Palm 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nickeyeah 25","place_name":"","community":"Nickeyeah 25","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nicks Island","place_name":"Nicks Island","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nicola","place_name":"Nicola","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Nicola Lake 1","place_name":"","community":"Nicola Lake 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nicola Mameet 1","place_name":"","community":"Nicola Mameet 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nicomen 1","place_name":"","community":"Nicomen 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nimpkish","place_name":"Nimpkish","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nimpkish 2","place_name":"","community":"Nimpkish 2","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nimpkish Heights","place_name":"Nimpkish Heights","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nimpo Lake","place_name":"Nimpo Lake","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ninety Five Mile House","place_name":"Ninety Five Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ninety Four Mile House","place_name":"Ninety Four Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ninety Seven Mile House","place_name":"Ninety Seven Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ninety Three Mile House","place_name":"Ninety Three Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ninstints","place_name":"Ninstints","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Nisga'a","place_name":"","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Nkaih 10","place_name":"","community":"Nkaih 10","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nohomeen 23","place_name":"","community":"Nohomeen 23","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nooaitch 10","place_name":"","community":"Nooaitch 10","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Noonla 6","place_name":"","community":"Noonla 6","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Nootka","place_name":"Nootka","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Noralee","place_name":"Noralee","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Norgate","place_name":"Norgate","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Bay 5","place_name":"","community":"North Bay 5","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"North Bend","place_name":"North Bend","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"North Bonaparte","place_name":"North Bonaparte","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"North Bulkley","place_name":"North Bulkley","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"North Campbell River","place_name":"North Campbell River","community":"Campbell River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"North Coast A","place_name":"","community":"North Coast A","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"North Coast C","place_name":"","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"North Coast D","place_name":"","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"North Coast E","place_name":"","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"North Cowichan","place_name":"","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"North Delta","place_name":"North Delta","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Galiano","place_name":"North Galiano","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"North Kamloops","place_name":"North Kamloops","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"North Lonsdale","place_name":"North Lonsdale","community":"North Vancouver - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Nechako","place_name":"North Nechako","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"North Okanagan B","place_name":"","community":"North Okanagan B","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"North Okanagan C","place_name":"","community":"North Okanagan C","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"North Okanagan D","place_name":"","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"North Okanagan E","place_name":"","community":"North Okanagan E","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"North Okanagan F","place_name":"","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"North Okanagan, Subd. A","place_name":"North Okanagan, Subd. A","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"North Okanagan, Subd. B","place_name":"North Okanagan, Subd. B","community":"North Okanagan E","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"North Pender Island","place_name":"North Pender Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"North Pine","place_name":"North Pine","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"North Poplar","place_name":"North Poplar","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Saanich","place_name":"","community":"North Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"North Star","place_name":"North Star","community":"Kimberley","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"North Tacla Lake","place_name":"","community":"North Tacla Lake","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"North Tacla Lake 7","place_name":"North Tacla Lake 7","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"North Tacla Lake 7A","place_name":"North Tacla Lake 7A","community":"North Tacla Lake","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"North Thompson 1","place_name":"","community":"North Thompson 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"North Vancouver - City","place_name":"","community":"North Vancouver - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Vancouver - District municipality","place_name":"","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Woodlands","place_name":"North Woodlands","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Northern Rockies","place_name":"","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Northern Rockies A","place_name":"Northern Rockies A","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Northern Rockies B","place_name":"Northern Rockies B","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Northern Rockies Regional Municipality","place_name":"Northern Rockies Regional Municipality","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Northfield","place_name":"Northfield","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Northridge","place_name":"Northridge","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Notch Hill","place_name":"Notch Hill","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Nourse Subdivision","place_name":"Nourse Subdivision","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Nuchaquis","place_name":"Nuchaquis","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Nuchatl 1","place_name":"Nuchatl 1","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nuchatl 2","place_name":"Nuchatl 2","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nuchatlitz","place_name":"Nuchatlitz","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nukko Lake","place_name":"Nukko Lake","community":"Fraser-Fort George A","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Nulki","place_name":"Nulki","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Numukamis 1","place_name":"","community":"Numukamis 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nursery","place_name":"Nursery","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nuuautin 2","place_name":"","community":"Nuuautin 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nuumaqimyis","place_name":"Nuumaqimyis","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Oak Bay","place_name":"","community":"Oak Bay","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Oak Hills","place_name":"Oak Hills","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Oakridge","place_name":"Oakridge","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Oasis","place_name":"Oasis","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Oasis Trailer Court","place_name":"Oasis Trailer Court","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ocean Falls","place_name":"Ocean Falls","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ocean Grove","place_name":"Ocean Grove","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Ocean Park","place_name":"Ocean Park","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Oclucje 7","place_name":"","community":"Oclucje 7","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Oetco Flats","place_name":"Oetco Flats","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Ogden","place_name":"Ogden","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Ohamil 1","place_name":"","community":"Ohamil 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Okanagan (Part) 1 - North Okanagan","place_name":"","community":"Okanagan (Part) 1 - North Okanagan","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Okanagan (Part) 1 - Thompson/Okanagan","place_name":"","community":"Okanagan (Part) 1 - Thompson/Okanagan","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Okanagan Centre","place_name":"Okanagan Centre","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Okanagan Falls","place_name":"Okanagan Falls","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan Landing","place_name":"Okanagan Landing","community":"Vernon","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Okanagan Mission","place_name":"Okanagan Mission","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Okanagan Terrace Trailer Park","place_name":"Okanagan Terrace Trailer Park","community":"Vernon","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Okanagan-Similkameen A","place_name":"","community":"Okanagan-Similkameen A","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen B","place_name":"","community":"Okanagan-Similkameen B","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen C","place_name":"","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen D","place_name":"","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen E","place_name":"","community":"Okanagan-Similkameen E","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen F","place_name":"","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Okanagan-Similkameen G","place_name":"","community":"Okanagan-Similkameen G","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen H","place_name":"","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen I","place_name":"","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen, Subd. A","place_name":"Okanagan-Similkameen, Subd. A","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Okanagan-Similkameen, Subd. B","place_name":"Okanagan-Similkameen, Subd. B","community":"Okanagan-Similkameen G","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen, Subd. C","place_name":"Okanagan-Similkameen, Subd. C","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Olalla","place_name":"Olalla","community":"Okanagan-Similkameen G","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Old Bella Bella","place_name":"Old Bella Bella","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Old Fort - Nedoats 11","place_name":"Old Fort","community":"Nedoats 11","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Old Fort - Peace River C","place_name":"Old Fort","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Old Fort Nelson","place_name":"Old Fort Nelson","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Old Hogem","place_name":"Old Hogem","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Old Massett","place_name":"Old Massett","community":"Masset 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Old Remo","place_name":"Old Remo","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Old Town","place_name":"Old Town","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Oliver","place_name":"","community":"Oliver","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Oliver's Landing","place_name":"Oliver's Landing","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Omineca 1","place_name":"","community":"Omineca 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"One Forty One Mile House","place_name":"One Forty One Mile House","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"One Hundred Mile House","place_name":"","community":"One Hundred Mile House","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Oona River","place_name":"Oona River","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Ootischenia","place_name":"Ootischenia","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ootischenia Flats","place_name":"Ootischenia Flats","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ootsa Lake","place_name":"Ootsa Lake","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Openit 27","place_name":"Openit 27","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Opitsat","place_name":"Opitsat","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Opitsat 1","place_name":"","community":"Opitsat 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Oregon Jack Creek 5","place_name":"","community":"Oregon Jack Creek 5","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Orlomah Beach","place_name":"Orlomah Beach","community":"Anmore","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Osborn","place_name":"Osborn","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Osland","place_name":"Osland","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Osoyoos","place_name":"","community":"Osoyoos","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Osoyoos 1","place_name":"","community":"Osoyoos 1","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Osprey Lake","place_name":"Osprey Lake","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Othello","place_name":"Othello","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Ots'oo-a","place_name":"Ots'oo-a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Otter Bay","place_name":"Otter Bay","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Otway","place_name":"Otway","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Ououkinsh","place_name":"Ououkinsh","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Oweekeno","place_name":"Oweekeno","community":"Katit 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Owen Bay","place_name":"Owen Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Owl Creek","place_name":"Owl Creek","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Oxford Heights","place_name":"Oxford Heights","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Oyama","place_name":"Oyama","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Oyster Bay 12","place_name":"","community":"Oyster Bay 12","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Oyster River","place_name":"Oyster River","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Pacheena 1","place_name":"Pacheena 1","community":"Juan de Fuca (Part 2)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Pahas 3","place_name":"Pahas 3","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Paldi","place_name":"Paldi","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Palling","place_name":"Palling","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Palling 1","place_name":"","community":"Palling 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Palling 1A","place_name":"Palling 1A","community":"Palling 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Panorama","place_name":"Panorama","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Panorama Ridge","place_name":"Panorama Ridge","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Panorama Subdivision","place_name":"Panorama Subdivision","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Panorama Trailer Court","place_name":"Panorama Trailer Court","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Papyum 27","place_name":"","community":"Papyum 27","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Papyum 27A","place_name":"Papyum 27A","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Paqulh","place_name":"","community":"Paqulh","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Paradise Point","place_name":"Paradise Point","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Paradise Valley - qathet B","place_name":"Paradise Valley","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Paradise Valley - Squamish","place_name":"Paradise Valley","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Paradise Valley Trailer Court","place_name":"Paradise Valley Trailer Court","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Park Royal","place_name":"Park Royal","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Park Siding","place_name":"Park Siding","community":"Kootenay Boundary A","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Parkdale Gardens","place_name":"Parkdale Gardens","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Parkland","place_name":"Parkland","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Parksville","place_name":"","community":"Parksville","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Parkville Trailer Park","place_name":"Parkville Trailer Park","community":"Parksville","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Parsnip 5","place_name":"Parsnip 5","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Parson","place_name":"Parson","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Pashilqua 2","place_name":"","community":"Pashilqua 2","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Paska Island 3","place_name":"","community":"Paska Island 3","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Pasley Island","place_name":"Pasley Island","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Pass Creek","place_name":"Pass Creek","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Passmore","place_name":"Passmore","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Paterson","place_name":"Paterson","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Paul Lake","place_name":"Paul Lake","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Paul's Basin 2","place_name":"","community":"Paul's Basin 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Paulson","place_name":"Paulson","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pavilion","place_name":"Pavilion","community":"Pavilion 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Pavilion 1","place_name":"","community":"Pavilion 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Pavillon Lake","place_name":"Pavillon Lake","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Paxton Valley","place_name":"Paxton Valley","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Peace River B","place_name":"","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peace River C","place_name":"","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peace River D","place_name":"","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peace River E","place_name":"","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peace River, Subd. B","place_name":"Peace River, Subd. B","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peace River, Subd. C","place_name":"Peace River, Subd. C","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peachland","place_name":"","community":"Peachland","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Pebble Beach","place_name":"Pebble Beach","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Peejay","place_name":"Peejay","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Pemberton","place_name":"","community":"Pemberton","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Pemberton Heights","place_name":"Pemberton Heights","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Pemberton Meadows","place_name":"Pemberton Meadows","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Pemynoos 9","place_name":"","community":"Pemynoos 9","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Pender Island","place_name":"Pender Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Pendleton Bay","place_name":"Pendleton Bay","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Penelakut Island 7","place_name":"","community":"Penelakut Island 7","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Penny","place_name":"Penny","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Penticton","place_name":"Penticton","community":"Penticton","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Penticton 1","place_name":"","community":"Penticton 1","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Pentledge 2","place_name":"","community":"Pentledge 2","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Peq-Paq 22","place_name":"","community":"Peq-Paq 22","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Perow","place_name":"Perow","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Perrys","place_name":"Perrys","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Peters 1","place_name":"","community":"Peters 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Phillips Arm","place_name":"Phillips Arm","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Phoenix","place_name":"Phoenix","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Piers Island","place_name":"Piers Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Pilot Bay","place_name":"Pilot Bay","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pinantan Lake","place_name":"Pinantan Lake","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Pinchi","place_name":"Pinchi","community":"Binche 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Pinchi Lake","place_name":"Pinchi Lake","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Pine Hills Mobile Home Park","place_name":"Pine Hills Mobile Home Park","community":"Peachland","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Pine Springs","place_name":"Pine Springs","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pine Trailer Court","place_name":"Pine Trailer Court","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Pine Valley - Cariboo D","place_name":"Pine Valley","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Pine Valley - Peace River E","place_name":"Pine Valley","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Pinecrest Mobile Home Park","place_name":"Pinecrest Mobile Home Park","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Pinegrove","place_name":"Pinegrove","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Pinegrove Trailer Park","place_name":"Pinegrove Trailer Park","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Pineridge Estates","place_name":"Pineridge Estates","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pineview - Fraser-Fort George D","place_name":"Pineview","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Pineview - Peace River C","place_name":"Pineview","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Pinewood Subdivision","place_name":"Pinewood Subdivision","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Pink Mountain","place_name":"Pink Mountain","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Pioneer Mine","place_name":"Pioneer Mine","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Pioneer Subdivision","place_name":"Pioneer Subdivision","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Pitt Meadows","place_name":"","community":"Pitt Meadows","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Pixie Beach","place_name":"Pixie Beach","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Playmor Junction","place_name":"Playmor Junction","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pleasant Camp","place_name":"Pleasant Camp","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Pleasantside","place_name":"Pleasantside","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Plumper Harbour","place_name":"Plumper Harbour","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Point Holmes","place_name":"Point Holmes","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Poison Creek 17A","place_name":"","community":"Poison Creek 17A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Ponderosa Trailer Park","place_name":"Ponderosa Trailer Park","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pope Landing","place_name":"Pope Landing","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Popkum","place_name":"Popkum","community":"Fraser Valley D","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Popkum 1","place_name":"","community":"Popkum 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Poplar Creek","place_name":"Poplar Creek","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Poplar Grove","place_name":"Poplar Grove","community":"Penticton","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Porcher Island","place_name":"Porcher Island","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Porpoise Bay","place_name":"Porpoise Bay","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Port Alberni","place_name":"","community":"Port Alberni","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Port Albion","place_name":"Port Albion","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Port Alice","place_name":"","community":"Port Alice","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Port Clements","place_name":"","community":"Port Clements","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Port Coquitlam","place_name":"","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Desire","place_name":"Port Desire","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Port Douglas","place_name":"Port Douglas","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Port Edward","place_name":"","community":"Port Edward","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Port Essington","place_name":"Port Essington","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Port Guichon","place_name":"Port Guichon","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Hammond","place_name":"Port Hammond","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Hammond - Haney","place_name":"Port Hammond - Haney","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Hardy","place_name":"","community":"Port Hardy","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Port Kells","place_name":"Port Kells","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Mann","place_name":"Port Mann","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port McNeill","place_name":"","community":"Port McNeill","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Port Mellon","place_name":"Port Mellon","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Port Moody","place_name":"","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Neville","place_name":"Port Neville","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Port Renfrew","place_name":"Port Renfrew","community":"Juan de Fuca (Part 2)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Port Simpson 1","place_name":"Port Simpson 1","community":"Lax Kw'alaams 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Port Washington","place_name":"Port Washington","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Porteau","place_name":"Porteau","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Porter Landing","place_name":"Porter Landing","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Portier Pass 5","place_name":"","community":"Portier Pass 5","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Porto Rico","place_name":"Porto Rico","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pouce Coupe","place_name":"","community":"Pouce Coupe","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Powell River","place_name":"","community":"Powell River","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Powell River A","place_name":"Powell River A","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powell River B","place_name":"Powell River B","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powell River C","place_name":"Powell River C","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powell River D","place_name":"Powell River D","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powell River E","place_name":"Powell River E","community":"qathet E","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powell River, Subd. A","place_name":"Powell River, Subd. A","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powers Addition","place_name":"Powers Addition","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Prairie Valley","place_name":"Prairie Valley","community":"Summerland","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Prairiedale","place_name":"Prairiedale","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Premier","place_name":"Premier","community":"Stewart","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Premier Lake","place_name":"Premier Lake","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Prespatou","place_name":"Prespatou","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Pressy Lake","place_name":"Pressy Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Priest's Valley 6","place_name":"","community":"Priest's Valley 6","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Prince George","place_name":"","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Prince Rupert","place_name":"","community":"Prince Rupert","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 3"},{"location":"Princeton","place_name":"","community":"Princeton","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Pritchard","place_name":"Pritchard","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Pritchard Mobile Subdivision","place_name":"Pritchard Mobile Subdivision","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Procter","place_name":"Procter","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Progress","place_name":"Progress","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Promontory","place_name":"Promontory","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Prophet River - Northern Rockies","place_name":"Prophet River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Prophet River - Prophet River 4","place_name":"Prophet River","community":"Prophet River 4","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"N/A"},{"location":"Prophet River 4","place_name":"","community":"Prophet River 4","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"N/A"},{"location":"Prospect Lake","place_name":"Prospect Lake","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Puckatholetchin 11","place_name":"","community":"Puckatholetchin 11","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Punchaw","place_name":"Punchaw","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Puntledge","place_name":"Puntledge","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Puntzi Lake 2","place_name":"","community":"Puntzi Lake 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Purden Lake","place_name":"Purden Lake","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Q'alatkú7em","place_name":"","community":"Q'alatkú7em","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"qathet A","place_name":"","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"qathet B","place_name":"","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"qathet C","place_name":"","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"qathet D","place_name":"","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"qathet E","place_name":"","community":"qathet E","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Quaaout 1","place_name":"","community":"Quaaout 1","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Quadra Loop","place_name":"Quadra Loop","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Quaee 7","place_name":"","community":"Quaee 7","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Qualicum","place_name":"","community":"Qualicum","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Qualicum Bay","place_name":"Qualicum Bay","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Qualicum Beach","place_name":"","community":"Qualicum Beach","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Quamichan","place_name":"Quamichan","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Quathiaski Cove","place_name":"Quathiaski Cove","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Quatsino","place_name":"Quatsino","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Quatsino Subdivision 18","place_name":"","community":"Quatsino Subdivision 18","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Quattishe 1","place_name":"Quattishe 1","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Queen Charlotte","place_name":"","community":"Queen Charlotte","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Queens Bay","place_name":"Queens Bay","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Queens Cove","place_name":"Queens Cove","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Queens Park","place_name":"Queens Park","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Queensborough","place_name":"Queensborough","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Quesnel","place_name":"","community":"Quesnel","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Quesnel 1","place_name":"","community":"Quesnel 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Quesnel Canyon","place_name":"Quesnel Canyon","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Quesnel Forks","place_name":"Quesnel Forks","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Quesnel View","place_name":"Quesnel View","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Quick","place_name":"Quick","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Quilchena","place_name":"Quilchena","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Quin-e-ex","place_name":"Quin-e-ex","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Quinsam","place_name":"Quinsam","community":"Campbell River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Quinsam 12","place_name":"","community":"Quinsam 12","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Race Point","place_name":"Race Point","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Radium Hot Springs","place_name":"","community":"Radium Hot Springs","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Raft River","place_name":"Raft River","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Rail Lake","place_name":"Rail Lake","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Rainbow Trailer Court","place_name":"Rainbow Trailer Court","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Rainy Hollow","place_name":"Rainy Hollow","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Ranch Park","place_name":"Ranch Park","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ranch Park Trailer Park","place_name":"Ranch Park Trailer Park","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Ranchero","place_name":"Ranchero","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Raspberry","place_name":"Raspberry","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Rayleigh","place_name":"Rayleigh","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Read Island","place_name":"Read Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Red Bluff","place_name":"Red Bluff","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Red Mountain","place_name":"Red Mountain","community":"Rossland","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Red Pass","place_name":"Red Pass","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Red Rock","place_name":"Red Rock","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Red Rose","place_name":"Red Rose","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Redroofs","place_name":"Redroofs","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Redstone","place_name":"Redstone","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Redstone Flat 1","place_name":"","community":"Redstone Flat 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Refuge Cove","place_name":"Refuge Cove","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Refuge Cove 6","place_name":"","community":"Refuge Cove 6","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Reid Lake","place_name":"Reid Lake","community":"Fraser-Fort George A","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Remac","place_name":"Remac","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Remo","place_name":"Remo","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Renata","place_name":"Renata","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Rendez-Vous Island","place_name":"Rendez-Vous Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Renfrew-Collingwood","place_name":"Renfrew-Collingwood","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Rennie Subdivision","place_name":"Rennie Subdivision","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Retallack","place_name":"Retallack","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Revelstoke","place_name":"","community":"Revelstoke","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Rhone","place_name":"Rhone","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Rich Bar","place_name":"Rich Bar","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Richmond","place_name":"","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ridgedale","place_name":"Ridgedale","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Riley Park","place_name":"Riley Park","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Riondel","place_name":"Riondel","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Riske Creek","place_name":"Riske Creek","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Riva Ridge Trailer Park","place_name":"Riva Ridge Trailer Park","community":"Penticton 1","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"River Bend Trailer Court","place_name":"River Bend Trailer Court","community":"Revelstoke","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"River Jordan","place_name":"River Jordan","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"River Springs","place_name":"River Springs","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Rivers Inlet","place_name":"Rivers Inlet","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Rivershore","place_name":"Rivershore","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Riverside Trailer Court","place_name":"Riverside Trailer Court","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Rivervale","place_name":"Rivervale","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Roberts Creek","place_name":"Roberts Creek","community":"Sunshine Coast D","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Robson","place_name":"Robson","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Robson West","place_name":"Robson West","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Roche Lake Resort","place_name":"Roche Lake Resort","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Rock Bay","place_name":"Rock Bay","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Rock Creek","place_name":"Rock Creek","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Rockyview","place_name":"Rockyview","community":"Cranbrook","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Roe Lake","place_name":"Roe Lake","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Rogers Pass","place_name":"Rogers Pass","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Rolla","place_name":"Rolla","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Rolling Hills Park","place_name":"Rolling Hills Park","community":"Vernon","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Roosville","place_name":"Roosville","community":"Tobacco Plains 2","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Rose Harbour","place_name":"Rose Harbour","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Rose Lake","place_name":"Rose Lake","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Rose Prairie","place_name":"Rose Prairie","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Rosebery","place_name":"Rosebery","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Rosedale","place_name":"Rosedale","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Rosen Lake Trailer Court","place_name":"Rosen Lake Trailer Court","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ross Spur","place_name":"Ross Spur","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Rossland","place_name":"","community":"Rossland","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Rosswood","place_name":"Rosswood","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Rough Bay","place_name":"Rough Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Round Lake","place_name":"Round Lake","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Round Prairie","place_name":"Round Prairie","community":"Elkford","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Roy","place_name":"Roy","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Royal Oak","place_name":"Royal Oak","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Royston","place_name":"Royston","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Ruault Road Subdivision","place_name":"Ruault Road Subdivision","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ruby Creek","place_name":"Ruby Creek","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Ruby Creek 2","place_name":"","community":"Ruby Creek 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Rumble Beach","place_name":"Rumble Beach","community":"Port Alice","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Rupert","place_name":"Rupert","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Ruskin","place_name":"Ruskin","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Rutland","place_name":"Rutland","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Ryder Lake","place_name":"Ryder Lake","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Rykerts","place_name":"Rykerts","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ryter's Trailer Court","place_name":"Ryter's Trailer Court","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"S1/2 Tsimpsean 2","place_name":"","community":"S1/2 Tsimpsean 2","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Saaiyouck 6","place_name":"Saaiyouck 6","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Saanich","place_name":"","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Saanichton","place_name":"Saanichton","community":"Central Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Sachawil","place_name":"Sachawil","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Sachsa","place_name":"Sachsa","community":"Sachsa 4","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Sachsa 4","place_name":"","community":"Sachsa 4","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Sachteen","place_name":"","community":"Sachteen","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Sachteen 2","place_name":"Sachteen 2","community":"Sachteen","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Sachteen 2A","place_name":"Sachteen 2A","community":"Sachteen","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Saddle Rock 9","place_name":"","community":"Saddle Rock 9","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Sahali","place_name":"Sahali","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Sahara Heights","place_name":"Sahara Heights","community":"Port Alberni","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Sahhaltkum 4","place_name":"","community":"Sahhaltkum 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Sahtlam","place_name":"Sahtlam","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Salmo","place_name":"","community":"Salmo","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Salmon Arm","place_name":"","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Salmon Beach","place_name":"Salmon Beach","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Salmon River 1","place_name":"","community":"Salmon River 1","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Salmon River Meadow 7","place_name":"","community":"Salmon River Meadow 7","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Salmon Valley","place_name":"Salmon Valley","community":"Fraser-Fort George A","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Saloon","place_name":"Saloon","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Saltair","place_name":"Saltair","community":"Cowichan Valley G","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Saltery Bay","place_name":"Saltery Bay","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Saltspring Island","place_name":"","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Samahquam 1","place_name":"Samahquam 1","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"San Josef","place_name":"San Josef","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Sanca","place_name":"Sanca","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sanderson Site","place_name":"Sanderson Site","community":"Quesnel","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Sandon","place_name":"Sandon","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sandspit","place_name":"Sandspit","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Sandwick","place_name":"Sandwick","community":"Courtenay","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Sandy Beach Resort","place_name":"Sandy Beach Resort","community":"Priest's Valley 6","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Sandy Cove","place_name":"Sandy Cove","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sandy Harry 4","place_name":"","community":"Sandy Harry 4","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Sandy Point","place_name":"Sandy Point","community":"Switsemalph","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Sandyville","place_name":"Sandyville","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Sapperton","place_name":"Sapperton","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Saratoga Beach","place_name":"Saratoga Beach","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Sardis","place_name":"Sardis","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Sarita","place_name":"Sarita","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Saseenos","place_name":"Saseenos","community":"Sooke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Saturna","place_name":"Saturna","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Saturna Island","place_name":"Saturna Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Savarie Subdivision","place_name":"Savarie Subdivision","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Savona","place_name":"Savona","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sayward","place_name":"","community":"Sayward","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Schaltuuch 27","place_name":"Schaltuuch 27","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Schelowat 1","place_name":"","community":"Schelowat 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Schemenauer Subdivision","place_name":"Schemenauer Subdivision","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Schkam 2","place_name":"","community":"Schkam 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Scotch Creek","place_name":"Scotch Creek","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Scotch Creek 4","place_name":"","community":"Scotch Creek 4","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Scotia Bay","place_name":"Scotia Bay","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Scott Cove","place_name":"Scott Cove","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Scotties Trailer Park","place_name":"Scotties Trailer Park","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Scotty Creek","place_name":"Scotty Creek","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Scowlitz 1","place_name":"","community":"Scowlitz 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Seabird Island","place_name":"","community":"Seabird Island","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Seabird Mobile Home Park","place_name":"Seabird Mobile Home Park","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Seafair","place_name":"Seafair","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Seaford","place_name":"Seaford","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Seah 5","place_name":"","community":"Seah 5","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Seaichem 16","place_name":"","community":"Seaichem 16","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Seal Bay Subdivision","place_name":"Seal Bay Subdivision","community":"Courtenay","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Seaside Park","place_name":"Seaside Park","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Seaspunkut 4","place_name":"","community":"Seaspunkut 4","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Sechelt","place_name":"","community":"Sechelt","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Sechelt (Part) - qathet","place_name":"","community":"Sechelt (Part) - qathet","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Sechelt (Part) - Sunshine Coast","place_name":"","community":"Sechelt (Part) - Sunshine Coast","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Secret Cove","place_name":"Secret Cove","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Selma Park","place_name":"Selma Park","community":"Sechelt","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Semiahmoo","place_name":"","community":"Semiahmoo","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Sentinel Hill","place_name":"Sentinel Hill","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Seton Lake 5","place_name":"","community":"Seton Lake 5","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Seton Lake 5A","place_name":"Seton Lake 5A","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Seton Portage","place_name":"Seton Portage","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Seven Mile Corner","place_name":"Seven Mile Corner","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sevenoaks","place_name":"Sevenoaks","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Seventy Mile House","place_name":"Seventy Mile House","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Sewall","place_name":"Sewall","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Sewell Inlet","place_name":"Sewell Inlet","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Seymour Arm","place_name":"Seymour Arm","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Seymour Creek 2","place_name":"","community":"Seymour Creek 2","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Seymour Heights","place_name":"Seymour Heights","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Seymour Inlet","place_name":"Seymour Inlet","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Seymour Lake","place_name":"Seymour Lake","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Seymour Landing","place_name":"Seymour Landing","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Seymour Meadows 19","place_name":"Seymour Meadows 19","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Sha:wiis","place_name":"Sha:wiis","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Shackan 11","place_name":"","community":"Shackan 11","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Shady Valley","place_name":"Shady Valley","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Shaha Estates","place_name":"Shaha Estates","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Shalalth","place_name":"Shalalth","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Shannon Bay","place_name":"Shannon Bay","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Shannon Trailer Park","place_name":"Shannon Trailer Park","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sharpe Lake","place_name":"Sharpe Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Shaughnessy","place_name":"Shaughnessy","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Shawl Bay","place_name":"Shawl Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Shawnaire Resort","place_name":"Shawnaire Resort","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shawnigan","place_name":"Shawnigan","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shawnigan Lake","place_name":"Shawnigan Lake","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shawnigan Lake Mobile Home Park","place_name":"Shawnigan Lake Mobile Home Park","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shawniken 4B","place_name":"","community":"Shawniken 4B","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Shearer Dale","place_name":"Shearer Dale","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Shearwater","place_name":"Shearwater","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Shell Beach","place_name":"Shell Beach","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shelley","place_name":"Shelley","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Shelter Bay","place_name":"Shelter Bay","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Shelter Point","place_name":"Shelter Point","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Shepherds Inn","place_name":"Shepherds Inn","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sheraton","place_name":"Sheraton","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Shere","place_name":"Shere","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Sheridan Lake","place_name":"Sheridan Lake","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Sheslay","place_name":"Sheslay","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Shingle Creek","place_name":"Shingle Creek","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Shingle Point 4","place_name":"","community":"Shingle Point 4","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Shirley","place_name":"Shirley","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shitlthmaq-is","place_name":"Shitlthmaq-is","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Sho-ook 5","place_name":"Sho-ook 5","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Shoreacres","place_name":"Shoreacres","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Shoreholme","place_name":"Shoreholme","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Shorewood San Parreil","place_name":"Shorewood San Parreil","community":"Parksville","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shulus","place_name":"Shulus","community":"Nicola Mameet 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Shushartie","place_name":"Shushartie","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Shuswap","place_name":"","community":"Shuswap","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Shuswap - Thompson-Nicola L (Grasslands)","place_name":"Shuswap","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Shuswap Falls","place_name":"Shuswap Falls","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Shuswap Lake Estates","place_name":"Shuswap Lake Estates","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Shutty Bench","place_name":"Shutty Bench","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sicamous","place_name":"","community":"Sicamous","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sidley","place_name":"Sidley","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Sidney","place_name":"","community":"Sidney","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Sikanni Chief","place_name":"Sikanni Chief","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sik-e-dakh 2","place_name":"","community":"Sik-e-dakh 2","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Silica","place_name":"Silica","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Silver Creek - Columbia-Shuswap D","place_name":"Silver Creek","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Silver Creek - Hope","place_name":"Silver Creek","community":"Hope","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Silver River","place_name":"Silver River","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Silver Star","place_name":"Silver Star","community":"North Okanagan C","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Silver Star Trailer Park","place_name":"Silver Star Trailer Park","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Silver Valley","place_name":"Silver Valley","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Silverhill","place_name":"Silverhill","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Silverton","place_name":"","community":"Silverton","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Simpson Ranch","place_name":"Simpson Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sinclair Mills","place_name":"Sinclair Mills","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Sinkut River","place_name":"Sinkut River","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Sirdar","place_name":"Sirdar","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Siska Flat","place_name":"","community":"Siska Flat","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Siska Flat 3","place_name":"Siska Flat 3","community":"Siska Flat","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Siska Flat 5A","place_name":"Siska Flat 5A","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Siska Flat 5B","place_name":"Siska Flat 5B","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Siska Flat 8","place_name":"Siska Flat 8","community":"Siska Flat","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Six Mile Point","place_name":"Six Mile Point","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Six Mile Ranch","place_name":"Six Mile Ranch","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Skawahlook 1","place_name":"","community":"Skawahlook 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skedans","place_name":"Skedans","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeena Crossing","place_name":"Skeena Crossing","community":"Gitsegukla 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Skeena-Queen Charlotte A","place_name":"Skeena-Queen Charlotte A","community":"North Coast A","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeena-Queen Charlotte C","place_name":"Skeena-Queen Charlotte C","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Skeena-Queen Charlotte D","place_name":"Skeena-Queen Charlotte D","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeena-Queen Charlotte E","place_name":"Skeena-Queen Charlotte E","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeena-Queen Charlotte F","place_name":"Skeena-Queen Charlotte F","community":"Queen Charlotte","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeena-Queen Charlotte, Subd. A","place_name":"Skeena-Queen Charlotte, Subd. A","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Skeena-Queen Charlotte, Subd. B","place_name":"Skeena-Queen Charlotte, Subd. B","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeetchestn","place_name":"","community":"Skeetchestn","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Skidegate","place_name":"Skidegate","community":"Skidegate 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Skidegate 1","place_name":"","community":"Skidegate 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Skidegate Landing","place_name":"Skidegate Landing","community":"Queen Charlotte","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skins Lake 16A","place_name":"","community":"Skins Lake 16A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Skins Lake 16B","place_name":"","community":"Skins Lake 16B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Skooks Landing","place_name":"Skooks Landing","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Skookumchuck - East Kootenay E","place_name":"Skookumchuck","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Skookumchuck - Skookumchuck 4","place_name":"Skookumchuck","community":"Skookumchuck 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skookumchuck 4","place_name":"","community":"Skookumchuck 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skowkale","place_name":"","community":"Skowkale","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skowkale 10","place_name":"Skowkale 10","community":"Skowkale","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skowkale 11","place_name":"Skowkale 11","community":"Skowkale","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skuppah 2A","place_name":"","community":"Skuppah 2A","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Skuppah 4","place_name":"","community":"Skuppah 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Skwah 4","place_name":"","community":"Skwah 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skwahla 2","place_name":"Skwahla 2","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Skwali 3","place_name":"","community":"Skwali 3","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skway 5","place_name":"","community":"Skway 5","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skwayaynope 26","place_name":"","community":"Skwayaynope 26","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Skweahm 10","place_name":"","community":"Skweahm 10","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Slaterville","place_name":"Slaterville","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Sleepy Hollow Road Trailer Park","place_name":"Sleepy Hollow Road Trailer Park","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Slesse Park","place_name":"Slesse Park","community":"Fraser Valley E","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sliammon","place_name":"Sliammon","community":"Sliammon 1","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Sliammon 1","place_name":"","community":"Sliammon 1","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Slocan","place_name":"","community":"Slocan","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Slocan Park","place_name":"Slocan Park","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Slosh 1","place_name":"","community":"Slosh 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Slosh 1A","place_name":"Slosh 1A","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Smith River","place_name":"Smith River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Smithers","place_name":"","community":"Smithers","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Smithers - Telkwa","place_name":"Smithers","community":"Telkwa","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Smithers Landing","place_name":"Smithers Landing","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Snake 5","place_name":"Snake 5","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Snake River","place_name":"Snake River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Snow Peak Trailer Court","place_name":"Snow Peak Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Snug Cove","place_name":"Snug Cove","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Soames Point","place_name":"Soames Point","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Soda Creek","place_name":"Soda Creek","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Soda Creek 1","place_name":"","community":"Soda Creek 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Sointula","place_name":"Sointula","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Solly","place_name":"Solly","community":"Alberni-Clayoquot E","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Solsqua","place_name":"Solsqua","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Somenos","place_name":"Somenos","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Sonora Island","place_name":"Sonora Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Sooke","place_name":"","community":"Sooke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Soowahlie 14","place_name":"","community":"Soowahlie 14","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Sorrento","place_name":"Sorrento","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"South Bentinck","place_name":"South Bentinck","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"South Cambie","place_name":"South Cambie","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"South Canoe","place_name":"South Canoe","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"South Dawson","place_name":"South Dawson","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"South Fort George","place_name":"South Fort George","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"South Hazelton","place_name":"South Hazelton","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"South Lakeside","place_name":"South Lakeside","community":"Williams Lake","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 3"},{"location":"South Lakeside (Williams Lake)","place_name":"South Lakeside (Williams Lake)","community":"Williams Lake","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 3"},{"location":"South Pender Island","place_name":"South Pender Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"South Poplar","place_name":"South Poplar","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"South Saanich 1","place_name":"","community":"South Saanich 1","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"South Shalalth","place_name":"South Shalalth","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"South Slocan","place_name":"South Slocan","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"South Slope","place_name":"South Slope","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"South Sumas","place_name":"South Sumas","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"South Surrey","place_name":"South Surrey","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"South Taylor","place_name":"South Taylor","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"South Thormanby Island","place_name":"South Thormanby Island","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"South Wellington","place_name":"South Wellington","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Southarm","place_name":"Southarm","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Southbank","place_name":"Southbank","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Southern Gulf Islands","place_name":"","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Sowchea 3","place_name":"","community":"Sowchea 3","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Soyandostar 2","place_name":"Soyandostar 2","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Spallumcheen","place_name":"","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Sparwood","place_name":"","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Spatsum","place_name":"Spatsum","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Spatsum 11","place_name":"Spatsum 11","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Spectacle Lake Mobile Home Park","place_name":"Spectacle Lake Mobile Home Park","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Spences Bridge","place_name":"","community":"Spences Bridge","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Spences Bridge 4","place_name":"Spences Bridge 4","community":"Spences Bridge","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Spences Bridge 4C","place_name":"Spences Bridge 4C","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Speyum 3","place_name":"","community":"Speyum 3","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Spillimacheen","place_name":"Spillimacheen","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Spintlum Flat 3","place_name":"","community":"Spintlum Flat 3","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Springhouse","place_name":"Springhouse","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Sproat Lake","place_name":"Sproat Lake","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Sproat Trailer Park","place_name":"Sproat Trailer Park","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Sproatt","place_name":"Sproatt","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sproule Creek","place_name":"Sproule Creek","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Spur Valley Subdivision","place_name":"Spur Valley Subdivision","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Spuzzum","place_name":"Spuzzum","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Spuzzum 1","place_name":"","community":"Spuzzum 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Squaam 2","place_name":"","community":"Squaam 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Squaam Bay","place_name":"Squaam Bay","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Squamish","place_name":"","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Squamish-Lillooet A","place_name":"","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Squamish-Lillooet B","place_name":"","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Squamish-Lillooet C","place_name":"","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Squamish-Lillooet D","place_name":"","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Squamish-Lillooet, Subd. A","place_name":"Squamish-Lillooet, Subd. A","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Squamish-Lillooet, Subd. B","place_name":"Squamish-Lillooet, Subd. B","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Squaw-Hay-One 11","place_name":"","community":"Squaw-Hay-One 11","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Squawkum Creek 3","place_name":"","community":"Squawkum Creek 3","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Squeah","place_name":"Squeah","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Squiaala","place_name":"","community":"Squiaala","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Squiaala 7","place_name":"Squiaala 7","community":"Squiaala","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Squiaala 8","place_name":"Squiaala 8","community":"Squiaala","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Squilax","place_name":"Squilax","community":"Quaaout 1","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Squinas 2","place_name":"","community":"Squinas 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Squirrel Cove","place_name":"Squirrel Cove","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Squirrel Cove 8","place_name":"","community":"Squirrel Cove 8","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"St. Andrews","place_name":"St. Andrews","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"St. Eugene Mission","place_name":"St. Eugene Mission","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"St. Ives","place_name":"St. Ives","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"St. Joseph Mission","place_name":"St. Joseph Mission","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"St. Mary Lake","place_name":"St. Mary Lake","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"St. Mary's","place_name":"","community":"St. Mary's","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"St. Vincent Bay","place_name":"St. Vincent Bay","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Staiyahanny 8","place_name":"Staiyahanny 8","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Stanley","place_name":"Stanley","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Star Subdivision","place_name":"Star Subdivision","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Stave Falls","place_name":"Stave Falls","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Stawamus 24","place_name":"","community":"Stawamus 24","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Steamboat","place_name":"Steamboat","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Steelhead","place_name":"Steelhead","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Stellako","place_name":"Stellako","community":"Stellaquo (Stella) 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Stellaquo (Stella) 1","place_name":"","community":"Stellaquo (Stella) 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Stepping Stones Estates","place_name":"Stepping Stones Estates","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Stequmwhulpa 5","place_name":"","community":"Stequmwhulpa 5","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Steveston","place_name":"Steveston","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Stewardson Inlet","place_name":"Stewardson Inlet","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Stewart","place_name":"","community":"Stewart","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Stikine","place_name":"Stikine","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Stikine Region","place_name":"","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Stikine, Subd. A","place_name":"Stikine, Subd. A","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Stillwater - qathet C","place_name":"Stillwater","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Stillwater - Thompson-Nicola A (Wells Gray Country)","place_name":"Stillwater","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Stone 1","place_name":"","community":"Stone 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Stoner","place_name":"Stoner","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Stones Bay","place_name":"Stones Bay","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Stony Creek 1","place_name":"","community":"Stony Creek 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Stories Beach","place_name":"Stories Beach","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Strachan Creek","place_name":"Strachan Creek","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Straiton","place_name":"Straiton","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Strathcona","place_name":"Strathcona","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Strathcona A","place_name":"","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Strathcona B","place_name":"","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Strathcona C","place_name":"","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Strathcona D (Oyster Bay - Buttle Lake)","place_name":"","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Strathnaver","place_name":"Strathnaver","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Strawberry Hill","place_name":"Strawberry Hill","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Strawberry Vale","place_name":"Strawberry Vale","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Streatham","place_name":"Streatham","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Stryen 9","place_name":"","community":"Stryen 9","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Stuart Bay 6","place_name":"Stuart Bay 6","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Stuart Island","place_name":"Stuart Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Stuart River","place_name":"Stuart River","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Stuie","place_name":"Stuie","community":"Central Coast C","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Stullawheets 8","place_name":"","community":"Stullawheets 8","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Stump Lake","place_name":"Stump Lake","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sturdies Bay","place_name":"Sturdies Bay","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Sugarcane","place_name":"Sugarcane","community":"Williams Lake 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Sullivan","place_name":"Sullivan","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sullivan Bay","place_name":"Sullivan Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Sullivan Heights","place_name":"Sullivan Heights","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Summerland","place_name":"","community":"Summerland","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Summit Lake - Central Kootenay H","place_name":"Summit Lake","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Summit Lake - Fraser-Fort George G","place_name":"Summit Lake","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Summit Lake - Northern Rockies","place_name":"Summit Lake","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Sun Peaks","place_name":"Sun Peaks","community":"Sun Peaks Mountain","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sun Peaks Mountain","place_name":"","community":"Sun Peaks Mountain","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sun Valley","place_name":"Sun Valley","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunbury","place_name":"Sunbury","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Suncrest","place_name":"Suncrest","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sundance Subdivision - Columbia-Shuswap E","place_name":"Sundance Subdivision","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sundance Subdivision - Peace River E","place_name":"Sundance Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sundayman's Meadow 3","place_name":"","community":"Sundayman's Meadow 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Sunningdale","place_name":"Sunningdale","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Sunny Dale","place_name":"Sunny Dale","community":"Courtenay","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Sunnybrae","place_name":"Sunnybrae","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sunnyside - Surrey","place_name":"Sunnyside","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunnyside - Tache 1","place_name":"Sunnyside","community":"Tache 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Sunnyside Trailer Court","place_name":"Sunnyside Trailer Court","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sunnyview Trailer Court","place_name":"Sunnyview Trailer Court","community":"Thompson-Nicola N (Beautiful Nicola Valley - South)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sunrise Valley","place_name":"Sunrise Valley","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sunset","place_name":"Sunset","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunset Beach - Lantzville","place_name":"Sunset Beach","community":"Lantzville","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Sunset Beach - West Vancouver","place_name":"Sunset Beach","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunset Prairie","place_name":"Sunset Prairie","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sunset Trailer Park","place_name":"Sunset Trailer Park","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Sunshine","place_name":"Sunshine","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunshine Bay","place_name":"Sunshine Bay","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sunshine Coast A","place_name":"","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Sunshine Coast B","place_name":"","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Sunshine Coast D","place_name":"","community":"Sunshine Coast D","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sunshine Coast E","place_name":"","community":"Sunshine Coast E","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sunshine Coast F","place_name":"","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sunshine Coast Trailer Court","place_name":"Sunshine Coast Trailer Court","community":"Sunshine Coast E","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sunshine Coast, Subd. A","place_name":"Sunshine Coast, Subd. A","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Sunshine Hills","place_name":"Sunshine Hills","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunshine Valley - Clearwater","place_name":"Sunshine Valley","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sunshine Valley - Fraser Valley B","place_name":"Sunshine Valley","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Suquash","place_name":"Suquash","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Surge Narrows","place_name":"Surge Narrows","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Surprise","place_name":"Surprise","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Surrey","place_name":"","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Surrey Centre","place_name":"Surrey Centre","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Swahliseah 14","place_name":"Swahliseah 14","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Swan Lake 3","place_name":"Swan Lake 3","community":"Swan Lake 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Swan Lake 3","place_name":"","community":"Swan Lake 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Swartz Bay","place_name":"Swartz Bay","community":"North Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Sweetwater","place_name":"Sweetwater","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Switsemalph","place_name":"","community":"Switsemalph","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Switsemalph 3","place_name":"","community":"Switsemalph 3","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Switsemalph 6","place_name":"Switsemalph 6","community":"Switsemalph","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Switsemalph 7","place_name":"Switsemalph 7","community":"Switsemalph","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Ta Ta Creek","place_name":"Ta Ta Creek","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ta:shiis","place_name":"Ta:shiis","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Tabor Lake","place_name":"Tabor Lake","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Tache 1","place_name":"","community":"Tache 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Tachie","place_name":"Tachie","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tacla Lake (Ferry Landing) 9","place_name":"","community":"Tacla Lake (Ferry Landing) 9","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Tadanac","place_name":"Tadanac","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Tadinlay 15","place_name":"","community":"Tadinlay 15","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Taghum","place_name":"Taghum","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Taghum Hill","place_name":"Taghum Hill","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Tahltan","place_name":"Tahltan","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Tahltan 1","place_name":"","community":"Tahltan 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Tahsis","place_name":"","community":"Tahsis","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Takla Landing","place_name":"Takla Landing","community":"North Tacla Lake","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Taku","place_name":"Taku","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Takysie Lake","place_name":"Takysie Lake","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tall Timbers Trailer Park","place_name":"Tall Timbers Trailer Park","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Tallheo","place_name":"Tallheo","community":"Central Coast E","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Tamarisk","place_name":"Tamarisk","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Tanakut 4","place_name":"","community":"Tanakut 4","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Tantalus Acres","place_name":"Tantalus Acres","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Tanu","place_name":"Tanu","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Tappen","place_name":"Tappen","community":"North Bay 5","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tarrys","place_name":"Tarrys","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Tasu","place_name":"Tasu","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Tatalrose","place_name":"Tatalrose","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tatelkus Lake 28","place_name":"Tatelkus Lake 28","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tatla Lake","place_name":"Tatla Lake","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tatla West 11","place_name":"","community":"Tatla West 11","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Tatla't East 2","place_name":"","community":"Tatla't East 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Tatlayoko Lake","place_name":"Tatlayoko Lake","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tatlow","place_name":"Tatlow","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tatogga","place_name":"Tatogga","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Tatpo-oose 10","place_name":"Tatpo-oose 10","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Tatton","place_name":"Tatton","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Taylor","place_name":"","community":"Taylor","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Tchesinkut Lake","place_name":"Tchesinkut Lake","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Teakerne Arm","place_name":"Teakerne Arm","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Telachick","place_name":"Telachick","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Telegraph Cove","place_name":"Telegraph Cove","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Telegraph Creek","place_name":"","community":"Telegraph Creek","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Telegraph Creek 6","place_name":"Telegraph Creek 6","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Telegraph Creek 6A","place_name":"Telegraph Creek 6A","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Telkwa","place_name":"","community":"Telkwa","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Telkwa - Bulkley-Nechako A","place_name":"Telkwa","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Telkwa Trailer Park","place_name":"Telkwa Trailer Park","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Ten Mile Lake","place_name":"Ten Mile Lake","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Terrace","place_name":"","community":"Terrace","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 3"},{"location":"Tetachuk","place_name":"Tetachuk","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tête Jaune Cache","place_name":"Tête Jaune Cache","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Theik 2","place_name":"","community":"Theik 2","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Theodosia Arm","place_name":"Theodosia Arm","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Thetis Island","place_name":"Thetis Island","community":"Cowichan Valley G","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Thomas Point 5","place_name":"","community":"Thomas Point 5","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Thomas Point 5A","place_name":"","community":"Thomas Point 5A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Thomas Squinas Ranch 2A","place_name":"","community":"Thomas Squinas Ranch 2A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Thompson","place_name":"Thompson","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Thompson River Estates","place_name":"Thompson River Estates","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson Sound","place_name":"Thompson Sound","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Thompson-Nicola A (Wells Gray Country)","place_name":"","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola B (Thompson Headwaters)","place_name":"","community":"Thompson-Nicola B (Thompson Headwaters)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola E (Bonaparte Plateau)","place_name":"","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola I (Blue Sky Country)","place_name":"","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola J (Copper Desert Country)","place_name":"","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola L","place_name":"Thompson-Nicola L","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola L (Grasslands)","place_name":"","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola M","place_name":"Thompson-Nicola M","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola M (Beautiful Nicola Valley - North)","place_name":"","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola N","place_name":"Thompson-Nicola N","community":"Thompson-Nicola N (Beautiful Nicola Valley - South)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola N (Beautiful Nicola Valley - South)","place_name":"","community":"Thompson-Nicola N (Beautiful Nicola Valley - South)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola O (Lower North Thompson)","place_name":"","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola P (Rivers and the Peaks)","place_name":"","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola, Subd. A","place_name":"Thompson-Nicola, Subd. A","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola, Subd. B","place_name":"Thompson-Nicola, Subd. B","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola, Subd. C","place_name":"Thompson-Nicola, Subd. C","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola, Subd. D","place_name":"Thompson-Nicola, Subd. D","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola, Subd. E","place_name":"Thompson-Nicola, Subd. E","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thornhill","place_name":"Thornhill","community":"Kitimat-Stikine E","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Three Forks","place_name":"Three Forks","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Thrums","place_name":"Thrums","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Thunder Bay","place_name":"Thunder Bay","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Thurlow","place_name":"Thurlow","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Thurston Harbour","place_name":"Thurston Harbour","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Thwaytes","place_name":"Thwaytes","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Tie Lake","place_name":"Tie Lake","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Tiili Landing","place_name":"Tiili Landing","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Tillicum","place_name":"Tillicum","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Timberland Trailer Park","place_name":"Timberland Trailer Park","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Tin Wis 11","place_name":"","community":"Tin Wis 11","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tintagel","place_name":"Tintagel","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tipella","place_name":"Tipella","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Tipella 7","place_name":"","community":"Tipella 7","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Tlaa Gaa Aawtlaas 28","place_name":"","community":"Tlaa Gaa Aawtlaas 28","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Tl'aaniiwa'a","place_name":"Tl'aaniiwa'a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tlakmaqis","place_name":"Tlakmaqis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tlell","place_name":"Tlell","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Tl'esqox","place_name":"Tl'esqox","community":"Toosey 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Tl'etinqox","place_name":"Tl'etinqox","community":"Anahim's Flat 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Tl'isnachis","place_name":"Tl'isnachis","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tl'itsnit","place_name":"Tl'itsnit","community":"Numukamis 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tloohat-a","place_name":"Tloohat-a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Toad River","place_name":"Toad River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Tobacco Plains 2","place_name":"","community":"Tobacco Plains 2","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Tobiano","place_name":"Tobiano","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Toby Creek","place_name":"Toby Creek","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Toby's Meadow 4","place_name":"Toby's Meadow 4","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tofino","place_name":"","community":"Tofino","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tomslake","place_name":"Tomslake","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Toosey 1","place_name":"","community":"Toosey 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Topley","place_name":"Topley","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Topley Landing","place_name":"Topley Landing","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tork 7","place_name":"","community":"Tork 7","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tow Hill Road","place_name":"Tow Hill Road","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Towdystan","place_name":"Towdystan","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Towdystan Lake 3","place_name":"","community":"Towdystan Lake 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Tower Lake","place_name":"Tower Lake","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Towinock 2","place_name":"","community":"Towinock 2","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Traders Cove","place_name":"Traders Cove","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Trail","place_name":"","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Tranquille","place_name":"Tranquille","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Trépanier","place_name":"Trépanier","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Trevor Channel","place_name":"Trevor Channel","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Trinity Valley","place_name":"Trinity Valley","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Triple E Trailer Park","place_name":"Triple E Trailer Park","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Trout Creek","place_name":"Trout Creek","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Trout Lake","place_name":"Trout Lake","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Trout Lake Alec 16","place_name":"","community":"Trout Lake Alec 16","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Trutch","place_name":"Trutch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Tsa Xana 18","place_name":"","community":"Tsa Xana 18","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tsahaheh 1","place_name":"","community":"Tsahaheh 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tsaukan 12","place_name":"","community":"Tsaukan 12","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tsawwassen","place_name":"","community":"Tsawwassen","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Tsawwassen - Delta","place_name":"Tsawwassen","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Tsawwassen Beach","place_name":"Tsawwassen Beach","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ts'axq'oo-is","place_name":"Ts'axq'oo-is","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tsay Cho 4","place_name":"Tsay Cho 4","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tsay Keh Dene","place_name":"Tsay Keh Dene","community":"Finlay River 6","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Tseatah 2","place_name":"","community":"Tseatah 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Tsideldel","place_name":"Tsideldel","community":"Redstone Flat 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Ts'iispoo-a","place_name":"Ts'iispoo-a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tsimpsean 2 North Part","place_name":"Tsimpsean 2 North Part","community":"Lax Kw'alaams 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Tsinstikeptum 9","place_name":"Tsinstikeptum 9","community":"Tsinstikeptum 9","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tsinstikeptum 10","place_name":"","community":"Tsinstikeptum 10","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tsinstikeptum 9","place_name":"","community":"Tsinstikeptum 9","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tsolum","place_name":"Tsolum","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Tsolum River","place_name":"Tsolum River","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"T'Sou-ke","place_name":"","community":"T'Sou-ke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"T'Sou-ke 1 (Sooke 1)","place_name":"T'Sou-ke 1 (Sooke 1)","community":"T'Sou-ke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"T'Sou-ke 2 (Sooke 2)","place_name":"T'Sou-ke 2 (Sooke 2)","community":"T'Sou-ke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tsulquate 4","place_name":"","community":"Tsulquate 4","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tsunnia Lake 5","place_name":"Tsunnia Lake 5","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tsussie 6","place_name":"","community":"Tsussie 6","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tuckkwiowhum 1","place_name":"","community":"Tuckkwiowhum 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Tulameen","place_name":"Tulameen","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Tulsequah","place_name":"Tulsequah","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tumbler Ridge","place_name":"","community":"Tumbler Ridge","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Tupper","place_name":"Tupper","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Turner Subdivision","place_name":"Turner Subdivision","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Turtle Valley","place_name":"Turtle Valley","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Tuwanek","place_name":"Tuwanek","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Twidwell Bend","place_name":"Twidwell Bend","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Twin Bays","place_name":"Twin Bays","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Twin Creeks","place_name":"Twin Creeks","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Twin Firs Trailer Park","place_name":"Twin Firs Trailer Park","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Twin Islands","place_name":"Twin Islands","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Twin Lakes","place_name":"Twin Lakes","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Twin Sevens Trailer Park","place_name":"Twin Sevens Trailer Park","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Two Mile","place_name":"Two Mile","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Two Mile Hazelton","place_name":"Two Mile Hazelton","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Two Rivers","place_name":"Two Rivers","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Twoyqhalsht 16","place_name":"","community":"Twoyqhalsht 16","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tyax Lake","place_name":"Tyax Lake","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Tyhee Trailer Park","place_name":"Tyhee Trailer Park","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tynehead","place_name":"Tynehead","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Tzart-Lam 5","place_name":"","community":"Tzart-Lam 5","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tzeachten 13","place_name":"","community":"Tzeachten 13","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Tzetzi Lake 11","place_name":"Tzetzi Lake 11","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tzouhalem","place_name":"Tzouhalem","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Ucluelet","place_name":"","community":"Ucluelet","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Ulkatcho","place_name":"Ulkatcho","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ulkatcho 13","place_name":"","community":"Ulkatcho 13","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Ulkatcho 14A","place_name":"","community":"Ulkatcho 14A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Uncha Lake 13A","place_name":"","community":"Uncha Lake 13A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Union Bay","place_name":"Union Bay","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Union Bay 4","place_name":"","community":"Union Bay 4","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"University Endowment Area","place_name":"University Endowment Area","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"University Hill","place_name":"University Hill","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Unnamed 10","place_name":"","community":"Unnamed 10","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Upland Trailer Court","place_name":"Upland Trailer Court","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Upper Bench","place_name":"Upper Bench","community":"Okanagan-Similkameen G","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Upper China Creek","place_name":"Upper China Creek","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Upper Cutbank","place_name":"Upper Cutbank","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Upper Fraser","place_name":"Upper Fraser","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Upper Halfway","place_name":"Upper Halfway","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Upper Hat Creek","place_name":"Upper Hat Creek","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Upper Hat Creek 1","place_name":"","community":"Upper Hat Creek 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Upper Lynn","place_name":"Upper Lynn","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Upper Nepa 6","place_name":"","community":"Upper Nepa 6","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Upper Squamish Valley","place_name":"Upper Squamish Valley","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Upper Sumas 6","place_name":"","community":"Upper Sumas 6","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Upsowis","place_name":"Upsowis","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Usk","place_name":"Usk","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Uuts","place_name":"Uuts","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Valemount","place_name":"","community":"Valemount","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Valhalla","place_name":"Valhalla","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Valhalla Subdivision","place_name":"Valhalla Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Valley Mobile Home","place_name":"Valley Mobile Home","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Valley Road Subdivision","place_name":"Valley Road Subdivision","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Valley View","place_name":"Valley View","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Valleycliffe","place_name":"Valleycliffe","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Valleyview","place_name":"Valleyview","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Vallican","place_name":"Vallican","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Van Anda","place_name":"Van Anda","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Vancouver","place_name":"","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Vanderhoof","place_name":"","community":"Vanderhoof","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Vanway","place_name":"Vanway","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Vaseaux Lake","place_name":"Vaseaux Lake","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Vaucroft Beach","place_name":"Vaucroft Beach","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Vavenby","place_name":"Vavenby","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Vedder Crossing","place_name":"Vedder Crossing","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Vermilion Crossing","place_name":"Vermilion Crossing","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Vernon","place_name":"","community":"Vernon","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Vesuvius","place_name":"Vesuvius","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Victoria","place_name":"","community":"Victoria","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Victoria Lake","place_name":"Victoria Lake","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Victoria-Fraserview","place_name":"Victoria-Fraserview","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Vidette","place_name":"Vidette","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"View Royal","place_name":"","community":"View Royal","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Village Bay","place_name":"Village Bay","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Village Island 1","place_name":"","community":"Village Island 1","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Village of Queen Charlotte","place_name":"Village of Queen Charlotte","community":"Queen Charlotte","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Vinsulla","place_name":"Vinsulla","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"W'aayi","place_name":"W'aayi","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Wabi Estates","place_name":"Wabi Estates","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Wabi Hill Trailer Court","place_name":"Wabi Hill Trailer Court","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Wadhams","place_name":"Wadhams","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Wagner Ranch","place_name":"Wagner Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Waiwakum 14","place_name":"","community":"Waiwakum 14","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Walcott","place_name":"Walcott","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Walhachin","place_name":"Walhachin","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Walkers","place_name":"Walkers","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Wall Beach","place_name":"Wall Beach","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Walnut Grove","place_name":"Walnut Grove","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Waneta","place_name":"Waneta","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Waneta Junction","place_name":"Waneta Junction","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Wardner","place_name":"Wardner","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Warfield","place_name":"","community":"Warfield","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Warner Bay","place_name":"Warner Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Wasa","place_name":"Wasa","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Water's Subdivision","place_name":"Water's Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Webber Site","place_name":"Webber Site","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Websters Corners","place_name":"Websters Corners","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Weeping Willow Trailer Court","place_name":"Weeping Willow Trailer Court","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Weewanie","place_name":"Weewanie","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Welcome Beach","place_name":"Welcome Beach","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Weldwood","place_name":"Weldwood","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Wellington","place_name":"Wellington","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Wells","place_name":"","community":"Wells","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Weneez","place_name":"Weneez","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"West Bay","place_name":"West Bay","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"West Bench","place_name":"West Bench","community":"Penticton 1","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"West Creston","place_name":"West Creston","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"West End - New Westminster","place_name":"West End","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"West End - Vancouver","place_name":"West End","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"West End Trailer Park","place_name":"West End Trailer Park","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"West Heights","place_name":"West Heights","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"West Kelowna","place_name":"","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"West Landing","place_name":"West Landing","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"West Lynn","place_name":"West Lynn","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"West Mara Lake","place_name":"West Mara Lake","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"West Midway","place_name":"West Midway","community":"Midway","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"West Moberly Lake 168A","place_name":"","community":"West Moberly Lake 168A","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"West Point Grey","place_name":"West Point Grey","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"West Road Subdivision","place_name":"West Road Subdivision","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"West Sechelt","place_name":"West Sechelt","community":"Sechelt","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"West Thurlow","place_name":"West Thurlow","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"West Trail","place_name":"West Trail","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"West Vancouver","place_name":"","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Westbank - Tsinstikeptum 9","place_name":"Westbank","community":"Tsinstikeptum 9","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Westbank - West Kelowna","place_name":"Westbank","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Westbridge","place_name":"Westbridge","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Westcoast Energy","place_name":"Westcoast Energy","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Westholme","place_name":"Westholme","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Westmount","place_name":"Westmount","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Westmount Acres Trailer Court","place_name":"Westmount Acres Trailer Court","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Westridge","place_name":"Westridge","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Westside","place_name":"Westside","community":"Tsinstikeptum 10","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Westsyde","place_name":"Westsyde","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Westview","place_name":"Westview","community":"Powell River","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Westwold","place_name":"Westwold","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Wet'suwet'en Village","place_name":"Wet'suwet'en Village","community":"Palling 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Weyerhaeuser Subdivision","place_name":"Weyerhaeuser Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Whaletown","place_name":"Whaletown","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Whalley","place_name":"Whalley","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Wheel Estates-Saratoga Beach","place_name":"Wheel Estates-Saratoga Beach","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Whiplash Ranch","place_name":"Whiplash Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Whisky Creek","place_name":"Whisky Creek","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Whispering Pines 4","place_name":"","community":"Whispering Pines 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Whispering Pines Trailer Park","place_name":"Whispering Pines Trailer Park","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Whispering Winds Trailer Court","place_name":"Whispering Winds Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Whistler","place_name":"","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Whistler Creek","place_name":"Whistler Creek","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"White Lake","place_name":"White Lake","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"White Rock","place_name":"","community":"White Rock","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"White Spruce Trailer Court","place_name":"White Spruce Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Whitecroft","place_name":"Whitecroft","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Whiterock Passage","place_name":"Whiterock Passage","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Whonnock","place_name":"Whonnock","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Whonnock 1","place_name":"","community":"Whonnock 1","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Whyac","place_name":"Whyac","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Whytecliff","place_name":"Whytecliff","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Wigwam Inn","place_name":"Wigwam Inn","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Wihat'a","place_name":"Wihat'a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Wii Lax K'ap","place_name":"Wii Lax K'ap","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Wildwood","place_name":"Wildwood","community":"Powell River","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Wildwood Subdivision","place_name":"Wildwood Subdivision","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Wildwood Trailer Park","place_name":"Wildwood Trailer Park","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Wiley","place_name":"Wiley","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Williams Beach","place_name":"Williams Beach","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Williams Lake","place_name":"","community":"Williams Lake","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 3"},{"location":"Williams Lake 1","place_name":"","community":"Williams Lake 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Williams Landing","place_name":"Williams Landing","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Williams Prairie Meadow 1A","place_name":"","community":"Williams Prairie Meadow 1A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Williamsons Landing","place_name":"Williamsons Landing","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Willingdon Heights","place_name":"Willingdon Heights","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Willow Brook","place_name":"Willow Brook","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Willow Flats","place_name":"Willow Flats","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Willow Point","place_name":"Willow Point","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Willow Ranch","place_name":"Willow Ranch","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Willow River","place_name":"Willow River","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Willow Valley","place_name":"Willow Valley","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Willowbrook - Okanagan-Similkameen C","place_name":"Willowbrook","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Willowbrook - Peace River D","place_name":"Willowbrook","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Willowvale","place_name":"Willowvale","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Wilmer","place_name":"Wilmer","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Wilson Creek","place_name":"Wilson Creek","community":"Sechelt","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Wilson Landing","place_name":"Wilson Landing","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Windermere","place_name":"Windermere","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Windmill Trailer Park","place_name":"Windmill Trailer Park","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Windsor Park","place_name":"Windsor Park","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Windy Mouth 7","place_name":"","community":"Windy Mouth 7","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Winfield","place_name":"Winfield","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Winfield Mobile Home Park","place_name":"Winfield Mobile Home Park","community":"Duck Lake 7","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Wingdam","place_name":"Wingdam","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Winlaw","place_name":"Winlaw","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Winter Harbour","place_name":"Winter Harbour","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Wistaria","place_name":"Wistaria","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Wisteria","place_name":"Wisteria","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Wolf","place_name":"Wolf","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Wonowon","place_name":"Wonowon","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Woodcock","place_name":"Woodcock","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Woodcreek","place_name":"Woodcreek","community":"Sunshine Coast E","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Woodfibre","place_name":"Woodfibre","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Woodhaven","place_name":"Woodhaven","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Woodland Park Estates","place_name":"Woodland Park Estates","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Woodlands","place_name":"Woodlands","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Woodmere","place_name":"Woodmere","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Woodpecker","place_name":"Woodpecker","community":"Fraser-Fort George E","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Woods Landing","place_name":"Woods Landing","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Woodsdale","place_name":"Woodsdale","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Woss","place_name":"Woss","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Woyenne 27","place_name":"","community":"Woyenne 27","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Wright","place_name":"Wright","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Wyah 3","place_name":"Wyah 3","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Wycliffe","place_name":"Wycliffe","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Wycliffe Trailer Park","place_name":"Wycliffe Trailer Park","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Wyndhaven Subdivision","place_name":"Wyndhaven Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Wynndel","place_name":"Wynndel","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Xeni","place_name":"Xeni","community":"Lohbiee 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Y.D. Ranch Subdivision","place_name":"Y.D. Ranch Subdivision","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ya:kats","place_name":"Ya:kats","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Yaashitquo-a","place_name":"Yaashitquo-a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Yaculta","place_name":"Yaculta","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Yahk","place_name":"Yahk","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Yaku","place_name":"Yaku","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Yakweakwioose 12","place_name":"","community":"Yakweakwioose 12","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Yale","place_name":"Yale","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Yale Town 1","place_name":"","community":"Yale Town 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Yankee Flats","place_name":"Yankee Flats","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Yarksis","place_name":"Yarksis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Yarrow","place_name":"Yarrow","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Yawaucht 11","place_name":"","community":"Yawaucht 11","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Ye Koo Che 3","place_name":"","community":"Ye Koo Che 3","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Yekooche","place_name":"Yekooche","community":"Ye Koo Che 3","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Yekwaupsum 18","place_name":"","community":"Yekwaupsum 18","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Yellow Point","place_name":"Yellow Point","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Yennadon","place_name":"Yennadon","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ymir","place_name":"Ymir","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Youbou","place_name":"Youbou","community":"Cowichan Valley I","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Youbou West","place_name":"Youbou West","community":"Cowichan Valley I","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Young Lake","place_name":"Young Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Yreka","place_name":"Yreka","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"YunesÌ‚it'in","place_name":"YunesÌ‚it'in","community":"Stone 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Yuquot","place_name":"Yuquot","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Yuquot 1","place_name":"","community":"Yuquot 1","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Yuuhluth","place_name":"Yuuhluth","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Zacht 5","place_name":"","community":"Zacht 5","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Zamora","place_name":"Zamora","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Zeballos","place_name":"","community":"Zeballos","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Zincton","place_name":"Zincton","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Zoht 4","place_name":"","community":"Zoht 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"}] \ No newline at end of file +[{"location":"100 Mile House","place_name":"100 Mile House","community":"One Hundred Mile House","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"105 Mile House","place_name":"105 Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"105 Mile Post 2","place_name":"","community":"105 Mile Post 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"108 Mile Ranch","place_name":"108 Mile Ranch","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"111 Mile House","place_name":"111 Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"114 Mile House","place_name":"114 Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"12 Mile","place_name":"12 Mile","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"122 Mile House","place_name":"122 Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"127 Mile House","place_name":"127 Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"141 Mile House","place_name":"141 Mile House","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"150 Mile House","place_name":"150 Mile House","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"40 Mile Flats","place_name":"40 Mile Flats","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"70 Mile House","place_name":"70 Mile House","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"93 Mile","place_name":"93 Mile","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"A:mai","place_name":"A:mai","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Aa-at-sow-is","place_name":"Aa-at-sow-is","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Abbotsford","place_name":"","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Abbott Heights","place_name":"Abbott Heights","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Aberdeen - Abbotsford","place_name":"Aberdeen","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Aberdeen - Kamloops","place_name":"Aberdeen","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Acous","place_name":"Acous","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Adams Lake","place_name":"Adams Lake","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Agassiz","place_name":"Agassiz","community":"Kent","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Agate","place_name":"Agate","community":"Shackan 11","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Agats Meadow 8","place_name":"","community":"Agats Meadow 8","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Ah:tliish","place_name":"Ah:tliish","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ahahswinis 1","place_name":"","community":"Ahahswinis 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Ahaminaquus 12","place_name":"","community":"Ahaminaquus 12","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Ahbau","place_name":"Ahbau","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ahousat","place_name":"Ahousat","community":"Marktosis 15","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Ainsworth Hot Springs","place_name":"Ainsworth Hot Springs","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Aitchelitch 9","place_name":"","community":"Aitchelitch 9","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Aiyansh (Kitladamas) 1","place_name":"Aiyansh (Kitladamas) 1","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Aiyansh 1","place_name":"Aiyansh 1","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Ak:tiis","place_name":"Ak:tiis","community":"Village Island 1","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Akiskinook","place_name":"Akiskinook","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Alamo","place_name":"Alamo","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Albas","place_name":"Albas","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Alberni","place_name":"Alberni","community":"Port Alberni","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Alberni 2","place_name":"","community":"Alberni 2","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Alberni-Clayoquot A","place_name":"","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Alberni-Clayoquot B","place_name":"","community":"Alberni-Clayoquot B","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Alberni-Clayoquot C","place_name":"","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Alberni-Clayoquot D","place_name":"","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Alberni-Clayoquot E","place_name":"","community":"Alberni-Clayoquot E","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Alberni-Clayoquot F","place_name":"","community":"Alberni-Clayoquot F","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Alberni-Clayoquot, Subd. A","place_name":"Alberni-Clayoquot, Subd. A","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Alberni-Clayoquot, Subd. B","place_name":"Alberni-Clayoquot, Subd. B","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Albert Flat 5","place_name":"","community":"Albert Flat 5","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Albert Head","place_name":"Albert Head","community":"Metchosin","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Albion","place_name":"Albion","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Albreda","place_name":"Albreda","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alder Creek","place_name":"Alder Creek","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Aldergrove","place_name":"Aldergrove","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Alert Bay","place_name":"Alert Bay","community":"Alert Bay - Village","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Alert Bay - Indian reserve","place_name":"","community":"Alert Bay - Indian reserve","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Alert Bay - Village","place_name":"","community":"Alert Bay - Village","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Alert Bay 1","place_name":"Alert Bay 1","community":"Alert Bay - Indian reserve","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Alert Bay 1A","place_name":"Alert Bay 1A","community":"Alert Bay - Indian reserve","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Alexandria","place_name":"","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexandria 1","place_name":"Alexandria 1","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexandria 1A","place_name":"Alexandria 1A","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexandria 3","place_name":"Alexandria 3","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexandria 3A","place_name":"Alexandria 3A","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexis 9","place_name":"","community":"Alexis 9","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Alexis Creek","place_name":"Alexis Creek","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alexis Creek 6","place_name":"Alexis Creek 6","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alexis Creek 14","place_name":"","community":"Alexis Creek 14","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexis Creek 16","place_name":"","community":"Alexis Creek 16","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexis Creek 17","place_name":"Alexis Creek 17","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alexis Creek 21","place_name":"","community":"Alexis Creek 21","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alexis Creek 24","place_name":"Alexis Creek 24","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alexis Creek 25","place_name":"Alexis Creek 25","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alexis Creek 34","place_name":"","community":"Alexis Creek 34","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Aleza Lake","place_name":"Aleza Lake","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Alice Arm","place_name":"Alice Arm","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Alice Siding","place_name":"Alice Siding","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Alkali Lake","place_name":"Alkali Lake","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Alkali Lake 1","place_name":"","community":"Alkali Lake 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Alkali Lake 4A","place_name":"","community":"Alkali Lake 4A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Allenby","place_name":"Allenby","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Allens Addition","place_name":"Allens Addition","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Alliford Bay","place_name":"Alliford Bay","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Allison Lake","place_name":"Allison Lake","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Almond Gardens","place_name":"Almond Gardens","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Almond Gardens Trailer Park","place_name":"Almond Gardens Trailer Park","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Alpine Meadows","place_name":"Alpine Meadows","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Alpine Trailer Park","place_name":"Alpine Trailer Park","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Alta Lake","place_name":"Alta Lake","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Altamont","place_name":"Altamont","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Altona","place_name":"Altona","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Alvin","place_name":"Alvin","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Ambleside","place_name":"Ambleside","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Anacla 12","place_name":"","community":"Anacla 12","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Anaconda","place_name":"Anaconda","community":"Greenwood","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Anahim Lake","place_name":"Anahim Lake","community":"Squinas 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Anahim's Flat 1","place_name":"","community":"Anahim's Flat 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Anahim's Meadow","place_name":"","community":"Anahim's Meadow","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Anahim's Meadow 2","place_name":"Anahim's Meadow 2","community":"Anahim's Meadow","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Anahim's Meadow 2A","place_name":"Anahim's Meadow 2A","community":"Anahim's Meadow","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Anaqtl'a","place_name":"Anaqtl'a","community":"Anacla 12","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Anderson","place_name":"Anderson","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Andy Cahoose Meadow 16","place_name":"Andy Cahoose Meadow 16","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Anglemont","place_name":"Anglemont","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Anmore","place_name":"","community":"Anmore","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Anniedale","place_name":"Anniedale","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Annis","place_name":"Annis","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Annis Bay","place_name":"Annis Bay","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Anvil Island","place_name":"Anvil Island","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Anyox","place_name":"Anyox","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Anzac","place_name":"Anzac","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Apex Mountain","place_name":"Apex Mountain","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Appledale","place_name":"Appledale","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Applegrove","place_name":"Applegrove","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Apsagayu 1A","place_name":"Apsagayu 1A","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Arbutus","place_name":"Arbutus","community":"Cowichan Valley C","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Arbutus Ridge","place_name":"Arbutus Ridge","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Archibald Subdivision","place_name":"Archibald Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ardmore","place_name":"Ardmore","community":"North Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Argenta","place_name":"Argenta","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Armitage Trailer Court","place_name":"Armitage Trailer Court","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Armstrong","place_name":"","community":"Armstrong","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Armstrong - Armstrong","place_name":"Armstrong","community":"Armstrong","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Armstrong - Spallumcheen","place_name":"Armstrong","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Arnold","place_name":"Arnold","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Arras","place_name":"Arras","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Arrow Creek","place_name":"Arrow Creek","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Arrow Creek-Lakeview","place_name":"Arrow Creek-Lakeview","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Arrow Park","place_name":"Arrow Park","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Arrowhead","place_name":"Arrowhead","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Arrowview Heights","place_name":"Arrowview Heights","community":"Alberni-Clayoquot F","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Artina Trailer Court","place_name":"Artina Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Aschcroft Ranch","place_name":"Aschcroft Ranch","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ashcroft","place_name":"","community":"Ashcroft","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ashcroft 4","place_name":"","community":"Ashcroft 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Ashcroft Manor","place_name":"Ashcroft Manor","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ashnola 10","place_name":"","community":"Ashnola 10","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Ashton Creek","place_name":"Ashton Creek","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Aspen Grove","place_name":"Aspen Grove","community":"Thompson-Nicola N (Beautiful Nicola Valley - South)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Aspen Mobile Trailer Court","place_name":"Aspen Mobile Trailer Court","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Atchelitz","place_name":"Atchelitz","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Athalmer","place_name":"Athalmer","community":"Shuswap","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Atlin","place_name":"Atlin","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Atluck","place_name":"Atluck","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Atnarko","place_name":"Atnarko","community":"Central Coast C","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Attachie","place_name":"Attachie","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Aupe 6","place_name":"Aupe 6","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Aupe 6A","place_name":"Aupe 6A","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Austin Heights","place_name":"Austin Heights","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Australian","place_name":"Australian","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Avola","place_name":"Avola","community":"Thompson-Nicola B (Thompson Headwaters)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Aywawwis 15","place_name":"Aywawwis 15","community":"Hope","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Azu Ski Village","place_name":"Azu Ski Village","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"B and D Trailer Court","place_name":"B and D Trailer Court","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Babcock Subdivision","place_name":"Babcock Subdivision","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Babine 6","place_name":"Babine 6","community":"Babine 6","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Babine 16","place_name":"","community":"Babine 16","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Babine 17","place_name":"","community":"Babine 17","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Babine 25","place_name":"","community":"Babine 25","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Babine 6","place_name":"","community":"Babine 6","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Babine Lake 21B","place_name":"","community":"Babine Lake 21B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Baezaeko River 25","place_name":"Baezaeko River 25","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Baezaeko River 26","place_name":"Baezaeko River 26","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Baezaeko River 27","place_name":"","community":"Baezaeko River 27","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Baker","place_name":"Baker","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Baker Creek","place_name":"Baker Creek","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Baldonnel","place_name":"Baldonnel","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Baldy Hughes","place_name":"Baldy Hughes","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Balfour","place_name":"Balfour","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Balmoral","place_name":"Balmoral","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Balmoral Beach","place_name":"Balmoral Beach","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Bamberton","place_name":"Bamberton","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Bamfield","place_name":"Bamfield","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Bankeir","place_name":"Bankeir","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Baptiste Meadow 2","place_name":"","community":"Baptiste Meadow 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Bargain Harbour","place_name":"Bargain Harbour","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Barkerville","place_name":"Barkerville","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Barlow Creek","place_name":"Barlow Creek","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Barnet","place_name":"Barnet","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Barnhartvale","place_name":"Barnhartvale","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Barnston Island","place_name":"Barnston Island","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Barnston Island 3","place_name":"","community":"Barnston Island 3","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Barrett Lake","place_name":"Barrett Lake","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Barriere","place_name":"","community":"Barriere","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Barrowtown","place_name":"Barrowtown","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Basque 18","place_name":"","community":"Basque 18","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Bastion Bay","place_name":"Bastion Bay","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Batchelor Hills","place_name":"Batchelor Hills","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Bates Beach","place_name":"Bates Beach","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Baynes Lake","place_name":"Baynes Lake","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Bayview Estates","place_name":"Bayview Estates","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Beach Grove","place_name":"Beach Grove","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Beachcomber","place_name":"Beachcomber","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Beachcomber Bay","place_name":"Beachcomber Bay","community":"Vernon","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Bealby Point","place_name":"Bealby Point","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Bear Camp","place_name":"Bear Camp","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bear Creek","place_name":"Bear Creek","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bear Flat","place_name":"Bear Flat","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Bear Lake - Fraser-Fort George G","place_name":"Bear Lake","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Bear Lake - Stikine Region","place_name":"Bear Lake","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bear Mountain","place_name":"Bear Mountain","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Bear River Trailer Court","place_name":"Bear River Trailer Court","community":"Stewart","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Beard's Creek","place_name":"Beard's Creek","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Beasley","place_name":"Beasley","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Beaton","place_name":"Beaton","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Beatton Ranch","place_name":"Beatton Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Beaver Cove","place_name":"Beaver Cove","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Beaver Creek","place_name":"Beaver Creek","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Beaver Falls","place_name":"Beaver Falls","community":"Montrose","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Beaver Lake","place_name":"Beaver Lake","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Beaver Pass House","place_name":"Beaver Pass House","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Beaver Point","place_name":"Beaver Point","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Beaverdell","place_name":"Beaverdell","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Beaverley","place_name":"Beaverley","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Beban Trailer Park","place_name":"Beban Trailer Park","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Becher Bay 1","place_name":"","community":"Becher Bay 1","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Becher Bay 2","place_name":"Becher Bay 2","community":"Metchosin","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Becher House","place_name":"Becher House","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Bedwell Harbour","place_name":"Bedwell Harbour","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Belaire Estates Trailer Park","place_name":"Belaire Estates Trailer Park","community":"Duck Lake 7","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Belcarra","place_name":"","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Bell II","place_name":"Bell II","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Bella Bella","place_name":"Bella Bella","community":"Bella Bella 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Bella Bella 1","place_name":"","community":"Bella Bella 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Bella Coola","place_name":"Bella Coola","community":"Bella Coola 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Bella Coola 1","place_name":"","community":"Bella Coola 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Belle Vue Trailer Court","place_name":"Belle Vue Trailer Court","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Belleview","place_name":"Belleview","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Belmont Park","place_name":"Belmont Park","community":"Colwood","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Belva's Trailer Park","place_name":"Belva's Trailer Park","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Belvedere","place_name":"Belvedere","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Ben-My-Chree","place_name":"Ben-My-Chree","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bennett","place_name":"Bennett","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Benson Lake","place_name":"Benson Lake","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Benvoulin","place_name":"Benvoulin","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Beresford","place_name":"Beresford","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Bergs","place_name":"Bergs","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Beryl Prairie","place_name":"Beryl Prairie","community":"Hudson's Hope","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Bessborough","place_name":"Bessborough","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Bestwick","place_name":"Bestwick","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Betty Creek 18","place_name":"","community":"Betty Creek 18","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Bevan","place_name":"Bevan","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Big Bar","place_name":"Big Bar","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Big Bar Creek","place_name":"Big Bar Creek","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Big Bay","place_name":"Big Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Big Creek","place_name":"Big Creek","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Big Eddy","place_name":"Big Eddy","community":"Revelstoke","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Big Lake Ranch","place_name":"Big Lake Ranch","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Big White","place_name":"Big White","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Big White Village","place_name":"Big White Village","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Bihl' k'a 18","place_name":"Bihl' k'a 18","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bihlk'a 6","place_name":"Bihlk'a 6","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Billings","place_name":"Billings","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Billings Bay","place_name":"Billings Bay","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Binche 2","place_name":"","community":"Binche 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Binche 2 (Pinchie 2)","place_name":"Binche 2 (Pinchie 2)","community":"Binche 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Birch Island","place_name":"Birch Island","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Birchdale","place_name":"Birchdale","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Birchland Manor","place_name":"Birchland Manor","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Birken","place_name":"Birken","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Black Creek - Cariboo F","place_name":"Black Creek","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Black Creek - Comox Valley C (Puntledge - Black Creek)","place_name":"Black Creek","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Black Pines","place_name":"Black Pines","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Blackcomb","place_name":"Blackcomb","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Blackloam","place_name":"Blackloam","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Blackpool","place_name":"Blackpool","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Blackstock Subdivision","place_name":"Blackstock Subdivision","community":"One Hundred Mile House","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Blackwater - Cariboo I","place_name":"Blackwater","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Blackwater - Squamish-Lillooet C","place_name":"Blackwater","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Blackwater Meadow 11","place_name":"Blackwater Meadow 11","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Blaeberry","place_name":"Blaeberry","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Blakeburn","place_name":"Blakeburn","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Blewett","place_name":"Blewett","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Blind Bay","place_name":"Blind Bay","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Blind Channel","place_name":"Blind Channel","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Blind Creek 6","place_name":"","community":"Blind Creek 6","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Bliss Landing","place_name":"Bliss Landing","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Bloedel","place_name":"Bloedel","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Blowhole","place_name":"Blowhole","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Blubber Bay","place_name":"Blubber Bay","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Blucher Hall","place_name":"Blucher Hall","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Blue Hills","place_name":"Blue Hills","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Blue River","place_name":"Blue River","community":"Thompson-Nicola B (Thompson Headwaters)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Blue Springs","place_name":"Blue Springs","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Blueberry Creek","place_name":"Blueberry Creek","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Blueberry Farm","place_name":"Blueberry Farm","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Blueberry River 205","place_name":"","community":"Blueberry River 205","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Blueridge","place_name":"Blueridge","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Boat Basin","place_name":"Boat Basin","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Boat Harbour","place_name":"Boat Harbour","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Bob Quinn Lake","place_name":"Bob Quinn Lake","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Bold Point","place_name":"Bold Point","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Bonaparte 3","place_name":"","community":"Bonaparte 3","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Bonaventure Trailer Park","place_name":"Bonaventure Trailer Park","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Bonnet Hill","place_name":"Bonnet Hill","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Bonnington Falls","place_name":"Bonnington Falls","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Boothroyd","place_name":"Boothroyd","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Boothroyd (Part) 8A","place_name":"Boothroyd (Part) 8A","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Boothroyd 13","place_name":"","community":"Boothroyd 13","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Boothroyd 5A","place_name":"Boothroyd 5A","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Boothroyd 8A","place_name":"","community":"Boothroyd 8A","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Boring Ranch","place_name":"Boring Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Boston Bar","place_name":"Boston Bar","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Boston Bar 1A","place_name":"","community":"Boston Bar 1A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Boston Flats","place_name":"Boston Flats","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Boswell - Central Coast A","place_name":"Boswell","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Boswell - Central Kootenay A","place_name":"Boswell","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Bouchie Lake","place_name":"Bouchie Lake","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Boulder City","place_name":"Boulder City","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Boundary Bay","place_name":"Boundary Bay","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Boundary Falls","place_name":"Boundary Falls","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Bowen Bay","place_name":"Bowen Bay","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bowen Island","place_name":"","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bowen Island Trust","place_name":"Bowen Island Trust","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bowron Lake","place_name":"Bowron Lake","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Bowser","place_name":"Bowser","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Box Lake","place_name":"Box Lake","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Brackendale","place_name":"Brackendale","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bradner","place_name":"Bradner","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brady Ranch","place_name":"Brady Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Braeloch","place_name":"Braeloch","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Braemar Heights","place_name":"Braemar Heights","community":"Colwood","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Braeside","place_name":"Braeside","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bralorne","place_name":"Bralorne","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Brandon","place_name":"Brandon","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Brauns Island","place_name":"Brauns Island","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Brem River","place_name":"Brem River","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Brennan Creek","place_name":"Brennan Creek","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Brentwood Bay","place_name":"Brentwood Bay","community":"South Saanich 1","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Brentwood Park","place_name":"Brentwood Park","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brew Bay","place_name":"Brew Bay","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Brexton","place_name":"Brexton","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Briar Ridge","place_name":"Briar Ridge","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Bridal Falls","place_name":"Bridal Falls","community":"Fraser Valley D","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Bridesville","place_name":"Bridesville","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Bridge Lake","place_name":"Bridge Lake","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Bridge River 1","place_name":"","community":"Bridge River 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Bridgeview","place_name":"Bridgeview","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brigade Lake","place_name":"Brigade Lake","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Brighouse","place_name":"Brighouse","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brighton Beach","place_name":"Brighton Beach","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brilliant","place_name":"Brilliant","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Brisco","place_name":"Brisco","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Britannia Beach","place_name":"Britannia Beach","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"British Properties","place_name":"British Properties","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Broadmoor","place_name":"Broadmoor","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Broadview","place_name":"Broadview","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Broadview Villa","place_name":"Broadview Villa","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Brocklehurst","place_name":"Brocklehurst","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Broman Lake","place_name":"Broman Lake","community":"Duncan Lake 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Brookfield Trailers","place_name":"Brookfield Trailers","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Brookmere","place_name":"Brookmere","community":"Thompson-Nicola N (Beautiful Nicola Valley - South)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Brookswood","place_name":"Brookswood","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brouse","place_name":"Brouse","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Brown Road Trailer Park","place_name":"Brown Road Trailer Park","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Browns Bay","place_name":"Browns Bay","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Brunette Creek","place_name":"Brunette Creek","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Brunswick","place_name":"Brunswick","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Brunswick Beach","place_name":"Brunswick Beach","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Buccaneer Bay","place_name":"Buccaneer Bay","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Buckhorn","place_name":"Buckhorn","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Buckingham Heights","place_name":"Buckingham Heights","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Buckinghorse River","place_name":"Buckinghorse River","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Buckley Bay","place_name":"Buckley Bay","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Bucktum 4","place_name":"","community":"Bucktum 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Buena Vista Estates","place_name":"Buena Vista Estates","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Buffalo Creek","place_name":"Buffalo Creek","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Buick","place_name":"Buick","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Bulkley House","place_name":"Bulkley House","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley River 19","place_name":"","community":"Bulkley River 19","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Bulkley-Nechako A","place_name":"","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako B","place_name":"","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako C","place_name":"","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako D","place_name":"","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako E","place_name":"","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako F","place_name":"","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako G","place_name":"","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako, Subd. A","place_name":"Bulkley-Nechako, Subd. A","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako, Subd. B","place_name":"Bulkley-Nechako, Subd. B","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bulkley-Nechako, Subd. C","place_name":"Bulkley-Nechako, Subd. C","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Bull Harbour","place_name":"Bull Harbour","community":"Hope Island 1","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Bull River","place_name":"Bull River","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Bummers Flat 6","place_name":"Bummers Flat 6","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Buntzen Bay","place_name":"Buntzen Bay","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Burkeville","place_name":"Burkeville","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Burnaby","place_name":"","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Burnaby Heights","place_name":"Burnaby Heights","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Burns Lake","place_name":"","community":"Burns Lake","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Burns Lake 18","place_name":"","community":"Burns Lake 18","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Burnt Flats","place_name":"Burnt Flats","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Burquitlam","place_name":"Burquitlam","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Burrard Inlet 3","place_name":"","community":"Burrard Inlet 3","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Burton","place_name":"Burton","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Butedale","place_name":"Butedale","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Cache Creek","place_name":"","community":"Cache Creek","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Cache Creek Campground","place_name":"Cache Creek Campground","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cadboro Bay","place_name":"Cadboro Bay","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Caesars","place_name":"Caesars","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Cahilty","place_name":"Cahilty","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Cahoose 8","place_name":"Cahoose 8","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cahoose 10","place_name":"Cahoose 10","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cahoose 12","place_name":"Cahoose 12","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Caithness","place_name":"Caithness","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Caithness Trailer Court","place_name":"Caithness Trailer Court","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Callison Ranch","place_name":"Callison Ranch","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cambie-Solsqua","place_name":"Cambie-Solsqua","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Camborne","place_name":"Camborne","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Cameron Bar 13","place_name":"Cameron Bar 13","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cameron Heights","place_name":"Cameron Heights","community":"Port Alberni","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Camp Artaban","place_name":"Camp Artaban","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Camp Homewood","place_name":"Camp Homewood","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Camp McKinney","place_name":"Camp McKinney","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Campbell Creek","place_name":"Campbell Creek","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Campbell Island","place_name":"Campbell Island","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Campbell River","place_name":"","community":"Campbell River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Campbell River 11","place_name":"","community":"Campbell River 11","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Campbellton","place_name":"Campbellton","community":"Campbell River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Canal Flats","place_name":"","community":"Canal Flats","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Canford","place_name":"Canford","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Canim Lake","place_name":"Canim Lake","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Canim Lake 1","place_name":"","community":"Canim Lake 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Canim Lake 2","place_name":"","community":"Canim Lake 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Canim Lake 4","place_name":"","community":"Canim Lake 4","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Canoe","place_name":"Canoe","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Canoe Creek 1","place_name":"","community":"Canoe Creek 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Canoe Creek 2","place_name":"","community":"Canoe Creek 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Canoe Creek 3","place_name":"","community":"Canoe Creek 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Canyon","place_name":"Canyon","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Canyon Alpine","place_name":"Canyon Alpine","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Canyon Heights","place_name":"Canyon Heights","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Canyon Hot Springs","place_name":"Canyon Hot Springs","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Canyon Trailer Park","place_name":"Canyon Trailer Park","community":"Revelstoke","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cape Mudge 10","place_name":"","community":"Cape Mudge 10","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Capilano 5","place_name":"","community":"Capilano 5","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Capilano Highlands","place_name":"Capilano Highlands","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Capital B","place_name":"Capital B","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capital D","place_name":"Capital D","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capital, Subd. A","place_name":"Capital, Subd. A","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capital, Subd. B","place_name":"Capital, Subd. B","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capital, Subd. C","place_name":"Capital, Subd. C","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capital, Subd. D","place_name":"Capital, Subd. D","community":"Juan de Fuca (Part 2)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Capitol Hill","place_name":"Capitol Hill","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cariboo - Cariboo C","place_name":"Cariboo","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo - Coquitlam","place_name":"Cariboo","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cariboo A","place_name":"","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo B","place_name":"","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo C","place_name":"","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo D","place_name":"","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo E","place_name":"","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo F","place_name":"","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo G","place_name":"","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo H","place_name":"","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo I","place_name":"","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo J","place_name":"","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo K","place_name":"","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo L","place_name":"","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo Meadows","place_name":"Cariboo Meadows","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Cariboo, Subd. A","place_name":"Cariboo, Subd. A","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo, Subd. B","place_name":"Cariboo, Subd. B","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cariboo, Subd. C","place_name":"Cariboo, Subd. C","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Carlin","place_name":"Carlin","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Carlson","place_name":"Carlson","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Carmi","place_name":"Carmi","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Carmi Subdivision","place_name":"Carmi Subdivision","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Carnaby","place_name":"Carnaby","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Carraholly","place_name":"Carraholly","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Carrolls Landing","place_name":"Carrolls Landing","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Carrs","place_name":"Carrs","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Carrs Landing","place_name":"Carrs Landing","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Carson","place_name":"Carson","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Cascade - Belcarra","place_name":"Cascade","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Cascade - Kootenay Boundary C / Christina Lake","place_name":"Cascade","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Cascade Heights","place_name":"Cascade Heights","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Casimiel Meadows 15A","place_name":"Casimiel Meadows 15A","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Casino","place_name":"Casino","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Cassiar","place_name":"Cassiar","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cassidy","place_name":"Cassidy","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cassidy Mobile Home Park","place_name":"Cassidy Mobile Home Park","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cassimayooks (Mayook) 5","place_name":"","community":"Cassimayooks (Mayook) 5","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Cassin","place_name":"Cassin","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Castle Rock","place_name":"Castle Rock","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Castledale","place_name":"Castledale","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Castlegar","place_name":"","community":"Castlegar","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Caulfeild","place_name":"Caulfeild","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cawston","place_name":"Cawston","community":"Okanagan-Similkameen B","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Caycuse","place_name":"Caycuse","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cayoosh Creek 1","place_name":"","community":"Cayoosh Creek 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Cecil Lake","place_name":"Cecil Lake","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Cedar","place_name":"Cedar","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cedar By The Sea","place_name":"Cedar By The Sea","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cedar Creek Mobile Home Park","place_name":"Cedar Creek Mobile Home Park","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cedar Grove","place_name":"Cedar Grove","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Cedar Heights Estates","place_name":"Cedar Heights Estates","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cedardale","place_name":"Cedardale","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cedarside","place_name":"Cedarside","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cedarvale","place_name":"Cedarvale","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Ceepeecee","place_name":"Ceepeecee","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Celista","place_name":"Celista","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Central Coast A","place_name":"","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Central Coast C","place_name":"","community":"Central Coast C","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Central Coast D","place_name":"","community":"Central Coast D","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Central Coast E","place_name":"","community":"Central Coast E","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Central Coast, Subd. A","place_name":"Central Coast, Subd. A","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Central Fraser Valley, Subd. A","place_name":"Central Fraser Valley, Subd. A","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Central Kootenay A","place_name":"","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay B","place_name":"","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay C","place_name":"","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay D","place_name":"","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay E","place_name":"","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay F","place_name":"","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay G","place_name":"","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay H","place_name":"","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay I","place_name":"","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay J","place_name":"","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay K","place_name":"","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay, Subd. A","place_name":"Central Kootenay, Subd. A","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay, Subd. B","place_name":"Central Kootenay, Subd. B","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Kootenay, Subd. C","place_name":"Central Kootenay, Subd. C","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Central Okanagan","place_name":"","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan G","place_name":"Central Okanagan G","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan H","place_name":"Central Okanagan H","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan J","place_name":"Central Okanagan J","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan West","place_name":"","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan, Subd. A","place_name":"Central Okanagan, Subd. A","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Okanagan, Subd. B","place_name":"Central Okanagan, Subd. B","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Central Saanich","place_name":"","community":"Central Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Centreville","place_name":"Centreville","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cha cha tsi tsi us","place_name":"Cha cha tsi tsi us","community":"Numukamis 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Chaatl","place_name":"Chaatl","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Chain Lake","place_name":"Chain Lake","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Chamiss Bay","place_name":"Chamiss Bay","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Channel Ridge","place_name":"Channel Ridge","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Chap-is","place_name":"Chap-is","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Chapman Camp","place_name":"Chapman Camp","community":"Kimberley","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Chapmans","place_name":"Chapmans","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Chapperon Ranch","place_name":"Chapperon Ranch","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Charella Garden","place_name":"Charella Garden","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Charley Boy's Meadow 3","place_name":"","community":"Charley Boy's Meadow 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Charlie Lake","place_name":"Charlie Lake","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Charlotte Lake","place_name":"Charlotte Lake","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chase","place_name":"","community":"Chase","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Chase River","place_name":"Chase River","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Chasm","place_name":"Chasm","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Chateau Village Trailer Court","place_name":"Chateau Village Trailer Court","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Chaumox","place_name":"Chaumox","community":"Speyum 3","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Chaumox 11","place_name":"Chaumox 11","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Chawathil 4","place_name":"","community":"Chawathil 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Cheakamus","place_name":"Cheakamus","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Cheakamus 11","place_name":"","community":"Cheakamus 11","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Cheam 1","place_name":"","community":"Cheam 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Cheam View","place_name":"Cheam View","community":"Fraser Valley D","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Cheekye","place_name":"Cheekye","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Chehalis 5","place_name":"","community":"Chehalis 5","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Chekwelp 26","place_name":"","community":"Chekwelp 26","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Chekwelp 26A","place_name":"Chekwelp 26A","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Chemainus","place_name":"Chemainus","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Chemainus 13","place_name":"","community":"Chemainus 13","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Chenahkint 12","place_name":"","community":"Chenahkint 12","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Chenatha","place_name":"Chenatha","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Chequis","place_name":"Chequis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Cherry Creek - Alberni-Clayoquot F","place_name":"Cherry Creek","community":"Alberni-Clayoquot F","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cherry Creek - Thompson-Nicola J (Copper Desert Country)","place_name":"Cherry Creek","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cherryville","place_name":"Cherryville","community":"North Okanagan E","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ches-la-kee 3","place_name":"Ches-la-kee 3","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Cheslatta","place_name":"Cheslatta","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cheslatta 1","place_name":"","community":"Cheslatta 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Chetarpe","place_name":"Chetarpe","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Chetwynd","place_name":"","community":"Chetwynd","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Chezacut","place_name":"Chezacut","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chicoltin Estates Trailer Park","place_name":"Chicoltin Estates Trailer Park","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chilanko Forks","place_name":"Chilanko Forks","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chilco Lake 1","place_name":"","community":"Chilco Lake 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Chilco Lake 1A","place_name":"","community":"Chilco Lake 1A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Chilcotin Forest","place_name":"Chilcotin Forest","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chilhil 6","place_name":"","community":"Chilhil 6","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Chilliwack","place_name":"","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Chilton Subdivision","place_name":"Chilton Subdivision","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Chimney Valley","place_name":"Chimney Valley","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Chineside","place_name":"Chineside","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Chinook Cove","place_name":"Chinook Cove","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Chinook Mobile Home Park","place_name":"Chinook Mobile Home Park","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Choate","place_name":"Choate","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Chopaka","place_name":"Chopaka","community":"Chopaka 7 & 8","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chopaka 7 & 8","place_name":"","community":"Chopaka 7 & 8","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Christian Valley","place_name":"Christian Valley","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Christina Lake","place_name":"Christina Lake","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Chu Chua","place_name":"Chu Chua","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Chuchhraischin","place_name":"","community":"Chuchhraischin","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chuchhriaschin 5","place_name":"Chuchhriaschin 5","community":"Chuchhraischin","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chuchhriaschin 5A","place_name":"Chuchhriaschin 5A","community":"Chuchhraischin","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chuchuwayha 2","place_name":"","community":"Chuchuwayha 2","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chum Creek 2","place_name":"","community":"Chum Creek 2","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Chumata","place_name":"Chumata","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Church House","place_name":"Church House","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Chute Lake","place_name":"Chute Lake","community":"Okanagan-Similkameen E","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cinema","place_name":"Cinema","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cinnabar Valley","place_name":"Cinnabar Valley","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"City of West Kelowna","place_name":"City of West Kelowna","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Clairmont","place_name":"Clairmont","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Clakamucus 2","place_name":"","community":"Clakamucus 2","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Claoose 4","place_name":"Claoose 4","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Clapperton","place_name":"Clapperton","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Claremont Subdivision","place_name":"Claremont Subdivision","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Clayburn","place_name":"Clayburn","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Clayhurst","place_name":"Clayhurst","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Clayoquot","place_name":"Clayoquot","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Cleagh Creek","place_name":"Cleagh Creek","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Clearbrook","place_name":"Clearbrook","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Clearwater","place_name":"","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Clearwater Trailer Park","place_name":"Clearwater Trailer Park","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Clem Clem","place_name":"Clem Clem","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Clemretta","place_name":"Clemretta","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cleveland Park","place_name":"Cleveland Park","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Clinton","place_name":"","community":"Clinton","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Clo-oose","place_name":"Clo-oose","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Clover Acres Mobile Villa","place_name":"Clover Acres Mobile Villa","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cloverdale","place_name":"Cloverdale","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Clutus","place_name":"Clutus","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Coal Harbour","place_name":"Coal Harbour","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Coal River","place_name":"Coal River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Coalmont","place_name":"Coalmont","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cobble Hill","place_name":"Cobble Hill","community":"Cowichan Valley C","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cody","place_name":"Cody","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Coffin Point","place_name":"Coffin Point","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Coglistiko River 29","place_name":"","community":"Coglistiko River 29","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Cokato","place_name":"Cokato","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Coldspring House","place_name":"Coldspring House","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Coldstream","place_name":"","community":"Coldstream","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Coldstream Ranch","place_name":"Coldstream Ranch","community":"Coldstream","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Coldwater 1","place_name":"","community":"Coldwater 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Coldwell Beach","place_name":"Coldwell Beach","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cole Bay 3","place_name":"","community":"Cole Bay 3","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"College Heights","place_name":"College Heights","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Collettville","place_name":"Collettville","community":"Merritt","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Colleymount","place_name":"Colleymount","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Colquitz","place_name":"Colquitz","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Columbia Gardens","place_name":"Columbia Gardens","community":"Kootenay Boundary A","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Columbia Lake 3","place_name":"","community":"Columbia Lake 3","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Columbia Lake Resort Trailer Park","place_name":"Columbia Lake Resort Trailer Park","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Columbia-Shuswap A","place_name":"","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Columbia-Shuswap B","place_name":"","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Columbia-Shuswap C","place_name":"","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Columbia-Shuswap D","place_name":"","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Columbia-Shuswap E","place_name":"","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Columbia-Shuswap F","place_name":"","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Columbia-Shuswap, Subd. A","place_name":"Columbia-Shuswap, Subd. A","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Columbia-Shuswap, Subd. B","place_name":"Columbia-Shuswap, Subd. B","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Columbia-Shuswap, Subd. C","place_name":"Columbia-Shuswap, Subd. C","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Columere Park","place_name":"Columere Park","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Colwood","place_name":"","community":"Colwood","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Comer Hill Trailer Park","place_name":"Comer Hill Trailer Park","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Comiaken","place_name":"Comiaken","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Commodore Heights","place_name":"Commodore Heights","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Comox","place_name":"","community":"Comox","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox 1","place_name":"","community":"Comox 1","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Comox Valley A","place_name":"","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox Valley B (Lazo North)","place_name":"","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox Valley C (Puntledge - Black Creek)","place_name":"","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Comox-Strathcona A","place_name":"Comox-Strathcona A","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox-Strathcona B","place_name":"Comox-Strathcona B","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox-Strathcona C","place_name":"Comox-Strathcona C","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Comox-Strathcona D","place_name":"Comox-Strathcona D","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Comox-Strathcona G","place_name":"Comox-Strathcona G","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Comox-Strathcona H","place_name":"Comox-Strathcona H","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Comox-Strathcona I","place_name":"Comox-Strathcona I","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Comox-Strathcona J","place_name":"Comox-Strathcona J","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Comox-Strathcona K","place_name":"Comox-Strathcona K","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Comox-Strathcona, Subd. A","place_name":"Comox-Strathcona, Subd. A","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Comox-Strathcona, Subd. B","place_name":"Comox-Strathcona, Subd. B","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Comox-Strathcona, Subd. C","place_name":"Comox-Strathcona, Subd. C","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Comox-Strathcona, Subd. D","place_name":"Comox-Strathcona, Subd. D","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Compton Island 6","place_name":"Compton Island 6","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Connaught Heights","place_name":"Connaught Heights","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Coombe","place_name":"Coombe","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Coombs","place_name":"Coombs","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Coombs Trailer Park","place_name":"Coombs Trailer Park","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cooper Creek","place_name":"Cooper Creek","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Copper City","place_name":"Copper City","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Copper Cove","place_name":"Copper Cove","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Copper Creek","place_name":"Copper Creek","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Copper Mountain","place_name":"Copper Mountain","community":"Princeton","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Coquitlam","place_name":"","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Coquitlam 1","place_name":"","community":"Coquitlam 1","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Coquitlam 2","place_name":"","community":"Coquitlam 2","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Coral Beach","place_name":"Coral Beach","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Corbin","place_name":"Corbin","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Cordova Bay","place_name":"Cordova Bay","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Cornwall Lodge Trailer Park","place_name":"Cornwall Lodge Trailer Park","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Corra Linn","place_name":"Corra Linn","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Cortes Bay","place_name":"Cortes Bay","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Coryatsaqua (Moricetown) 2","place_name":"","community":"Coryatsaqua (Moricetown) 2","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Coryville","place_name":"Coryville","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Cosy Cove","place_name":"Cosy Cove","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Cottonwood","place_name":"Cottonwood","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cottonwood Trailer Park","place_name":"Cottonwood Trailer Park","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Couldwell Subdivision","place_name":"Couldwell Subdivision","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Country Lane Park","place_name":"Country Lane Park","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Country Side Estates Trailer Court","place_name":"Country Side Estates Trailer Court","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Courtenay","place_name":"","community":"Courtenay","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Coutlee","place_name":"Coutlee","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cove Cliff","place_name":"Cove Cliff","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Cowans Point","place_name":"Cowans Point","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Cowichan","place_name":"","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Cowichan 1","place_name":"Cowichan 1","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Cowichan 9","place_name":"Cowichan 9","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Cowichan Bay","place_name":"Cowichan Bay","community":"Cowichan Valley D","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Lake","place_name":"","community":"Cowichan Lake","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Cowichan Station","place_name":"Cowichan Station","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley A","place_name":"","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley B","place_name":"","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley C","place_name":"","community":"Cowichan Valley C","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley D","place_name":"","community":"Cowichan Valley D","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley E","place_name":"","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley F","place_name":"","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley G","place_name":"","community":"Cowichan Valley G","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley H","place_name":"","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley I","place_name":"","community":"Cowichan Valley I","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley, Subd. A","place_name":"Cowichan Valley, Subd. A","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley, Subd. B","place_name":"Cowichan Valley, Subd. B","community":"Cowichan Valley G","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley, Subd. C","place_name":"Cowichan Valley, Subd. C","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cowichan Valley, Subd. D","place_name":"Cowichan Valley, Subd. D","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Coyle","place_name":"Coyle","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Cracroft","place_name":"Cracroft","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Craigellachie","place_name":"Craigellachie","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Craigs Trailer Court","place_name":"Craigs Trailer Court","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Cranberry","place_name":"Cranberry","community":"Powell River","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Cranberry Junction","place_name":"Cranberry Junction","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Cranbrook","place_name":"","community":"Cranbrook","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Cranbrook Trailer Court","place_name":"Cranbrook Trailer Court","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Crawford Bay","place_name":"Crawford Bay","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Creekside","place_name":"Creekside","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Creekside Trailer Park","place_name":"Creekside Trailer Park","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Creighton Valley","place_name":"Creighton Valley","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Crescent","place_name":"Crescent","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Crescent Bay - Central Kootenay F","place_name":"Crescent Bay","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Crescent Bay - Central Kootenay K","place_name":"Crescent Bay","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Crescent Beach - Okanagan-Similkameen F","place_name":"Crescent Beach","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Crescent Beach - Surrey","place_name":"Crescent Beach","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Crescent Spur","place_name":"Crescent Spur","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Crescent Valley","place_name":"Crescent Valley","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Crest-A-Way","place_name":"Crest-A-Way","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Creston","place_name":"","community":"Creston","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Creston 1","place_name":"","community":"Creston 1","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Creston Valley Mobile Park","place_name":"Creston Valley Mobile Park","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Creston Wyndle Road","place_name":"Creston Wyndle Road","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Crestwood Subdivision","place_name":"Crestwood Subdivision","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Criss Creek","place_name":"Criss Creek","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Crofton","place_name":"Crofton","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Crotteau Subdivision","place_name":"Crotteau Subdivision","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Crowsnest","place_name":"Crowsnest","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Croydon","place_name":"Croydon","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Cultus Lake","place_name":"Cultus Lake","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Cultus Lake Estates Mobile Home Park","place_name":"Cultus Lake Estates Mobile Home Park","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Cumberland","place_name":"","community":"Cumberland","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Cumshewa","place_name":"Cumshewa","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Curzon","place_name":"Curzon","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Cypress Park","place_name":"Cypress Park","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Dadens","place_name":"Dadens","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Dallas","place_name":"Dallas","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Danskin","place_name":"Danskin","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"D'Arcy","place_name":"D'Arcy","community":"Nequatque","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Darfield","place_name":"Darfield","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Darrell Bay","place_name":"Darrell Bay","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dartmoor","place_name":"Dartmoor","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Dashwood","place_name":"Dashwood","community":"Nanaimo G","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Davis Bay","place_name":"Davis Bay","community":"Sunshine Coast D","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dawson Creek","place_name":"","community":"Dawson Creek","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 3"},{"location":"Dawsons Landing","place_name":"Dawsons Landing","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Days Ranch","place_name":"Days Ranch","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Day's Subdivision","place_name":"Day's Subdivision","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"De Courcy Island","place_name":"De Courcy Island","community":"Nanaimo B","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Dead Point 5","place_name":"","community":"Dead Point 5","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Deadtree Point","place_name":"Deadtree Point","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Deadwood","place_name":"Deadwood","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Dease Lake","place_name":"Dease Lake","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Dease Lake 9","place_name":"","community":"Dease Lake 9","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Dease River 1","place_name":"","community":"Dease River 1","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Decker Lake","place_name":"Decker Lake","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Deekyakus","place_name":"Deekyakus","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Deep Bay","place_name":"Deep Bay","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Deep Cove - North Saanich","place_name":"Deep Cove","community":"North Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Deep Cove - North Vancouver - District municipality","place_name":"Deep Cove","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Deep Creek","place_name":"Deep Creek","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Deep Creek 2","place_name":"","community":"Deep Creek 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Deer Park","place_name":"Deer Park","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Deerholme","place_name":"Deerholme","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Defot","place_name":"Defot","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Deka Lake","place_name":"Deka Lake","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Deka Lake Subdivision","place_name":"Deka Lake Subdivision","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Del Oro Subdivision","place_name":"Del Oro Subdivision","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Delbrook","place_name":"Delbrook","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Delkatla","place_name":"Delkatla","community":"Masset","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Delta","place_name":"","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Denman Island","place_name":"Denman Island","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Dentville","place_name":"Dentville","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Departure Bay","place_name":"Departure Bay","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Deroche","place_name":"Deroche","community":"Fraser Valley G","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Devine","place_name":"Devine","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dewdney","place_name":"Dewdney","community":"Fraser Valley G","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Dewdney-Alouette, Subd. A","place_name":"Dewdney-Alouette, Subd. A","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dibble Subdivision","place_name":"Dibble Subdivision","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Digby Island","place_name":"Digby Island","community":"S1/2 Tsimpsean 2","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Dochsupple","place_name":"Dochsupple","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Dodge Cove","place_name":"Dodge Cove","community":"North Coast A","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Doe River","place_name":"Doe River","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Dog Creek - Bulkley-Nechako F","place_name":"Dog Creek","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Dog Creek - Cariboo E","place_name":"Dog Creek","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Dog Creek 1","place_name":"","community":"Dog Creek 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Dog Creek 2","place_name":"","community":"Dog Creek 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Dogpatch","place_name":"Dogpatch","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dogwood Valley","place_name":"Dogwood Valley","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Doig River","place_name":"Doig River","community":"Doig River 206","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Doig River 206","place_name":"","community":"Doig River 206","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Dokie Siding","place_name":"Dokie Siding","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Dokkie Subdivision","place_name":"Dokkie Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Dolan Road Subdivision","place_name":"Dolan Road Subdivision","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dollarton","place_name":"Dollarton","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Dolphin Beach","place_name":"Dolphin Beach","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Dolphin Beach Estates","place_name":"Dolphin Beach Estates","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Dolphin Island 1","place_name":"","community":"Dolphin Island 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Dome Creek","place_name":"Dome Creek","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Donald","place_name":"Donald","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Donald Landing","place_name":"Donald Landing","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Donnely Landing","place_name":"Donnely Landing","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Don's Trailer Court","place_name":"Don's Trailer Court","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Dookqua","place_name":"Dookqua","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Dorcas Point","place_name":"Dorcas Point","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Doriston","place_name":"Doriston","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Dorreen","place_name":"Dorreen","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Douglas","place_name":"Douglas","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Douglas 8","place_name":"","community":"Douglas 8","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Douglas Hill Estates","place_name":"Douglas Hill Estates","community":"Cowichan Valley C","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Douglas Lake","place_name":"Douglas Lake","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Douglas Lake 3","place_name":"","community":"Douglas Lake 3","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Dove Creek","place_name":"Dove Creek","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Dragon Lake 3","place_name":"","community":"Dragon Lake 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Drew Harbour","place_name":"Drew Harbour","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Driftwood Creek","place_name":"Driftwood Creek","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Dry Gulch","place_name":"Dry Gulch","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Duck Lake 7","place_name":"","community":"Duck Lake 7","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Duck Range","place_name":"Duck Range","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dufferin","place_name":"Dufferin","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Dugan Lake","place_name":"Dugan Lake","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Dunbar-Southlands","place_name":"Dunbar-Southlands","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Duncan","place_name":"","community":"Duncan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Duncan Bay","place_name":"Duncan Bay","community":"Campbell River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Duncan Lake 2","place_name":"","community":"Duncan Lake 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Duncanby Landing","place_name":"Duncanby Landing","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Dundarave","place_name":"Dundarave","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Dunkley","place_name":"Dunkley","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Dunsmuir","place_name":"Dunsmuir","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Dunster","place_name":"Dunster","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Durieu","place_name":"Durieu","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Dutch Creek Subdivision","place_name":"Dutch Creek Subdivision","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Dutch Lake","place_name":"Dutch Lake","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dutch Lake Resort","place_name":"Dutch Lake Resort","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dutch Lake Subdivision","place_name":"Dutch Lake Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dutch Lake Trailer Park","place_name":"Dutch Lake Trailer Park","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Dzitline Lee 9","place_name":"","community":"Dzitline Lee 9","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Ê”Esdilagh","place_name":"Ê”Esdilagh","community":"Alexandria","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Eagle Bay","place_name":"Eagle Bay","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Eagle Bay Estates Subdivision","place_name":"Eagle Bay Estates Subdivision","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Eagle Bluff","place_name":"Eagle Bluff","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Eagle Creek","place_name":"Eagle Creek","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Eagle Harbour","place_name":"Eagle Harbour","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Eagle Heights","place_name":"Eagle Heights","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Eagle Ridge","place_name":"Eagle Ridge","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Eagle Rock Trailer Park","place_name":"Eagle Rock Trailer Park","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Eagle Run","place_name":"Eagle Run","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Earls Cove","place_name":"Earls Cove","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"East Arrow Park","place_name":"East Arrow Park","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Gate - Columbia-Shuswap A","place_name":"East Gate","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"East Gate - Okanagan-Similkameen H","place_name":"East Gate","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"East Kelowna","place_name":"East Kelowna","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"East Kootenay A","place_name":"","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay B","place_name":"","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay C","place_name":"","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"East Kootenay E","place_name":"","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay F","place_name":"","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay G","place_name":"","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay, Subd. A","place_name":"East Kootenay, Subd. A","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Kootenay, Subd. B","place_name":"East Kootenay, Subd. B","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"East Kootenay, Subd. C","place_name":"East Kootenay, Subd. C","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"East Moberly Lake 169","place_name":"","community":"East Moberly Lake 169","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"East Osoyoos","place_name":"East Osoyoos","community":"Okanagan-Similkameen A","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"East Pine","place_name":"East Pine","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"East Saanich 2","place_name":"","community":"East Saanich 2","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"East Sooke","place_name":"East Sooke","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"East Trail","place_name":"East Trail","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"East Wellington","place_name":"East Wellington","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Eastbourne","place_name":"Eastbourne","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Eastburn","place_name":"Eastburn","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Eastgate","place_name":"Eastgate","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Echo Bay","place_name":"Echo Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ecoole","place_name":"Ecoole","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Eddontenajon","place_name":"Eddontenajon","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Eddy","place_name":"Eddy","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Edelweiss","place_name":"Edelweiss","community":"Golden","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Edgewater","place_name":"Edgewater","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Edgewood","place_name":"Edgewood","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Edgewood Trailer Court","place_name":"Edgewood Trailer Court","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Egmont","place_name":"Egmont","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Ehatis 11","place_name":"","community":"Ehatis 11","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Ehatisaht","place_name":"Ehatisaht","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Eholt","place_name":"Eholt","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ekins Point","place_name":"Ekins Point","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Elephant Crossing","place_name":"Elephant Crossing","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Eleven Mile Site","place_name":"Eleven Mile Site","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Elgin","place_name":"Elgin","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Elhlateese 2","place_name":"","community":"Elhlateese 2","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Elk Bay","place_name":"Elk Bay","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Elk Prairie","place_name":"Elk Prairie","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Elk Valley Trailer Court","place_name":"Elk Valley Trailer Court","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Elkford","place_name":"","community":"Elkford","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Elko","place_name":"Elko","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ellison","place_name":"Ellison","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Ellsworth Trailer Camp","place_name":"Ellsworth Trailer Camp","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Elphinstone","place_name":"Elphinstone","community":"Sunshine Coast E","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Endako","place_name":"Endako","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Enderby","place_name":"","community":"Enderby","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Enderby 2","place_name":"","community":"Enderby 2","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Engen","place_name":"Engen","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Engineer","place_name":"Engineer","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Enterprise","place_name":"Enterprise","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Entlqwekkinh 19","place_name":"","community":"Entlqwekkinh 19","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Erickson","place_name":"Erickson","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Erie","place_name":"Erie","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Errington","place_name":"Errington","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Esler","place_name":"Esler","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Esowista 3","place_name":"","community":"Esowista 3","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Esperanza","place_name":"Esperanza","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Espinosa Inlet","place_name":"Espinosa Inlet","community":"Oclucje 7","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Esquimalt - District municipality","place_name":"","community":"Esquimalt - District municipality","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Esquimalt - Indian reserve","place_name":"","community":"Esquimalt - Indian reserve","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Essondale","place_name":"Essondale","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Estevan Point","place_name":"Estevan Point","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Est-Patrolas 4","place_name":"","community":"Est-Patrolas 4","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Euchinico Creek 17","place_name":"","community":"Euchinico Creek 17","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Evergreen Acres - Clearwater","place_name":"Evergreen Acres","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Evergreen Acres - Peace River B","place_name":"Evergreen Acres","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Evergreen Trailer Park","place_name":"Evergreen Trailer Park","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ewing","place_name":"Ewing","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Exeter","place_name":"Exeter","community":"One Hundred Mile House","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Exlou","place_name":"Exlou","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Extension","place_name":"Extension","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fair Harbour","place_name":"Fair Harbour","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Fairbridge","place_name":"Fairbridge","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fairfield - Chilliwack","place_name":"Fairfield","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Fairfield - Victoria","place_name":"Fairfield","community":"Victoria","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Fairmont Hot Springs","place_name":"Fairmont Hot Springs","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fairview - Okanagan-Similkameen C","place_name":"Fairview","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Fairview - Vancouver","place_name":"Fairview","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Fairview Subdivision","place_name":"Fairview Subdivision","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fairwinds","place_name":"Fairwinds","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Falkland","place_name":"Falkland","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Fallsway","place_name":"Fallsway","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"False Bay","place_name":"False Bay","community":"qathet E","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Fanny Bay - Comox Valley A","place_name":"Fanny Bay","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fanny Bay - Strathcona C","place_name":"Fanny Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Farmington","place_name":"Farmington","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Farrell Creek","place_name":"Farrell Creek","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Fauquier","place_name":"Fauquier","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Federal Ranch","place_name":"Federal Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Fellers Heights","place_name":"Fellers Heights","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Ferguson","place_name":"Ferguson","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Fern Ridge","place_name":"Fern Ridge","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ferndale","place_name":"Ferndale","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Fernie","place_name":"","community":"Fernie","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Fernlee","place_name":"Fernlee","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Fernwood","place_name":"Fernwood","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Field","place_name":"Field","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Fife","place_name":"Fife","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fifth Cabin","place_name":"Fifth Cabin","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Finlay River 6","place_name":"","community":"Finlay River 6","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Fintry","place_name":"Fintry","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Fireside","place_name":"Fireside","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Firvale","place_name":"Firvale","community":"Central Coast C","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Fishtrap 19","place_name":"","community":"Fishtrap 19","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Five Mile","place_name":"Five Mile","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Five Mile Point 3","place_name":"Five Mile Point 3","community":"Five Mile Point 3","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Five Mile Point 3","place_name":"","community":"Five Mile Point 3","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Flathead","place_name":"Flathead","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Flatrock","place_name":"Flatrock","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Flats","place_name":"Flats","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Fleetwood","place_name":"Fleetwood","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Floods","place_name":"Floods","community":"Hope","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fontas","place_name":"Fontas","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Fontas 1","place_name":"","community":"Fontas 1","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"N/A"},{"location":"Fontas 1 - Northern Rockies","place_name":"Fontas 1","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Forde","place_name":"Forde","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Foreman","place_name":"Foreman","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Forest Grove","place_name":"Forest Grove","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Forest Grove Trailer Park","place_name":"Forest Grove Trailer Park","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Forest Hills","place_name":"Forest Hills","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Forest Knolls","place_name":"Forest Knolls","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Forest Lawn Trailer Court","place_name":"Forest Lawn Trailer Court","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Forestdale","place_name":"Forestdale","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Forestglade Trailer Park","place_name":"Forestglade Trailer Park","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fort Babine","place_name":"Fort Babine","community":"Babine 6","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Fort Fraser","place_name":"Fort Fraser","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Fort George (Shelley) 2","place_name":"Fort George (Shelley) 2","community":"Fort George 2","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Fort George 2","place_name":"","community":"Fort George 2","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Fort Langley","place_name":"Fort Langley","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Fort Nelson","place_name":"Fort Nelson","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Fort Nelson 2","place_name":"","community":"Fort Nelson 2","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"N/A"},{"location":"Fort Nelson-Liard, Subd. A","place_name":"Fort Nelson-Liard, Subd. A","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Fort Rupert","place_name":"Fort Rupert","community":"Port Hardy","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Fort Rupert 1","place_name":"","community":"Fort Rupert 1","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Fort St. James","place_name":"","community":"Fort St. James","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Fort St. John","place_name":"","community":"Fort St. John","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 3"},{"location":"Fort Steele","place_name":"Fort Steele","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Fort Ware","place_name":"Fort Ware","community":"Fort Ware 1","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Fort Ware 1","place_name":"","community":"Fort Ware 1","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Fosthall","place_name":"Fosthall","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fountain","place_name":"Fountain","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Fountain 1","place_name":"Fountain 1","community":"Fountain 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 3","place_name":"Fountain 3","community":"Fountain 3","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 1","place_name":"","community":"Fountain 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 10","place_name":"","community":"Fountain 10","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 11","place_name":"","community":"Fountain 11","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 12","place_name":"","community":"Fountain 12","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 1B","place_name":"","community":"Fountain 1B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 1D","place_name":"","community":"Fountain 1D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 3","place_name":"","community":"Fountain 3","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain 3A","place_name":"","community":"Fountain 3A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain Creek 8","place_name":"","community":"Fountain Creek 8","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fountain Valley","place_name":"Fountain Valley","community":"Fountain 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Fourth Cabin","place_name":"Fourth Cabin","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Fourways Trailer Park","place_name":"Fourways Trailer Park","community":"Cowichan Valley D","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fowler","place_name":"Fowler","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Fox Mountain","place_name":"Fox Mountain","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Frames","place_name":"Frames","community":"Anmore","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Francis Peninsula","place_name":"Francis Peninsula","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"François Lake","place_name":"François Lake","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Francois Lake 7","place_name":"","community":"Francois Lake 7","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Franklin Camp","place_name":"Franklin Camp","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Franks 10","place_name":"Franks 10","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser","place_name":"Fraser","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fraser Heights","place_name":"Fraser Heights","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Fraser Lake","place_name":"","community":"Fraser Lake","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Fraser Mills","place_name":"Fraser Mills","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Fraser Valley A","place_name":"","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Fraser Valley B","place_name":"","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley C","place_name":"","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley D","place_name":"","community":"Fraser Valley D","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley E","place_name":"","community":"Fraser Valley E","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley F","place_name":"","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley G","place_name":"","community":"Fraser Valley G","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Fraser Valley H","place_name":"","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley, Subd. A","place_name":"Fraser Valley, Subd. A","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley, Subd. B","place_name":"Fraser Valley, Subd. B","community":"Fraser Valley E","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley, Subd. C","place_name":"Fraser Valley, Subd. C","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser Valley, Subd. D","place_name":"Fraser Valley, Subd. D","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Fraser Valley, Subd. E","place_name":"Fraser Valley, Subd. E","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Fraser-Fort George A","place_name":"","community":"Fraser-Fort George A","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Fraser-Fort George C","place_name":"","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Fraser-Fort George D","place_name":"","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Fraser-Fort George E","place_name":"","community":"Fraser-Fort George E","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Fraser-Fort George F","place_name":"","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Fraser-Fort George G","place_name":"","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Fraser-Fort George H","place_name":"","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Fraser-Fort George, Subd. A","place_name":"Fraser-Fort George, Subd. A","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Fraser-Fort George, Subd. B","place_name":"Fraser-Fort George, Subd. B","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Freeport Trailer Park","place_name":"Freeport Trailer Park","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"French Creek","place_name":"French Creek","community":"Nanaimo G","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Fruitvale","place_name":"","community":"Fruitvale","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Fry Creek","place_name":"Fry Creek","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Fulford Harbour","place_name":"Fulford Harbour","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Furry Creek","place_name":"Furry Creek","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Gabriola","place_name":"Gabriola","community":"Nanaimo B","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Gabriola Island","place_name":"Gabriola Island","community":"Nanaimo B","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Gabriola Island Trust Area part A","place_name":"Gabriola Island Trust Area part A","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Galena","place_name":"Galena","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Galena Bay","place_name":"Galena Bay","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Galiano Island 9","place_name":"","community":"Galiano Island 9","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Gallagher Lake","place_name":"Gallagher Lake","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Galloway","place_name":"Galloway","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Gambier Harbour","place_name":"Gambier Harbour","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Gambier Island","place_name":"Gambier Island","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Gang Ranch","place_name":"Gang Ranch","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ganges","place_name":"Ganges","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Garden","place_name":"","community":"Garden","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Garden 2","place_name":"Garden 2","community":"Garden","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Garden 2A","place_name":"Garden 2A","community":"Garden","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Garden Bay","place_name":"Garden Bay","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Garden Village","place_name":"Garden Village","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Gardner Lake Mobile Home Park","place_name":"Gardner Lake Mobile Home Park","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Garibaldi","place_name":"Garibaldi","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Garibaldi Estates","place_name":"Garibaldi Estates","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Garnet Rock Trailer Court","place_name":"Garnet Rock Trailer Court","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Garnet Valley","place_name":"Garnet Valley","community":"Summerland","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Garry Oaks","place_name":"Garry Oaks","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Gates","place_name":"Gates","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Gateway","place_name":"Gateway","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Gellatly","place_name":"Gellatly","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Genelle","place_name":"Genelle","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Genoa Bay","place_name":"Genoa Bay","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"George River","place_name":"George River","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Georgetown Mills","place_name":"Georgetown Mills","community":"Lax Kw'alaams 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Germansen Landing","place_name":"Germansen Landing","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Gerow Island","place_name":"Gerow Island","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Gerrard","place_name":"Gerrard","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Gibson Creek","place_name":"Gibson Creek","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Gibsons","place_name":"","community":"Gibsons","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Gifford","place_name":"Gifford","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Gillies Bay","place_name":"Gillies Bay","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Gilpin","place_name":"Gilpin","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Gingolx","place_name":"Gingolx","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Giscome","place_name":"Giscome","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Gitanmaax 1","place_name":"","community":"Gitanmaax 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitanyow","place_name":"Gitanyow","community":"Gitanyow 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitanyow 1","place_name":"","community":"Gitanyow 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitlaxksiip","place_name":"Gitlaxksiip","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitsegukla 1","place_name":"","community":"Gitsegukla 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitwangak 1","place_name":"","community":"Gitwangak 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitwinksihlkw","place_name":"Gitwinksihlkw","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitwinksihlkw 7","place_name":"Gitwinksihlkw 7","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Gitzault 24","place_name":"Gitzault 24","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Glacier Gulch","place_name":"Glacier Gulch","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Glade","place_name":"Glade","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Gladwin Trailer Court","place_name":"Gladwin Trailer Court","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Glen Lake","place_name":"Glen Lake","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Glen Valley","place_name":"Glen Valley","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Glen Vowell","place_name":"Glen Vowell","community":"Sik-e-dakh 2","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Glenannan","place_name":"Glenannan","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Glenbank","place_name":"Glenbank","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Glenbrooke North","place_name":"Glenbrooke North","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Glendale","place_name":"Glendale","community":"Williams Lake","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 3"},{"location":"Gleneagles","place_name":"Gleneagles","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Gleneden","place_name":"Gleneden","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Glenemma","place_name":"Glenemma","community":"Okanagan (Part) 1 - Thompson/Okanagan","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Glen-Gla-Ouch 5","place_name":"Glen-Gla-Ouch 5","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Glenlily","place_name":"Glenlily","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Glenmerry","place_name":"Glenmerry","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Glenmore","place_name":"Glenmore","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Glenora - Cowichan Valley E","place_name":"Glenora","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Glenora - Kitimat-Stikine D","place_name":"Glenora","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Glenrosa","place_name":"Glenrosa","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Glentanna","place_name":"Glentanna","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Glimpse Lake","place_name":"Glimpse Lake","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Gold Bridge","place_name":"Gold Bridge","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Gold River","place_name":"","community":"Gold River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Golden","place_name":"","community":"Golden","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Goldstream","place_name":"Goldstream","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Good Hope","place_name":"Good Hope","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Good Hope Lake","place_name":"","community":"Good Hope Lake","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Goodlow","place_name":"Goodlow","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Goose Bay","place_name":"Goose Bay","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Gordon Head","place_name":"Gordon Head","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Gordon River","place_name":"Gordon River","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Gordon River 2","place_name":"","community":"Gordon River 2","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Gorge Harbour","place_name":"Gorge Harbour","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Gossen Creek","place_name":"Gossen Creek","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Gossip Island","place_name":"Gossip Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Gowlland Harbour","place_name":"Gowlland Harbour","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Graffunder Trailer Park","place_name":"Graffunder Trailer Park","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Gramsons","place_name":"Gramsons","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Grand Forks","place_name":"","community":"Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Grand Haven","place_name":"Grand Haven","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Grand Rapids","place_name":"Grand Rapids","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Granduc","place_name":"Granduc","community":"Stewart","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Grandview","place_name":"Grandview","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Grandview Bench","place_name":"Grandview Bench","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Grandview-Woodlands","place_name":"Grandview-Woodlands","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Granisle","place_name":"","community":"Granisle","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Granite","place_name":"Granite","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Granite Bay","place_name":"Granite Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Granite Falls","place_name":"Granite Falls","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Granite Trailer Park","place_name":"Granite Trailer Park","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Grantham","place_name":"Grantham","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Granthams Landing","place_name":"Granthams Landing","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Grasmere","place_name":"Grasmere","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Grassy Plains","place_name":"Grassy Plains","community":"Cheslatta 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Gravelle Ferry","place_name":"Gravelle Ferry","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Gray Creek","place_name":"Gray Creek","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Great Central","place_name":"Great Central","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Great Central Lake","place_name":"Great Central Lake","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Greata","place_name":"Greata","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Greater Vancouver A","place_name":"Greater Vancouver A","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Greater Vancouver C","place_name":"Greater Vancouver C","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Greater Vancouver, Subd. A","place_name":"Greater Vancouver, Subd. A","community":"North Vancouver - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Green Acres Trailer Park - Central Kootenay J","place_name":"Green Acres Trailer Park","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Green Acres Trailer Park - Columbia-Shuswap E","place_name":"Green Acres Trailer Park","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Green Bay Resort","place_name":"Green Bay Resort","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Green Cove","place_name":"Green Cove","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Greendale","place_name":"Greendale","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Greenwood","place_name":"","community":"Greenwood","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Greenwood Mobile Park","place_name":"Greenwood Mobile Park","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Grindrod","place_name":"Grindrod","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Groundbirch","place_name":"Groundbirch","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Guhthe Tah 12","place_name":"","community":"Guhthe Tah 12","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Guildford","place_name":"Guildford","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Gun Lake","place_name":"Gun Lake","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Gundy","place_name":"Gundy","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Gwayasdums 1","place_name":"","community":"Gwayasdums 1","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hagensborg","place_name":"Hagensborg","community":"Central Coast C","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hagwilget","place_name":"Hagwilget","community":"Hagwilget 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Hagwilget 1","place_name":"","community":"Hagwilget 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Haig","place_name":"Haig","community":"Schkam 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Haina","place_name":"Haina","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Halalt 2","place_name":"","community":"Halalt 2","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Halfmoon Bay","place_name":"Halfmoon Bay","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Halfway Graham Subdivision","place_name":"Halfway Graham Subdivision","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Halfway Ranch","place_name":"Halfway Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Halfway River 168","place_name":"","community":"Halfway River 168","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Halhalaeden","place_name":"","community":"Halhalaeden","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Halhalaeden 14","place_name":"Halhalaeden 14","community":"Halhalaeden","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Halhalaeden 14A","place_name":"Halhalaeden 14A","community":"Halhalaeden","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Hall","place_name":"Hall","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Halyn Trailer Court","place_name":"Halyn Trailer Court","community":"Canal Flats","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hamilton Creek 2","place_name":"","community":"Hamilton Creek 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Hamilton Creek 7","place_name":"Hamilton Creek 7","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Hanbury","place_name":"Hanbury","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hanceville","place_name":"Hanceville","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Haney","place_name":"Haney","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Happy Valley","place_name":"Happy Valley","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Happy Valley Trailer Park","place_name":"Happy Valley Trailer Park","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Harbour Chines","place_name":"Harbour Chines","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Harbour Village","place_name":"Harbour Village","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hardwicke Island","place_name":"Hardwicke Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Harmac","place_name":"Harmac","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Harmony Heights Trailer Park","place_name":"Harmony Heights Trailer Park","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Harris 3","place_name":"","community":"Harris 3","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Harrison Hot Springs","place_name":"","community":"Harrison Hot Springs","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Harrison Mills","place_name":"Harrison Mills","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Harrogate","place_name":"Harrogate","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Harrop","place_name":"Harrop","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hart Highlands","place_name":"Hart Highlands","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Hartley Bay","place_name":"Hartley Bay","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Harwood Island 2","place_name":"Harwood Island 2","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hasler Flat","place_name":"Hasler Flat","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hasler Flats Subdivision","place_name":"Hasler Flats Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hastings-Sunrise","place_name":"Hastings-Sunrise","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hatzic","place_name":"Hatzic","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hawkins Lake Subdivision","place_name":"Hawkins Lake Subdivision","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Hayview Mobile Home","place_name":"Hayview Mobile Home","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Hayward Subdivision","place_name":"Hayward Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hazelmere","place_name":"Hazelmere","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hazelton","place_name":"","community":"Hazelton","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Headquarters","place_name":"Headquarters","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Headwaters Ranch","place_name":"Headwaters Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Health Bay","place_name":"Health Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hecate","place_name":"Hecate","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hedley","place_name":"Hedley","community":"Okanagan-Similkameen G","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Heffley Creek","place_name":"Heffley Creek","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Hells Gate","place_name":"Hells Gate","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Hemlock Valley","place_name":"Hemlock Valley","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Hendrix Lake","place_name":"Hendrix Lake","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Henry And Ann Trailer Park","place_name":"Henry And Ann Trailer Park","community":"Cowichan Valley I","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Heriot Bay","place_name":"Heriot Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hesquiat","place_name":"Hesquiat","community":"Hesquiat 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hesquiat 1","place_name":"","community":"Hesquiat 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Heydon Bay","place_name":"Heydon Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hickethier Ranch","place_name":"Hickethier Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hideway Trailer Court","place_name":"Hideway Trailer Court","community":"Revelstoke","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"High Bar 1","place_name":"","community":"High Bar 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Highland Valley Subdivision","place_name":"Highland Valley Subdivision","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Highlands","place_name":"","community":"Highlands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 3"},{"location":"Hiina'is","place_name":"Hiina'is","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Hillcrest","place_name":"Hillcrest","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Hilliers","place_name":"Hilliers","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Hills","place_name":"Hills","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hillside Mobile Home Park","place_name":"Hillside Mobile Home Park","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Hilltop Ranch","place_name":"Hilltop Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hippa","place_name":"Hippa","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Hisnit","place_name":"Hisnit","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hitacu","place_name":"Hitacu","community":"Ittatsoo 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hi'tatis","place_name":"Hi'tatis","community":"Elhlateese 2","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hiusta Meadow","place_name":"Hiusta Meadow","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Hixon","place_name":"Hixon","community":"Fraser-Fort George E","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Hkusam","place_name":"Hkusam","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Holachten 8","place_name":"","community":"Holachten 8","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Holberg","place_name":"Holberg","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Holiday Family Trailer Park","place_name":"Holiday Family Trailer Park","community":"Priest's Valley 6","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Hollyburn","place_name":"Hollyburn","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Holmwood","place_name":"Holmwood","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Homalco 9","place_name":"","community":"Homalco 9","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Homestead Trailer Park","place_name":"Homestead Trailer Park","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Homfray Creek","place_name":"Homfray Creek","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Honeymoon Bay","place_name":"Honeymoon Bay","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Honeymoon Creek","place_name":"Honeymoon Creek","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Hoodoos","place_name":"Hoodoos","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hoo-ii","place_name":"Hoo-ii","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Hope","place_name":"","community":"Hope","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Hope Bay","place_name":"Hope Bay","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Hope Island 1","place_name":"","community":"Hope Island 1","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hopetown","place_name":"Hopetown","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hopetown 10A","place_name":"","community":"Hopetown 10A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Hopington","place_name":"Hopington","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hopkins Landing","place_name":"Hopkins Landing","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Horlick Point","place_name":"Horlick Point","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hornby Island","place_name":"Hornby Island","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Horsefly","place_name":"Horsefly","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Horseshoe Bay","place_name":"Horseshoe Bay","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hosmatqts'os","place_name":"Hosmatqts'os","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Hosmer","place_name":"Hosmer","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hosmer Trailer Park","place_name":"Hosmer Trailer Park","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hospital Hill","place_name":"Hospital Hill","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Hot Springs Cove","place_name":"Hot Springs Cove","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Houpsitas","place_name":"Houpsitas","community":"Houpsitas 6","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Houpsitas 6","place_name":"","community":"Houpsitas 6","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Houston","place_name":"","community":"Houston","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Houston Trailer Court","place_name":"Houston Trailer Court","community":"Houston","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Howser","place_name":"Howser","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hudson Hope","place_name":"Hudson Hope","community":"Hudson's Hope","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hudson's Hope","place_name":"","community":"Hudson's Hope","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Hullcar","place_name":"Hullcar","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Humpback Bay","place_name":"Humpback Bay","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Huntingdon","place_name":"Huntingdon","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Hunts Inlet","place_name":"Hunts Inlet","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Hupel","place_name":"Hupel","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Huscroft","place_name":"Huscroft","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Hustalen 1","place_name":"","community":"Hustalen 1","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Hutchinson","place_name":"Hutchinson","community":"Cowichan Valley C","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Hu'ul","place_name":"Hu'ul","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Hyacinthe Bay","place_name":"Hyacinthe Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hyde Creek","place_name":"Hyde Creek","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Hydraulic","place_name":"Hydraulic","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Hyland Post","place_name":"Hyland Post","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Hyland Ranch","place_name":"Hyland Ranch","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Idabel Lake","place_name":"Idabel Lake","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Indian Rock","place_name":"Indian Rock","community":"Okanagan-Similkameen E","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ingenika Mine","place_name":"Ingenika Mine","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Ingenika Point","place_name":"","community":"Ingenika Point","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Inkahtsaph 6","place_name":"","community":"Inkahtsaph 6","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Inkaneep","place_name":"Inkaneep","community":"Osoyoos 1","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Inkluckcheen","place_name":"","community":"Inkluckcheen","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Inkluckcheen 21","place_name":"Inkluckcheen 21","community":"Inkluckcheen","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Inkluckcheen 21B","place_name":"Inkluckcheen 21B","community":"Inkluckcheen","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Inklyuhkinatko 2","place_name":"","community":"Inklyuhkinatko 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Invermere","place_name":"","community":"Invermere","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Ioco","place_name":"Ioco","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Iron Bay","place_name":"Iron Bay","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Iron Mask Trailer Park","place_name":"Iron Mask Trailer Park","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Irvines Landing","place_name":"Irvines Landing","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Isaac (Gale Lake) 8","place_name":"Isaac (Gale Lake) 8","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Isidore's Ranch 4","place_name":"","community":"Isidore's Ranch 4","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Iskut","place_name":"Iskut","community":"Iskut 6","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Iskut 6","place_name":"","community":"Iskut 6","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Island Cache","place_name":"Island Cache","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Isle Pierre","place_name":"Isle Pierre","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Ittatsoo 1","place_name":"","community":"Ittatsoo 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Ivy Green Mobile Home Park","place_name":"Ivy Green Mobile Home Park","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Jackfish Lake Subdivision","place_name":"Jackfish Lake Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Jackman","place_name":"Jackman","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Jackpine Flats","place_name":"Jackpine Flats","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Jackson Bay","place_name":"Jackson Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Jacksons","place_name":"Jacksons","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Jade City","place_name":"Jade City","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Jaffray","place_name":"Jaffray","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Jaffray Estates","place_name":"Jaffray Estates","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"James Bay","place_name":"James Bay","community":"Victoria","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Jean Baptiste 28","place_name":"","community":"Jean Baptiste 28","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Jedway","place_name":"Jedway","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Jellicoe","place_name":"Jellicoe","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Jersey","place_name":"Jersey","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Jervis Inlet","place_name":"Jervis Inlet","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Jesmond","place_name":"Jesmond","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Jeune Landing","place_name":"Jeune Landing","community":"Port Alice","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Jim Smith Lake and Area","place_name":"Jim Smith Lake and Area","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Joeyaska 2","place_name":"","community":"Joeyaska 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Johnson","place_name":"Johnson","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Johnson Heights","place_name":"Johnson Heights","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Johnsons Landing","place_name":"Johnsons Landing","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Johny Sticks 2","place_name":"","community":"Johny Sticks 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Jordan River","place_name":"Jordan River","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Juan de Fuca","place_name":"Juan de Fuca","community":"Juan de Fuca (Part 2)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Juan de Fuca (Part 1)","place_name":"","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Juan de Fuca (Part 2)","place_name":"","community":"Juan de Fuca (Part 2)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Jumbo Glacier","place_name":"Jumbo Glacier","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"June Springs Estates","place_name":"June Springs Estates","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Juniper Ridge","place_name":"Juniper Ridge","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Jura","place_name":"Jura","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Juskatla","place_name":"Juskatla","community":"Port Clements","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Ka:ook","place_name":"Ka:ook","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ka:oop:insh","place_name":"Ka:oop:insh","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ka:youk","place_name":"Ka:youk","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kahmoose 4","place_name":"","community":"Kahmoose 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Kahntah","place_name":"Kahntah","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Kahntah 3","place_name":"","community":"Kahntah 3","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"N/A"},{"location":"Kaisun","place_name":"Kaisun","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kakawis","place_name":"Kakawis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kaleden","place_name":"Kaleden","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kaleva","place_name":"Kaleva","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kamloops","place_name":"","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Kamloops 1","place_name":"","community":"Kamloops 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kanaka Bar","place_name":"","community":"Kanaka Bar","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kanaka Bar - Thompson-Nicola I (Blue Sky Country)","place_name":"Kanaka Bar","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kanaka Bar 1A","place_name":"Kanaka Bar 1A","community":"Kanaka Bar","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kanaka Bar 2","place_name":"Kanaka Bar 2","community":"Kanaka Bar","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Karlukwees","place_name":"Karlukwees","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Karlukwees 1","place_name":"Karlukwees 1","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kaslo","place_name":"","community":"Kaslo","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Katit 1","place_name":"","community":"Katit 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Katzie 1","place_name":"","community":"Katzie 1","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Katzie 2","place_name":"","community":"Katzie 2","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Ka-x-shiitl","place_name":"Ka-x-shiitl","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Keating","place_name":"Keating","community":"Central Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Keats Island","place_name":"Keats Island","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Kedleston","place_name":"Kedleston","community":"North Okanagan C","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Keekwillie Subdivision","place_name":"Keekwillie Subdivision","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Keekwillie Trailer Park","place_name":"Keekwillie Trailer Park","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Keeshan 9","place_name":"Keeshan 9","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Keithley Creek","place_name":"Keithley Creek","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Keith-Lynn","place_name":"Keith-Lynn","community":"North Vancouver - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kelly Lake - Peace River D","place_name":"Kelly Lake","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Kelly Lake - Thompson-Nicola E (Bonaparte Plateau)","place_name":"Kelly Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Kelly Lake Road Estates","place_name":"Kelly Lake Road Estates","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Kelowna","place_name":"","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Kelvin","place_name":"Kelvin","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kemano","place_name":"Kemano","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kemano Beach","place_name":"Kemano Beach","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kendrick Camp","place_name":"Kendrick Camp","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kensington-Cedar Cottage","place_name":"Kensington-Cedar Cottage","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kent","place_name":"","community":"Kent","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Keremeos","place_name":"","community":"Keremeos","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kerr Creek","place_name":"Kerr Creek","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kerrisdale","place_name":"Kerrisdale","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kershaw Subdivision","place_name":"Kershaw Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kersley","place_name":"Kersley","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Kettle Valley","place_name":"Kettle Valley","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Khahanie Trailer Court","place_name":"Khahanie Trailer Court","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Khenipsen","place_name":"Khenipsen","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"K'i Deldel","place_name":"K'i Deldel","community":"Charley Boy's Meadow 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Kia Ora Trailer Park","place_name":"Kia Ora Trailer Park","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Kicking Horse","place_name":"Kicking Horse","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Kiikiixink'ok","place_name":"Kiikiixink'ok","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kiix aa","place_name":"Kiix aa","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kiix-in","place_name":"Kiix-in","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kilbella Bay","place_name":"Kilbella Bay","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kildala Arm","place_name":"Kildala Arm","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kildonan","place_name":"Kildonan","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kilgard","place_name":"Kilgard","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kilkerran","place_name":"Kilkerran","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Killarney","place_name":"Killarney","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Killiney Beach","place_name":"Killiney Beach","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Kil-pah-las 3","place_name":"","community":"Kil-pah-las 3","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kimberley","place_name":"","community":"Kimberley","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kimsquit","place_name":"Kimsquit","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kincolith 14","place_name":"Kincolith 14","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kingcome","place_name":"Kingcome","community":"Quaee 7","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kingcome Inlet - Mount Waddington A","place_name":"Kingcome Inlet","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Kingcome Inlet - Quaee 7","place_name":"Kingcome Inlet","community":"Quaee 7","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kingfisher","place_name":"Kingfisher","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kingsgate","place_name":"Kingsgate","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kinnaird","place_name":"Kinnaird","community":"Castlegar","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Kippase 2","place_name":"","community":"Kippase 2","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kispiox","place_name":"Kispiox","community":"Kispiox 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kispiox 1","place_name":"","community":"Kispiox 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kispiox Valley","place_name":"Kispiox Valley","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitamaat 2","place_name":"","community":"Kitamaat 2","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitamaat Village","place_name":"Kitamaat Village","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitasoo 1","place_name":"","community":"Kitasoo 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitchener","place_name":"Kitchener","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kitimat","place_name":"","community":"Kitimat","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 2"},{"location":"Kitimat-Stikine A","place_name":"","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine B","place_name":"","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine C (Part 1)","place_name":"","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine C (Part 2)","place_name":"","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine D","place_name":"","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine E","place_name":"","community":"Kitimat-Stikine E","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine F","place_name":"","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine, Subd. A","place_name":"Kitimat-Stikine, Subd. A","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine, Subd. B","place_name":"Kitimat-Stikine, Subd. B","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine, Subd. C","place_name":"Kitimat-Stikine, Subd. C","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitimat-Stikine, Subd. D","place_name":"Kitimat-Stikine, Subd. D","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitkatla","place_name":"Kitkatla","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitsault","place_name":"Kitsault","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitseguecla","place_name":"Kitseguecla","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kitselas 1","place_name":"","community":"Kitselas 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitsilano","place_name":"Kitsilano","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Kitsumkalum","place_name":"Kitsumkalum","community":"Terrace","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 3"},{"location":"Kitsumkaylum 1","place_name":"","community":"Kitsumkaylum 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitty Coleman","place_name":"Kitty Coleman","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kitwanga","place_name":"Kitwanga","community":"Gitwangak 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kitzowit 20","place_name":"","community":"Kitzowit 20","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kiusta","place_name":"Kiusta","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Klahkamich 17","place_name":"","community":"Klahkamich 17","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Klahkowit 5","place_name":"Klahkowit 5","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kleanza Creek Subdivision","place_name":"Kleanza Creek Subdivision","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kleecoot","place_name":"Kleecoot","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kleena Kleene","place_name":"Kleena Kleene","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Kleetlekut 22","place_name":"","community":"Kleetlekut 22","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Klehkoot 2","place_name":"","community":"Klehkoot 2","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kleindale","place_name":"Kleindale","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Klemtu","place_name":"Klemtu","community":"Kitasoo 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Klickkumcheen 18","place_name":"","community":"Klickkumcheen 18","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kliikliihuwis","place_name":"Kliikliihuwis","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Klit-kle-mah-ah","place_name":"Klit-kle-mah-ah","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kloklowuck 7","place_name":"","community":"Kloklowuck 7","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kluachon Lake 1","place_name":"Kluachon Lake 1","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kluskus 1","place_name":"","community":"Kluskus 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Knutsford","place_name":"Knutsford","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Kobes","place_name":"Kobes","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Kokish","place_name":"Kokish","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Koksilah","place_name":"Koksilah","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kookswees","place_name":"Kookswees","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kootenay 1","place_name":"","community":"Kootenay 1","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Kootenay Bay","place_name":"Kootenay Bay","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Boundary A","place_name":"","community":"Kootenay Boundary A","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary B","place_name":"Kootenay Boundary B","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary B / Lower Columbia-Old-Glory","place_name":"","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary C","place_name":"Kootenay Boundary C","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Boundary C / Christina Lake","place_name":"","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Boundary D","place_name":"Kootenay Boundary D","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Boundary D / Rural Grand Forks","place_name":"","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Boundary E","place_name":"Kootenay Boundary E","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary E / West Boundary","place_name":"","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary, Subd. A","place_name":"Kootenay Boundary, Subd. A","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Boundary, Subd. B","place_name":"Kootenay Boundary, Subd. B","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Kootenay Cove Mobile Village","place_name":"Kootenay Cove Mobile Village","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Crossing","place_name":"Kootenay Crossing","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kootenay Flats West","place_name":"Kootenay Flats West","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kopchitchin 2","place_name":"","community":"Kopchitchin 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Kowtain 17","place_name":"","community":"Kowtain 17","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"K'oxsinqii","place_name":"K'oxsinqii","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kragmont","place_name":"Kragmont","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Krestova","place_name":"Krestova","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ksan","place_name":"Ksan","community":"Gitanmaax 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kshish 4","place_name":"","community":"Kshish 4","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kuldo","place_name":"Kuldo","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Kulkayu (Hartley Bay) 4","place_name":"","community":"Kulkayu (Hartley Bay) 4","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kulkayu (Hartley Bay) 4A","place_name":"","community":"Kulkayu (Hartley Bay) 4A","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kulkayu 4","place_name":"Kulkayu 4","community":"Kulkayu (Hartley Bay) 4","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kulspai 6","place_name":"","community":"Kulspai 6","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Kumcheen 1","place_name":"","community":"Kumcheen 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Kung","place_name":"Kung","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Kuper Island 7","place_name":"Kuper Island 7","community":"Penelakut Island 7","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Kushya Creek 7","place_name":"Kushya Creek 7","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Kuskonook","place_name":"Kuskonook","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Kuthlalth 3","place_name":"Kuthlalth 3","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Kuz Che 5","place_name":"Kuz Che 5","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Kwawkwawapilt 6","place_name":"","community":"Kwawkwawapilt 6","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Kwinaquth","place_name":"Kwinaquth","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kwisitis","place_name":"Kwisitis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Kye Bay","place_name":"Kye Bay","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Kyuquot","place_name":"Kyuquot","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Lac la Hache","place_name":"Lac la Hache","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lac Le Jeune","place_name":"Lac Le Jeune","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lachkaltsap 9","place_name":"Lachkaltsap 9","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Ladner","place_name":"Ladner","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ladysmith","place_name":"","community":"Ladysmith","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Laidlaw","place_name":"Laidlaw","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Lakahahmen 11","place_name":"","community":"Lakahahmen 11","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Lake Buntzen","place_name":"Lake Buntzen","community":"Anmore","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Lake Country","place_name":"","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Lake Cowichan","place_name":"","community":"Lake Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Lake Errock","place_name":"Lake Errock","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Lake Hill","place_name":"Lake Hill","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Lake Kathlyn","place_name":"Lake Kathlyn","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Lakelse Lake","place_name":"Lakelse Lake","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Lakeshore Highlands","place_name":"Lakeshore Highlands","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Laketon","place_name":"Laketon","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Laketown 3","place_name":"","community":"Laketown 3","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Lakeview Heights","place_name":"Lakeview Heights","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Lambourn Trailer Park","place_name":"Lambourn Trailer Park","community":"Cowichan Valley D","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Lamming Mills","place_name":"Lamming Mills","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lang Bay","place_name":"Lang Bay","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Langdale","place_name":"Langdale","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Langford","place_name":"","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Langley - City","place_name":"","community":"Langley - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Langley - District municipality","place_name":"","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Langley 2","place_name":"","community":"Langley 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Langley 5","place_name":"Langley 5","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Langner Trailer Park","place_name":"Langner Trailer Park","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Lantzville","place_name":"","community":"Lantzville","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Larch Hill","place_name":"Larch Hill","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lardeau","place_name":"Lardeau","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Larsons Landing","place_name":"Larsons Landing","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Laurentian Belaire","place_name":"Laurentian Belaire","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Lavington","place_name":"Lavington","community":"Coldstream","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Lawnhill","place_name":"Lawnhill","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Lax Kw'alaams","place_name":"Lax Kw'alaams","community":"Lax Kw'alaams 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Lax Kw'alaams 1","place_name":"","community":"Lax Kw'alaams 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Laxgalts'ap","place_name":"Laxgalts'ap","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Lazo","place_name":"Lazo","community":"Comox","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Lebahdo","place_name":"Lebahdo","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Lee Creek","place_name":"Lee Creek","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Leechtown","place_name":"Leechtown","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Lees Corner","place_name":"Lees Corner","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lejac","place_name":"Lejac","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Lemon Creek","place_name":"Lemon Creek","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Lemoray","place_name":"Lemoray","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Leo Creek","place_name":"Leo Creek","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Leon Creek 2","place_name":"Leon Creek 2","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Lexau Ranch","place_name":"Lexau Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Lexington Subdivision","place_name":"Lexington Subdivision","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lezbye 6","place_name":"Lezbye 6","community":"Lezbye 6","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Lezbye 6","place_name":"","community":"Lezbye 6","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Liard River","place_name":"Liard River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Liard River 3","place_name":"","community":"Liard River 3","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Lighthouse Point","place_name":"Lighthouse Point","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Likely","place_name":"Likely","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lillooet","place_name":"","community":"Lillooet","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Lillooet 1","place_name":"","community":"Lillooet 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Lily Lake","place_name":"Lily Lake","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Lincoln Park","place_name":"Lincoln Park","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Lindell","place_name":"Lindell","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Lindell Beach","place_name":"Lindell Beach","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Lindeman","place_name":"Lindeman","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Lions Bay","place_name":"","community":"Lions Bay","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Lismore Trailer Park","place_name":"Lismore Trailer Park","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Lister","place_name":"Lister","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Little Acres Trailer Court","place_name":"Little Acres Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Little Fort","place_name":"Little Fort","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Little River","place_name":"Little River","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Little Springs","place_name":"","community":"Little Springs","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Little Springs 8","place_name":"Little Springs 8","community":"Little Springs","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Little Springs 18","place_name":"Little Springs 18","community":"Little Springs","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Liumchen Village Mobile Home Park","place_name":"Liumchen Village Mobile Home Park","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Living Waters Trailer Park","place_name":"Living Waters Trailer Park","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lockeport","place_name":"Lockeport","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Lodge Pole Trailer Park","place_name":"Lodge Pole Trailer Park","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Logan Lake","place_name":"","community":"Logan Lake","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lohbiee 3","place_name":"","community":"Lohbiee 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Lone Butte","place_name":"Lone Butte","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lone Prairie","place_name":"Lone Prairie","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Long Harbour","place_name":"Long Harbour","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Longbeach","place_name":"Longbeach","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Longworth","place_name":"Longworth","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Loon Lake","place_name":"Loon Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Loon Lake Subdivision","place_name":"Loon Lake Subdivision","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Loos","place_name":"Loos","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Louis Creek","place_name":"Louis Creek","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Louis Creek 4","place_name":"","community":"Louis Creek 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Louis Squinas Ranch 14","place_name":"Louis Squinas Ranch 14","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lower China Creek","place_name":"Lower China Creek","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Lower Hat Creek 2","place_name":"","community":"Lower Hat Creek 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lower Lodge Pole Trailer Court","place_name":"Lower Lodge Pole Trailer Court","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Lower Lonsdale","place_name":"Lower Lonsdale","community":"North Vancouver - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Lower Nicola","place_name":"Lower Nicola","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lower Nicola Trailer Park","place_name":"Lower Nicola Trailer Park","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lower Post","place_name":"","community":"Lower Post","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Lower Similkameen 2","place_name":"","community":"Lower Similkameen 2","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lucerne","place_name":"Lucerne","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Lukseetsissum 9","place_name":"","community":"Lukseetsissum 9","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Lulu 5","place_name":"","community":"Lulu 5","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lumberton","place_name":"Lumberton","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Lumby","place_name":"","community":"Lumby","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lund","place_name":"Lund","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Lust Subdivision","place_name":"Lust Subdivision","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Luxton","place_name":"Luxton","community":"Langford","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Lyacksun 3","place_name":"","community":"Lyacksun 3","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Lynn Valley","place_name":"Lynn Valley","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Lynnmour","place_name":"Lynnmour","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Lynx Creek","place_name":"Lynx Creek","community":"Hudson's Hope","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Lytton","place_name":"","community":"Lytton","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lytton 27B","place_name":"Lytton 27B","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Lytton 4A","place_name":"","community":"Lytton 4A","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lytton 4E","place_name":"","community":"Lytton 4E","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lytton 9A","place_name":"","community":"Lytton 9A","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Lytton 9B","place_name":"","community":"Lytton 9B","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Maalth-sit","place_name":"Maalth-sit","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Mabel Lake","place_name":"Mabel Lake","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Macalister","place_name":"Macalister","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Mackenzie","place_name":"","community":"Mackenzie","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Macoah","place_name":"Macoah","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Macoah 1","place_name":"","community":"Macoah 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Madeira Park","place_name":"Madeira Park","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Magic Lake Estates","place_name":"Magic Lake Estates","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Magna Bay","place_name":"Magna Bay","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Magnum Mine","place_name":"Magnum Mine","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Mah:kiit","place_name":"Mah:kiit","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mahatta River","place_name":"Mahatta River","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mahmalillikullah 1","place_name":"Mahmalillikullah 1","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mahood Falls","place_name":"Mahood Falls","community":"Cariboo H","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Mahope","place_name":"Mahope","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Maht'ii'as","place_name":"Maht'ii'as","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Maillardville","place_name":"Maillardville","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Makinson","place_name":"Makinson","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Malachan 11","place_name":"","community":"Malachan 11","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Malahat","place_name":"Malahat","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Malahat 11","place_name":"","community":"Malahat 11","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Malakwa","place_name":"Malakwa","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Malakwa Trailer Park","place_name":"Malakwa Trailer Park","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Malibu","place_name":"Malibu","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Mammel Subdivision","place_name":"Mammel Subdivision","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Manca Subdivision","place_name":"Manca Subdivision","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Manning Park","place_name":"Manning Park","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Manson Creek","place_name":"Manson Creek","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Mansons Landing","place_name":"Mansons Landing","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mapes","place_name":"Mapes","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Maple Bay","place_name":"Maple Bay","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Maple Ridge","place_name":"","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Maplewood","place_name":"Maplewood","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Maq:cup","place_name":"Maq:cup","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mara","place_name":"Mara","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Marble Canyon 3","place_name":"","community":"Marble Canyon 3","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Marblehead","place_name":"Marblehead","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Margaret Bay","place_name":"Margaret Bay","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Marguerite","place_name":"Marguerite","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Marigold","place_name":"Marigold","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Marilla","place_name":"Marilla","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Marktosis","place_name":"Marktosis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Marktosis 15","place_name":"","community":"Marktosis 15","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Marne","place_name":"Marne","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Marpole","place_name":"Marpole","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Marron Valley","place_name":"Marron Valley","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Marsh Creek Area","place_name":"Marsh Creek Area","community":"Kootenay Boundary A","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Marsh Subdivision","place_name":"Marsh Subdivision","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Marshall School Junction","place_name":"Marshall School Junction","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Martin Prairie","place_name":"Martin Prairie","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Martin Valley","place_name":"Martin Valley","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mary Hill","place_name":"Mary Hill","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Marysville","place_name":"Marysville","community":"Kimberley","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Mason Creek","place_name":"Mason Creek","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Masset","place_name":"","community":"Masset","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Masset 1","place_name":"","community":"Masset 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Matilpi","place_name":"Matilpi","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Matsayno 5","place_name":"Matsayno 5","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Matsqui","place_name":"Matsqui","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Matsqui 4","place_name":"","community":"Matsqui 4","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Matsqui Main 2","place_name":"","community":"Matsqui Main 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Maurelle Island","place_name":"Maurelle Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Maxan Lake 4","place_name":"Maxan Lake 4","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Mayfair","place_name":"Mayfair","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Mayne Island","place_name":"Mayne Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mayne Island 6","place_name":"Mayne Island 6","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mayook","place_name":"Mayook","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"McBride","place_name":"","community":"McBride","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"McCalls Landing","place_name":"McCalls Landing","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"McCartney's Flat 4","place_name":"","community":"McCartney's Flat 4","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"McCulloch","place_name":"McCulloch","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"McDame","place_name":"McDame","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"McDonalds Landing","place_name":"McDonalds Landing","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"McGillivray","place_name":"McGillivray","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"McGregor","place_name":"McGregor","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"McGuire","place_name":"McGuire","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"McKearney Ranch","place_name":"McKearney Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"McKinley Landing","place_name":"McKinley Landing","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"McLean Ranch","place_name":"McLean Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"McLeese Lake","place_name":"McLeese Lake","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"McLeod Lake","place_name":"McLeod Lake","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"McLeod Lake 1","place_name":"","community":"McLeod Lake 1","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"N/A"},{"location":"McLeod Lake 5","place_name":"McLeod Lake 5","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"McLeod Subdivision","place_name":"McLeod Subdivision","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"McLure","place_name":"McLure","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"McMillan Island 6","place_name":"","community":"McMillan Island 6","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"McNab Creek","place_name":"McNab Creek","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Meachen","place_name":"Meachen","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Meadow Creek - Central Kootenay D","place_name":"Meadow Creek","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Meadow Creek - Columbia-Shuswap F","place_name":"Meadow Creek","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Meadow Lake","place_name":"Meadow Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Meadowbrook","place_name":"Meadowbrook","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Meadowbrook Estates Trailer Park","place_name":"Meadowbrook Estates Trailer Park","community":"Duck Lake 7","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Meadows","place_name":"Meadows","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Meem Quam Leese","place_name":"Meem Quam Leese","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Meldrum Creek","place_name":"Meldrum Creek","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Merritt","place_name":"","community":"Merritt","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Merville","place_name":"Merville","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Mesachie Lake","place_name":"Mesachie Lake","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mesilinka 7","place_name":"","community":"Mesilinka 7","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Metchosin","place_name":"","community":"Metchosin","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Metlakatla","place_name":"Metlakatla","community":"S1/2 Tsimpsean 2","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Metro Vancouver A","place_name":"","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Metrotown","place_name":"Metrotown","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Meziadin Junction","place_name":"Meziadin Junction","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Meziadin Subdivision","place_name":"Meziadin Subdivision","community":"Kitimat-Stikine A","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Mica Creek","place_name":"Mica Creek","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Michel Gardens 36","place_name":"","community":"Michel Gardens 36","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Middle River","place_name":"Middle River","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Middlegate","place_name":"Middlegate","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Midway","place_name":"","community":"Midway","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Mile 16 (Hwy 97)","place_name":"Mile 16 (Hwy 97)","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Mile 19 Overhead","place_name":"Mile 19 Overhead","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Mile 292 Subdivision Alaska Hwy","place_name":"Mile 292 Subdivision Alaska Hwy","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Mile 293 Alaska Highway","place_name":"Mile 293 Alaska Highway","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Mile 422 Alaska Highway","place_name":"Mile 422 Alaska Highway","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Mile 5 Alaska Highway","place_name":"Mile 5 Alaska Highway","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Mile 62 1/2","place_name":"Mile 62 1/2","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Mill Bay - Bulkley-Nechako G","place_name":"Mill Bay","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Mill Bay - Cowichan Valley A","place_name":"Mill Bay","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mill Bay - Nisga'a","place_name":"Mill Bay","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Miller Creek Subdivision","place_name":"Miller Creek Subdivision","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Miller Subdivision","place_name":"Miller Subdivision","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Millers Landing","place_name":"Millers Landing","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Millstream","place_name":"Millstream","community":"Highlands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 3"},{"location":"Milner","place_name":"Milner","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Milnes Landing","place_name":"Milnes Landing","community":"Sooke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Minaty Bay","place_name":"Minaty Bay","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Minstrel Island","place_name":"Minstrel Island","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Minto Landing","place_name":"Minto Landing","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Miocene","place_name":"Miocene","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Miracle Beach","place_name":"Miracle Beach","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Miracle Valley","place_name":"Miracle Valley","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Mirror Lake","place_name":"Mirror Lake","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Missezula Lake","place_name":"Missezula Lake","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Mission","place_name":"","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Mission 1","place_name":"","community":"Mission 1","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mission 5","place_name":"","community":"Mission 5","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mission Hill","place_name":"Mission Hill","community":"Courtenay","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Mission Island 2","place_name":"Mission Island 2","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mission Lands 17","place_name":"","community":"Mission Lands 17","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Mitchell Bay","place_name":"Mitchell Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Miworth","place_name":"Miworth","community":"Fraser-Fort George A","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Moberly Lake","place_name":"Moberly Lake","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Moha","place_name":"Moha","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Montague Harbour","place_name":"Montague Harbour","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Monte Creek","place_name":"Monte Creek","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Monte Lake","place_name":"Monte Lake","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Montizambert Wynd","place_name":"Montizambert Wynd","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Montney","place_name":"Montney","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Montrose","place_name":"","community":"Montrose","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Moose Heights","place_name":"Moose Heights","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Mooyah Bay","place_name":"Mooyah Bay","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Moresby Camp","place_name":"Moresby Camp","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Morgan Subdivision","place_name":"Morgan Subdivision","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Moricetown","place_name":"Moricetown","community":"Babine 17","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Moricetown 1","place_name":"","community":"Moricetown 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Morrissey","place_name":"Morrissey","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Mound Road Subdivision","place_name":"Mound Road Subdivision","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Mount Baldy","place_name":"Mount Baldy","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Mount Currie","place_name":"","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Currie 1","place_name":"Mount Currie 1","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Currie 2","place_name":"Mount Currie 2","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Currie 6","place_name":"Mount Currie 6","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Currie 8","place_name":"Mount Currie 8","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Currie 10","place_name":"Mount Currie 10","community":"Mount Currie","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Mount Gardner","place_name":"Mount Gardner","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Mount Lehman","place_name":"Mount Lehman","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Mount Pleasant","place_name":"Mount Pleasant","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Mount Robson","place_name":"Mount Robson","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Mount View Trailer Court","place_name":"Mount View Trailer Court","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Mount Waddington A","place_name":"","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Waddington B","place_name":"","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Waddington C","place_name":"","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Waddington D","place_name":"","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Waddington, Subd. A","place_name":"Mount Waddington, Subd. A","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Waddington, Subd. B","place_name":"Mount Waddington, Subd. B","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Mount Washington","place_name":"Mount Washington","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Mountain Peak Trailer Court","place_name":"Mountain Peak Trailer Court","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Mountain Shadow Trailer Court","place_name":"Mountain Shadow Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Mountain Shadows Trailer Court","place_name":"Mountain Shadows Trailer Court","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Mountain Station","place_name":"Mountain Station","community":"Nelson","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Mountain View","place_name":"Mountain View","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Mountain View Trailer Court","place_name":"Mountain View Trailer Court","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Mountainview Trailer Park","place_name":"Mountainview Trailer Park","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Moyie","place_name":"Moyie","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Moyie Lake","place_name":"Moyie Lake","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Moyie River","place_name":"Moyie River","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Moyie Shore Estates","place_name":"Moyie Shore Estates","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Mud Bay - Comox Valley A","place_name":"Mud Bay","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Mud Bay - Surrey","place_name":"Mud Bay","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Mud River","place_name":"Mud River","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Mudge Island","place_name":"Mudge Island","community":"Nanaimo B","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Muncho Lake","place_name":"Muncho Lake","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Murdale","place_name":"Murdale","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Murrayville","place_name":"Murrayville","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Musgrave Landing","place_name":"Musgrave Landing","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Muskwa","place_name":"Muskwa","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Musqueam 2","place_name":"","community":"Musqueam 2","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Musqueam 4","place_name":"","community":"Musqueam 4","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Myra","place_name":"Myra","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Myrtle Point","place_name":"Myrtle Point","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ná:mint","place_name":"Ná:mint","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nadu","place_name":"Nadu","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Nahmint","place_name":"Nahmint","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Nahun","place_name":"Nahun","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Nak'azdli","place_name":"","community":"Nak'azdli","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Nak'azdli (Necoslie 1)","place_name":"Nak'azdli (Necoslie 1)","community":"Nak'azdli","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Nakusp","place_name":"","community":"Nakusp","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Nalos Landing","place_name":"Nalos Landing","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Namu","place_name":"Namu","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nanaimo","place_name":"","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Nanaimo A","place_name":"","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo B","place_name":"","community":"Nanaimo B","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Nanaimo C","place_name":"","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo D","place_name":"Nanaimo D","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo E","place_name":"","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo F","place_name":"","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo G","place_name":"","community":"Nanaimo G","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo H","place_name":"","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo River","place_name":"","community":"Nanaimo River","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanaimo River 2","place_name":"Nanaimo River 2","community":"Nanaimo River","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanaimo River 3","place_name":"Nanaimo River 3","community":"Nanaimo River","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanaimo River 4","place_name":"Nanaimo River 4","community":"Nanaimo River","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanaimo Town 1","place_name":"","community":"Nanaimo Town 1","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanaimo, Subd. A","place_name":"Nanaimo, Subd. A","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanaimo, Subd. B","place_name":"Nanaimo, Subd. B","community":"Nanaimo G","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Nanoose","place_name":"","community":"Nanoose","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nanoose Bay","place_name":"Nanoose Bay","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Naramata","place_name":"Naramata","community":"Okanagan-Similkameen E","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Narcosli Creek","place_name":"Narcosli Creek","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Nasookin Road Subdivision","place_name":"Nasookin Road Subdivision","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nass Camp","place_name":"Nass Camp","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Nautley (Fort Fraser) 1","place_name":"","community":"Nautley (Fort Fraser) 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Nazco 20","place_name":"","community":"Nazco 20","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Nazko","place_name":"Nazko","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Necait 6","place_name":"","community":"Necait 6","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Nechako","place_name":"Nechako","community":"Kitimat","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 2"},{"location":"Nedoats 11","place_name":"","community":"Nedoats 11","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Needles","place_name":"Needles","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nekalliston 2","place_name":"","community":"Nekalliston 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nekliptum 1","place_name":"Nekliptum 1","community":"Nekliptum 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nekliptum 1","place_name":"","community":"Nekliptum 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nelson","place_name":"","community":"Nelson","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Nelson Forks","place_name":"Nelson Forks","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Nelson Island","place_name":"Nelson Island","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Nelway","place_name":"Nelway","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nemaiah Valley","place_name":"Nemaiah Valley","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Nemiah Valley","place_name":"Nemiah Valley","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Nenagwas 12","place_name":"","community":"Nenagwas 12","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nequatque","place_name":"","community":"Nequatque","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Nequatque 1","place_name":"Nequatque 1","community":"Nequatque","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Nequatque 2","place_name":"Nequatque 2","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Nequatque 3A","place_name":"Nequatque 3A","community":"Nequatque","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Nesikep 6","place_name":"","community":"Nesikep 6","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Neskonlith","place_name":"","community":"Neskonlith","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Neskonlith 1","place_name":"Neskonlith 1","community":"Neskonlith","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Neskonlith 1 (Neskainlith 1)","place_name":"Neskonlith 1 (Neskainlith 1)","community":"Neskonlith","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Neskonlith 2","place_name":"Neskonlith 2","community":"Neskonlith","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nesters","place_name":"Nesters","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Nesuch 3","place_name":"","community":"Nesuch 3","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"New Aiyansh","place_name":"New Aiyansh","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"New Aiyansh 1","place_name":"New Aiyansh 1","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"New Barkerville","place_name":"New Barkerville","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"New Brighton","place_name":"New Brighton","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"New Clew","place_name":"New Clew","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"New Denver","place_name":"","community":"New Denver","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"New Hazelton","place_name":"","community":"New Hazelton","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"New Remo","place_name":"New Remo","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"New Settlement","place_name":"New Settlement","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"New Songhees 1A","place_name":"","community":"New Songhees 1A","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"New Westminster","place_name":"","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Newcastle","place_name":"Newcastle","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Newgate","place_name":"Newgate","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Newlands","place_name":"Newlands","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Newton","place_name":"Newton","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Niagara","place_name":"Niagara","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nichols Mobile Homes","place_name":"Nichols Mobile Homes","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Nicholson","place_name":"Nicholson","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Nickel Palm 4","place_name":"","community":"Nickel Palm 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nickeyeah 25","place_name":"","community":"Nickeyeah 25","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nicks Island","place_name":"Nicks Island","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nicola","place_name":"Nicola","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Nicola Lake 1","place_name":"","community":"Nicola Lake 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nicola Mameet 1","place_name":"","community":"Nicola Mameet 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nicomen 1","place_name":"","community":"Nicomen 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nimpkish","place_name":"Nimpkish","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nimpkish 2","place_name":"","community":"Nimpkish 2","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nimpkish Heights","place_name":"Nimpkish Heights","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nimpo Lake","place_name":"Nimpo Lake","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ninety Five Mile House","place_name":"Ninety Five Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ninety Four Mile House","place_name":"Ninety Four Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ninety Seven Mile House","place_name":"Ninety Seven Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ninety Three Mile House","place_name":"Ninety Three Mile House","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ninstints","place_name":"Ninstints","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Nisga'a","place_name":"","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Nkaih 10","place_name":"","community":"Nkaih 10","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nohomeen 23","place_name":"","community":"Nohomeen 23","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nooaitch 10","place_name":"","community":"Nooaitch 10","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Noonla 6","place_name":"","community":"Noonla 6","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Nootka","place_name":"Nootka","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Noralee","place_name":"Noralee","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Norgate","place_name":"Norgate","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Bay 5","place_name":"","community":"North Bay 5","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"North Bend","place_name":"North Bend","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"North Bonaparte","place_name":"North Bonaparte","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"North Bulkley","place_name":"North Bulkley","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"North Campbell River","place_name":"North Campbell River","community":"Campbell River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"North Coast A","place_name":"","community":"North Coast A","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"North Coast C","place_name":"","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"North Coast D","place_name":"","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"North Coast E","place_name":"","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"North Cowichan","place_name":"","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"North Delta","place_name":"North Delta","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Galiano","place_name":"North Galiano","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"North Kamloops","place_name":"North Kamloops","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"North Lonsdale","place_name":"North Lonsdale","community":"North Vancouver - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Nechako","place_name":"North Nechako","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"North Okanagan B","place_name":"","community":"North Okanagan B","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"North Okanagan C","place_name":"","community":"North Okanagan C","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"North Okanagan D","place_name":"","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"North Okanagan E","place_name":"","community":"North Okanagan E","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"North Okanagan F","place_name":"","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"North Okanagan, Subd. A","place_name":"North Okanagan, Subd. A","community":"North Okanagan F","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"North Okanagan, Subd. B","place_name":"North Okanagan, Subd. B","community":"North Okanagan E","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"North Pender Island","place_name":"North Pender Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"North Pine","place_name":"North Pine","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"North Poplar","place_name":"North Poplar","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Saanich","place_name":"","community":"North Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"North Star","place_name":"North Star","community":"Kimberley","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"North Tacla Lake","place_name":"","community":"North Tacla Lake","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"North Tacla Lake 7","place_name":"North Tacla Lake 7","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"North Tacla Lake 7A","place_name":"North Tacla Lake 7A","community":"North Tacla Lake","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"North Thompson 1","place_name":"","community":"North Thompson 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"North Vancouver - City","place_name":"","community":"North Vancouver - City","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Vancouver - District municipality","place_name":"","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"North Woodlands","place_name":"North Woodlands","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Northern Rockies","place_name":"","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Northern Rockies A","place_name":"Northern Rockies A","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Northern Rockies B","place_name":"Northern Rockies B","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Northern Rockies Regional Municipality","place_name":"Northern Rockies Regional Municipality","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Northfield","place_name":"Northfield","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Northridge","place_name":"Northridge","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Notch Hill","place_name":"Notch Hill","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Nourse Subdivision","place_name":"Nourse Subdivision","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Nuchaquis","place_name":"Nuchaquis","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Nuchatl 1","place_name":"Nuchatl 1","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nuchatl 2","place_name":"Nuchatl 2","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nuchatlitz","place_name":"Nuchatlitz","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Nukko Lake","place_name":"Nukko Lake","community":"Fraser-Fort George A","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Nulki","place_name":"Nulki","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Numukamis 1","place_name":"","community":"Numukamis 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Nursery","place_name":"Nursery","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Nuuautin 2","place_name":"","community":"Nuuautin 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Nuumaqimyis","place_name":"Nuumaqimyis","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Oak Bay","place_name":"","community":"Oak Bay","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Oak Hills","place_name":"Oak Hills","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Oakridge","place_name":"Oakridge","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Oasis","place_name":"Oasis","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Oasis Trailer Court","place_name":"Oasis Trailer Court","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ocean Falls","place_name":"Ocean Falls","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Ocean Grove","place_name":"Ocean Grove","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Ocean Park","place_name":"Ocean Park","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Oclucje 7","place_name":"","community":"Oclucje 7","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Oetco Flats","place_name":"Oetco Flats","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Ogden","place_name":"Ogden","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Ohamil 1","place_name":"","community":"Ohamil 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Okanagan (Part) 1 - North Okanagan","place_name":"","community":"Okanagan (Part) 1 - North Okanagan","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Okanagan (Part) 1 - Thompson/Okanagan","place_name":"","community":"Okanagan (Part) 1 - Thompson/Okanagan","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Okanagan Centre","place_name":"Okanagan Centre","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Okanagan Falls","place_name":"Okanagan Falls","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan Landing","place_name":"Okanagan Landing","community":"Vernon","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Okanagan Mission","place_name":"Okanagan Mission","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Okanagan Terrace Trailer Park","place_name":"Okanagan Terrace Trailer Park","community":"Vernon","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Okanagan-Similkameen A","place_name":"","community":"Okanagan-Similkameen A","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen B","place_name":"","community":"Okanagan-Similkameen B","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen C","place_name":"","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen D","place_name":"","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen E","place_name":"","community":"Okanagan-Similkameen E","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen F","place_name":"","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Okanagan-Similkameen G","place_name":"","community":"Okanagan-Similkameen G","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen H","place_name":"","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen I","place_name":"","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen, Subd. A","place_name":"Okanagan-Similkameen, Subd. A","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Okanagan-Similkameen, Subd. B","place_name":"Okanagan-Similkameen, Subd. B","community":"Okanagan-Similkameen G","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Okanagan-Similkameen, Subd. C","place_name":"Okanagan-Similkameen, Subd. C","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Olalla","place_name":"Olalla","community":"Okanagan-Similkameen G","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Old Bella Bella","place_name":"Old Bella Bella","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Old Fort - Nedoats 11","place_name":"Old Fort","community":"Nedoats 11","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Old Fort - Peace River C","place_name":"Old Fort","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Old Fort Nelson","place_name":"Old Fort Nelson","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Old Hogem","place_name":"Old Hogem","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Old Massett","place_name":"Old Massett","community":"Masset 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Old Remo","place_name":"Old Remo","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Old Town","place_name":"Old Town","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Oliver","place_name":"","community":"Oliver","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Oliver's Landing","place_name":"Oliver's Landing","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Omineca 1","place_name":"","community":"Omineca 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"One Forty One Mile House","place_name":"One Forty One Mile House","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"One Hundred Mile House","place_name":"","community":"One Hundred Mile House","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Oona River","place_name":"Oona River","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Ootischenia","place_name":"Ootischenia","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ootischenia Flats","place_name":"Ootischenia Flats","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ootsa Lake","place_name":"Ootsa Lake","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Openit 27","place_name":"Openit 27","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Opitsat","place_name":"Opitsat","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Opitsat 1","place_name":"","community":"Opitsat 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Oregon Jack Creek 5","place_name":"","community":"Oregon Jack Creek 5","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Orlomah Beach","place_name":"Orlomah Beach","community":"Anmore","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Osborn","place_name":"Osborn","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Osland","place_name":"Osland","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Osoyoos","place_name":"","community":"Osoyoos","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Osoyoos 1","place_name":"","community":"Osoyoos 1","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Osprey Lake","place_name":"Osprey Lake","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Othello","place_name":"Othello","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Ots'oo-a","place_name":"Ots'oo-a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Otter Bay","place_name":"Otter Bay","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Otway","place_name":"Otway","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Ououkinsh","place_name":"Ououkinsh","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Oweekeno","place_name":"Oweekeno","community":"Katit 1","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Owen Bay","place_name":"Owen Bay","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Owl Creek","place_name":"Owl Creek","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Oxford Heights","place_name":"Oxford Heights","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Oyama","place_name":"Oyama","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Oyster Bay 12","place_name":"","community":"Oyster Bay 12","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Oyster River","place_name":"Oyster River","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Pacheena 1","place_name":"Pacheena 1","community":"Juan de Fuca (Part 2)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Pahas 3","place_name":"Pahas 3","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Paldi","place_name":"Paldi","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Palling","place_name":"Palling","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Palling 1","place_name":"","community":"Palling 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Palling 1A","place_name":"Palling 1A","community":"Palling 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Panorama","place_name":"Panorama","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Panorama Ridge","place_name":"Panorama Ridge","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Panorama Subdivision","place_name":"Panorama Subdivision","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Panorama Trailer Court","place_name":"Panorama Trailer Court","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Papyum 27","place_name":"","community":"Papyum 27","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Papyum 27A","place_name":"Papyum 27A","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Paqulh","place_name":"","community":"Paqulh","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Paradise Point","place_name":"Paradise Point","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Paradise Valley - qathet B","place_name":"Paradise Valley","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Paradise Valley - Squamish","place_name":"Paradise Valley","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Paradise Valley Trailer Court","place_name":"Paradise Valley Trailer Court","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Park Royal","place_name":"Park Royal","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Park Siding","place_name":"Park Siding","community":"Kootenay Boundary A","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Parkdale Gardens","place_name":"Parkdale Gardens","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Parkland","place_name":"Parkland","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Parksville","place_name":"","community":"Parksville","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Parkville Trailer Park","place_name":"Parkville Trailer Park","community":"Parksville","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Parsnip 5","place_name":"Parsnip 5","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Parson","place_name":"Parson","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Pashilqua 2","place_name":"","community":"Pashilqua 2","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Paska Island 3","place_name":"","community":"Paska Island 3","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Pasley Island","place_name":"Pasley Island","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Pass Creek","place_name":"Pass Creek","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Passmore","place_name":"Passmore","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Paterson","place_name":"Paterson","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Paul Lake","place_name":"Paul Lake","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Paul's Basin 2","place_name":"","community":"Paul's Basin 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Paulson","place_name":"Paulson","community":"Kootenay Boundary C / Christina Lake","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pavilion","place_name":"Pavilion","community":"Pavilion 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Pavilion 1","place_name":"","community":"Pavilion 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Pavillon Lake","place_name":"Pavillon Lake","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Paxton Valley","place_name":"Paxton Valley","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Peace River B","place_name":"","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peace River C","place_name":"","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peace River D","place_name":"","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peace River E","place_name":"","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peace River, Subd. B","place_name":"Peace River, Subd. B","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peace River, Subd. C","place_name":"Peace River, Subd. C","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Peachland","place_name":"","community":"Peachland","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Pebble Beach","place_name":"Pebble Beach","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Peejay","place_name":"Peejay","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Pemberton","place_name":"","community":"Pemberton","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Pemberton Heights","place_name":"Pemberton Heights","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Pemberton Meadows","place_name":"Pemberton Meadows","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Pemynoos 9","place_name":"","community":"Pemynoos 9","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Pender Island","place_name":"Pender Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Pendleton Bay","place_name":"Pendleton Bay","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Penelakut Island 7","place_name":"","community":"Penelakut Island 7","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Penny","place_name":"Penny","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Penticton","place_name":"Penticton","community":"Penticton","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Penticton 1","place_name":"","community":"Penticton 1","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Pentledge 2","place_name":"","community":"Pentledge 2","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Peq-Paq 22","place_name":"","community":"Peq-Paq 22","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Perow","place_name":"Perow","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Perrys","place_name":"Perrys","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Peters 1","place_name":"","community":"Peters 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Phillips Arm","place_name":"Phillips Arm","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Phoenix","place_name":"Phoenix","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Piers Island","place_name":"Piers Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Pilot Bay","place_name":"Pilot Bay","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pinantan Lake","place_name":"Pinantan Lake","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Pinchi","place_name":"Pinchi","community":"Binche 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Pinchi Lake","place_name":"Pinchi Lake","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Pine Hills Mobile Home Park","place_name":"Pine Hills Mobile Home Park","community":"Peachland","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Pine Springs","place_name":"Pine Springs","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pine Trailer Court","place_name":"Pine Trailer Court","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Pine Valley - Cariboo D","place_name":"Pine Valley","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Pine Valley - Peace River E","place_name":"Pine Valley","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Pinecrest Mobile Home Park","place_name":"Pinecrest Mobile Home Park","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Pinegrove","place_name":"Pinegrove","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Pinegrove Trailer Park","place_name":"Pinegrove Trailer Park","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Pineridge Estates","place_name":"Pineridge Estates","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pineview - Fraser-Fort George D","place_name":"Pineview","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Pineview - Peace River C","place_name":"Pineview","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Pinewood Subdivision","place_name":"Pinewood Subdivision","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Pink Mountain","place_name":"Pink Mountain","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Pioneer Mine","place_name":"Pioneer Mine","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Pioneer Subdivision","place_name":"Pioneer Subdivision","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Pitt Meadows","place_name":"","community":"Pitt Meadows","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Pixie Beach","place_name":"Pixie Beach","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Playmor Junction","place_name":"Playmor Junction","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pleasant Camp","place_name":"Pleasant Camp","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Pleasantside","place_name":"Pleasantside","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Plumper Harbour","place_name":"Plumper Harbour","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Point Holmes","place_name":"Point Holmes","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Poison Creek 17A","place_name":"","community":"Poison Creek 17A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Ponderosa Trailer Park","place_name":"Ponderosa Trailer Park","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pope Landing","place_name":"Pope Landing","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Popkum","place_name":"Popkum","community":"Fraser Valley D","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Popkum 1","place_name":"","community":"Popkum 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Poplar Creek","place_name":"Poplar Creek","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Poplar Grove","place_name":"Poplar Grove","community":"Penticton","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Porcher Island","place_name":"Porcher Island","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Porpoise Bay","place_name":"Porpoise Bay","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Port Alberni","place_name":"","community":"Port Alberni","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Port Albion","place_name":"Port Albion","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Port Alice","place_name":"","community":"Port Alice","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Port Clements","place_name":"","community":"Port Clements","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Port Coquitlam","place_name":"","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Desire","place_name":"Port Desire","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Port Douglas","place_name":"Port Douglas","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Port Edward","place_name":"","community":"Port Edward","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Port Essington","place_name":"Port Essington","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Port Guichon","place_name":"Port Guichon","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Hammond","place_name":"Port Hammond","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Hammond - Haney","place_name":"Port Hammond - Haney","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Hardy","place_name":"","community":"Port Hardy","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Port Kells","place_name":"Port Kells","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Mann","place_name":"Port Mann","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port McNeill","place_name":"","community":"Port McNeill","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Port Mellon","place_name":"Port Mellon","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Port Moody","place_name":"","community":"Port Moody","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Port Neville","place_name":"Port Neville","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Port Renfrew","place_name":"Port Renfrew","community":"Juan de Fuca (Part 2)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Port Simpson 1","place_name":"Port Simpson 1","community":"Lax Kw'alaams 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Port Washington","place_name":"Port Washington","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Porteau","place_name":"Porteau","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Porter Landing","place_name":"Porter Landing","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Portier Pass 5","place_name":"","community":"Portier Pass 5","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Porto Rico","place_name":"Porto Rico","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Pouce Coupe","place_name":"","community":"Pouce Coupe","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Powell River","place_name":"","community":"Powell River","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Powell River A","place_name":"Powell River A","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powell River B","place_name":"Powell River B","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powell River C","place_name":"Powell River C","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powell River D","place_name":"Powell River D","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powell River E","place_name":"Powell River E","community":"qathet E","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powell River, Subd. A","place_name":"Powell River, Subd. A","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Powers Addition","place_name":"Powers Addition","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Prairie Valley","place_name":"Prairie Valley","community":"Summerland","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Prairiedale","place_name":"Prairiedale","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Premier","place_name":"Premier","community":"Stewart","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Premier Lake","place_name":"Premier Lake","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Prespatou","place_name":"Prespatou","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Pressy Lake","place_name":"Pressy Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Priest's Valley 6","place_name":"","community":"Priest's Valley 6","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Prince George","place_name":"","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Prince Rupert","place_name":"","community":"Prince Rupert","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 3"},{"location":"Princeton","place_name":"","community":"Princeton","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Pritchard","place_name":"Pritchard","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Pritchard Mobile Subdivision","place_name":"Pritchard Mobile Subdivision","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Procter","place_name":"Procter","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Progress","place_name":"Progress","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Promontory","place_name":"Promontory","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Prophet River - Northern Rockies","place_name":"Prophet River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Prophet River - Prophet River 4","place_name":"Prophet River","community":"Prophet River 4","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"N/A"},{"location":"Prophet River 4","place_name":"","community":"Prophet River 4","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"N/A"},{"location":"Prospect Lake","place_name":"Prospect Lake","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Puckatholetchin 11","place_name":"","community":"Puckatholetchin 11","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Punchaw","place_name":"Punchaw","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Puntledge","place_name":"Puntledge","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Puntzi Lake 2","place_name":"","community":"Puntzi Lake 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Purden Lake","place_name":"Purden Lake","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Q'alatkú7em","place_name":"","community":"Q'alatkú7em","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"qathet A","place_name":"","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"qathet B","place_name":"","community":"qathet B","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"qathet C","place_name":"","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"qathet D","place_name":"","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"qathet E","place_name":"","community":"qathet E","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Quaaout 1","place_name":"","community":"Quaaout 1","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Quadra Loop","place_name":"Quadra Loop","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Quaee 7","place_name":"","community":"Quaee 7","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Qualicum","place_name":"","community":"Qualicum","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Qualicum Bay","place_name":"Qualicum Bay","community":"Nanaimo H","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Qualicum Beach","place_name":"","community":"Qualicum Beach","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Quamichan","place_name":"Quamichan","community":"Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Quathiaski Cove","place_name":"Quathiaski Cove","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Quatsino","place_name":"Quatsino","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Quatsino Subdivision 18","place_name":"","community":"Quatsino Subdivision 18","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Quattishe 1","place_name":"Quattishe 1","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Queen Charlotte","place_name":"","community":"Queen Charlotte","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Queens Bay","place_name":"Queens Bay","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Queens Cove","place_name":"Queens Cove","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Queens Park","place_name":"Queens Park","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Queensborough","place_name":"Queensborough","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Quesnel","place_name":"","community":"Quesnel","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Quesnel 1","place_name":"","community":"Quesnel 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Quesnel Canyon","place_name":"Quesnel Canyon","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Quesnel Forks","place_name":"Quesnel Forks","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Quesnel View","place_name":"Quesnel View","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Quick","place_name":"Quick","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Quilchena","place_name":"Quilchena","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Quin-e-ex","place_name":"Quin-e-ex","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Quinsam","place_name":"Quinsam","community":"Campbell River","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Quinsam 12","place_name":"","community":"Quinsam 12","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Race Point","place_name":"Race Point","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Radium Hot Springs","place_name":"","community":"Radium Hot Springs","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Raft River","place_name":"Raft River","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Rail Lake","place_name":"Rail Lake","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Rainbow Trailer Court","place_name":"Rainbow Trailer Court","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Rainy Hollow","place_name":"Rainy Hollow","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Ranch Park","place_name":"Ranch Park","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ranch Park Trailer Park","place_name":"Ranch Park Trailer Park","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Ranchero","place_name":"Ranchero","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Raspberry","place_name":"Raspberry","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Rayleigh","place_name":"Rayleigh","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Read Island","place_name":"Read Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Red Bluff","place_name":"Red Bluff","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Red Mountain","place_name":"Red Mountain","community":"Rossland","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Red Pass","place_name":"Red Pass","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Red Rock","place_name":"Red Rock","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Red Rose","place_name":"Red Rose","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Redroofs","place_name":"Redroofs","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Redstone","place_name":"Redstone","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Redstone Flat 1","place_name":"","community":"Redstone Flat 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Refuge Cove","place_name":"Refuge Cove","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Refuge Cove 6","place_name":"","community":"Refuge Cove 6","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Reid Lake","place_name":"Reid Lake","community":"Fraser-Fort George A","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Remac","place_name":"Remac","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Remo","place_name":"Remo","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Renata","place_name":"Renata","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Rendez-Vous Island","place_name":"Rendez-Vous Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Renfrew-Collingwood","place_name":"Renfrew-Collingwood","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Rennie Subdivision","place_name":"Rennie Subdivision","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Retallack","place_name":"Retallack","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Revelstoke","place_name":"","community":"Revelstoke","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Rhone","place_name":"Rhone","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Rich Bar","place_name":"Rich Bar","community":"Cariboo A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Richmond","place_name":"","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ridgedale","place_name":"Ridgedale","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Riley Park","place_name":"Riley Park","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Riondel","place_name":"Riondel","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Riske Creek","place_name":"Riske Creek","community":"Cariboo K","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Riva Ridge Trailer Park","place_name":"Riva Ridge Trailer Park","community":"Penticton 1","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"River Bend Trailer Court","place_name":"River Bend Trailer Court","community":"Revelstoke","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"River Jordan","place_name":"River Jordan","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"River Springs","place_name":"River Springs","community":"Port Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Rivers Inlet","place_name":"Rivers Inlet","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Rivershore","place_name":"Rivershore","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Riverside Trailer Court","place_name":"Riverside Trailer Court","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Rivervale","place_name":"Rivervale","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Roberts Creek","place_name":"Roberts Creek","community":"Sunshine Coast D","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Robson","place_name":"Robson","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Robson West","place_name":"Robson West","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Roche Lake Resort","place_name":"Roche Lake Resort","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Rock Bay","place_name":"Rock Bay","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Rock Creek","place_name":"Rock Creek","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Rockyview","place_name":"Rockyview","community":"Cranbrook","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Roe Lake","place_name":"Roe Lake","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Rogers Pass","place_name":"Rogers Pass","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Rolla","place_name":"Rolla","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Rolling Hills Park","place_name":"Rolling Hills Park","community":"Vernon","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Roosville","place_name":"Roosville","community":"Tobacco Plains 2","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Rose Harbour","place_name":"Rose Harbour","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Rose Lake","place_name":"Rose Lake","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Rose Prairie","place_name":"Rose Prairie","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Rosebery","place_name":"Rosebery","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Rosedale","place_name":"Rosedale","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Rosen Lake Trailer Court","place_name":"Rosen Lake Trailer Court","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ross Spur","place_name":"Ross Spur","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Rossland","place_name":"","community":"Rossland","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Rosswood","place_name":"Rosswood","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Rough Bay","place_name":"Rough Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Round Lake","place_name":"Round Lake","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Round Prairie","place_name":"Round Prairie","community":"Elkford","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Roy","place_name":"Roy","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Royal Oak","place_name":"Royal Oak","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Royston","place_name":"Royston","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Ruault Road Subdivision","place_name":"Ruault Road Subdivision","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ruby Creek","place_name":"Ruby Creek","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Ruby Creek 2","place_name":"","community":"Ruby Creek 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Rumble Beach","place_name":"Rumble Beach","community":"Port Alice","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Rupert","place_name":"Rupert","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Ruskin","place_name":"Ruskin","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Rutland","place_name":"Rutland","community":"Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Ryder Lake","place_name":"Ryder Lake","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Rykerts","place_name":"Rykerts","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ryter's Trailer Court","place_name":"Ryter's Trailer Court","community":"Columbia-Shuswap A","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"S1/2 Tsimpsean 2","place_name":"","community":"S1/2 Tsimpsean 2","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Saaiyouck 6","place_name":"Saaiyouck 6","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Saanich","place_name":"","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Saanichton","place_name":"Saanichton","community":"Central Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Sachawil","place_name":"Sachawil","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Sachsa","place_name":"Sachsa","community":"Sachsa 4","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Sachsa 4","place_name":"","community":"Sachsa 4","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Sachteen","place_name":"","community":"Sachteen","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Sachteen 2","place_name":"Sachteen 2","community":"Sachteen","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Sachteen 2A","place_name":"Sachteen 2A","community":"Sachteen","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Saddle Rock 9","place_name":"","community":"Saddle Rock 9","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Sahali","place_name":"Sahali","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Sahara Heights","place_name":"Sahara Heights","community":"Port Alberni","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Sahhaltkum 4","place_name":"","community":"Sahhaltkum 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Sahtlam","place_name":"Sahtlam","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Salmo","place_name":"","community":"Salmo","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Salmon Arm","place_name":"","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Salmon Beach","place_name":"Salmon Beach","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Salmon River 1","place_name":"","community":"Salmon River 1","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Salmon River Meadow 7","place_name":"","community":"Salmon River Meadow 7","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Salmon Valley","place_name":"Salmon Valley","community":"Fraser-Fort George A","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Saloon","place_name":"Saloon","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Saltair","place_name":"Saltair","community":"Cowichan Valley G","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Saltery Bay","place_name":"Saltery Bay","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Saltspring Island","place_name":"","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Samahquam 1","place_name":"Samahquam 1","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"San Josef","place_name":"San Josef","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Sanca","place_name":"Sanca","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sanderson Site","place_name":"Sanderson Site","community":"Quesnel","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Sandon","place_name":"Sandon","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sandspit","place_name":"Sandspit","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Sandwick","place_name":"Sandwick","community":"Courtenay","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Sandy Beach Resort","place_name":"Sandy Beach Resort","community":"Priest's Valley 6","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Sandy Cove","place_name":"Sandy Cove","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sandy Harry 4","place_name":"","community":"Sandy Harry 4","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Sandy Point","place_name":"Sandy Point","community":"Switsemalph","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Sandyville","place_name":"Sandyville","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Sapperton","place_name":"Sapperton","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Saratoga Beach","place_name":"Saratoga Beach","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Sardis","place_name":"Sardis","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Sarita","place_name":"Sarita","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Saseenos","place_name":"Saseenos","community":"Sooke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Saturna","place_name":"Saturna","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Saturna Island","place_name":"Saturna Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Savarie Subdivision","place_name":"Savarie Subdivision","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Savona","place_name":"Savona","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sayward","place_name":"","community":"Sayward","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Schaltuuch 27","place_name":"Schaltuuch 27","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Schelowat 1","place_name":"","community":"Schelowat 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Schemenauer Subdivision","place_name":"Schemenauer Subdivision","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Schkam 2","place_name":"","community":"Schkam 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Scotch Creek","place_name":"Scotch Creek","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Scotch Creek 4","place_name":"","community":"Scotch Creek 4","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Scotia Bay","place_name":"Scotia Bay","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Scott Cove","place_name":"Scott Cove","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Scotties Trailer Park","place_name":"Scotties Trailer Park","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Scotty Creek","place_name":"Scotty Creek","community":"Central Okanagan","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Scowlitz 1","place_name":"","community":"Scowlitz 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Seabird Island","place_name":"","community":"Seabird Island","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Seabird Mobile Home Park","place_name":"Seabird Mobile Home Park","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Seafair","place_name":"Seafair","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Seaford","place_name":"Seaford","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Seah 5","place_name":"","community":"Seah 5","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Seaichem 16","place_name":"","community":"Seaichem 16","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Seal Bay Subdivision","place_name":"Seal Bay Subdivision","community":"Courtenay","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Seaside Park","place_name":"Seaside Park","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Seaspunkut 4","place_name":"","community":"Seaspunkut 4","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Sechelt","place_name":"","community":"Sechelt","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Sechelt (Part) - qathet","place_name":"","community":"Sechelt (Part) - qathet","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Sechelt (Part) - Sunshine Coast","place_name":"","community":"Sechelt (Part) - Sunshine Coast","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Secret Cove","place_name":"Secret Cove","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Selma Park","place_name":"Selma Park","community":"Sechelt","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Semiahmoo","place_name":"","community":"Semiahmoo","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Sentinel Hill","place_name":"Sentinel Hill","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Seton Lake 5","place_name":"","community":"Seton Lake 5","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Seton Lake 5A","place_name":"Seton Lake 5A","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Seton Portage","place_name":"Seton Portage","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Seven Mile Corner","place_name":"Seven Mile Corner","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sevenoaks","place_name":"Sevenoaks","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Seventy Mile House","place_name":"Seventy Mile House","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Sewall","place_name":"Sewall","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Sewell Inlet","place_name":"Sewell Inlet","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Seymour Arm","place_name":"Seymour Arm","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Seymour Creek 2","place_name":"","community":"Seymour Creek 2","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Seymour Heights","place_name":"Seymour Heights","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Seymour Inlet","place_name":"Seymour Inlet","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Seymour Lake","place_name":"Seymour Lake","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Seymour Landing","place_name":"Seymour Landing","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Seymour Meadows 19","place_name":"Seymour Meadows 19","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Sha:wiis","place_name":"Sha:wiis","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Shackan 11","place_name":"","community":"Shackan 11","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Shady Valley","place_name":"Shady Valley","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Shaha Estates","place_name":"Shaha Estates","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Shalalth","place_name":"Shalalth","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Shannon Bay","place_name":"Shannon Bay","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Shannon Trailer Park","place_name":"Shannon Trailer Park","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sharpe Lake","place_name":"Sharpe Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Shaughnessy","place_name":"Shaughnessy","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Shawl Bay","place_name":"Shawl Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Shawnaire Resort","place_name":"Shawnaire Resort","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shawnigan","place_name":"Shawnigan","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shawnigan Lake","place_name":"Shawnigan Lake","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shawnigan Lake Mobile Home Park","place_name":"Shawnigan Lake Mobile Home Park","community":"Cowichan Valley B","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shawniken 4B","place_name":"","community":"Shawniken 4B","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Shearer Dale","place_name":"Shearer Dale","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Shearwater","place_name":"Shearwater","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Shell Beach","place_name":"Shell Beach","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shelley","place_name":"Shelley","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Shelter Bay","place_name":"Shelter Bay","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Shelter Point","place_name":"Shelter Point","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Shepherds Inn","place_name":"Shepherds Inn","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sheraton","place_name":"Sheraton","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Shere","place_name":"Shere","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Sheridan Lake","place_name":"Sheridan Lake","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Sheslay","place_name":"Sheslay","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Shingle Creek","place_name":"Shingle Creek","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Shingle Point 4","place_name":"","community":"Shingle Point 4","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Shirley","place_name":"Shirley","community":"Juan de Fuca (Part 1)","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shitlthmaq-is","place_name":"Shitlthmaq-is","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Sho-ook 5","place_name":"Sho-ook 5","community":"Fraser Valley A","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Shoreacres","place_name":"Shoreacres","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Shoreholme","place_name":"Shoreholme","community":"Central Kootenay K","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Shorewood San Parreil","place_name":"Shorewood San Parreil","community":"Parksville","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Shulus","place_name":"Shulus","community":"Nicola Mameet 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Shushartie","place_name":"Shushartie","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Shuswap","place_name":"","community":"Shuswap","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Shuswap - Thompson-Nicola L (Grasslands)","place_name":"Shuswap","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Shuswap Falls","place_name":"Shuswap Falls","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Shuswap Lake Estates","place_name":"Shuswap Lake Estates","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Shutty Bench","place_name":"Shutty Bench","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sicamous","place_name":"","community":"Sicamous","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sidley","place_name":"Sidley","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Sidney","place_name":"","community":"Sidney","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Sikanni Chief","place_name":"Sikanni Chief","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sik-e-dakh 2","place_name":"","community":"Sik-e-dakh 2","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Silica","place_name":"Silica","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Silver Creek - Columbia-Shuswap D","place_name":"Silver Creek","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Silver Creek - Hope","place_name":"Silver Creek","community":"Hope","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Silver River","place_name":"Silver River","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Silver Star","place_name":"Silver Star","community":"North Okanagan C","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Silver Star Trailer Park","place_name":"Silver Star Trailer Park","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Silver Valley","place_name":"Silver Valley","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Silverhill","place_name":"Silverhill","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Silverton","place_name":"","community":"Silverton","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Simpson Ranch","place_name":"Simpson Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sinclair Mills","place_name":"Sinclair Mills","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Sinkut River","place_name":"Sinkut River","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Sirdar","place_name":"Sirdar","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Siska Flat","place_name":"","community":"Siska Flat","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Siska Flat 3","place_name":"Siska Flat 3","community":"Siska Flat","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Siska Flat 5A","place_name":"Siska Flat 5A","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Siska Flat 5B","place_name":"Siska Flat 5B","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Siska Flat 8","place_name":"Siska Flat 8","community":"Siska Flat","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Six Mile Point","place_name":"Six Mile Point","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Six Mile Ranch","place_name":"Six Mile Ranch","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Skawahlook 1","place_name":"","community":"Skawahlook 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skedans","place_name":"Skedans","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeena Crossing","place_name":"Skeena Crossing","community":"Gitsegukla 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Skeena-Queen Charlotte A","place_name":"Skeena-Queen Charlotte A","community":"North Coast A","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeena-Queen Charlotte C","place_name":"Skeena-Queen Charlotte C","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Skeena-Queen Charlotte D","place_name":"Skeena-Queen Charlotte D","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeena-Queen Charlotte E","place_name":"Skeena-Queen Charlotte E","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeena-Queen Charlotte F","place_name":"Skeena-Queen Charlotte F","community":"Queen Charlotte","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeena-Queen Charlotte, Subd. A","place_name":"Skeena-Queen Charlotte, Subd. A","community":"North Coast C","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Skeena-Queen Charlotte, Subd. B","place_name":"Skeena-Queen Charlotte, Subd. B","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skeetchestn","place_name":"","community":"Skeetchestn","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Skidegate","place_name":"Skidegate","community":"Skidegate 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Skidegate 1","place_name":"","community":"Skidegate 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Skidegate Landing","place_name":"Skidegate Landing","community":"Queen Charlotte","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Skins Lake 16A","place_name":"","community":"Skins Lake 16A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Skins Lake 16B","place_name":"","community":"Skins Lake 16B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Skooks Landing","place_name":"Skooks Landing","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Skookumchuck - East Kootenay E","place_name":"Skookumchuck","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Skookumchuck - Skookumchuck 4","place_name":"Skookumchuck","community":"Skookumchuck 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skookumchuck 4","place_name":"","community":"Skookumchuck 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skowkale","place_name":"","community":"Skowkale","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skowkale 10","place_name":"Skowkale 10","community":"Skowkale","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skowkale 11","place_name":"Skowkale 11","community":"Skowkale","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skuppah 2A","place_name":"","community":"Skuppah 2A","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Skuppah 4","place_name":"","community":"Skuppah 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Skwah 4","place_name":"","community":"Skwah 4","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skwahla 2","place_name":"Skwahla 2","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Skwali 3","place_name":"","community":"Skwali 3","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skway 5","place_name":"","community":"Skway 5","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Skwayaynope 26","place_name":"","community":"Skwayaynope 26","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Skweahm 10","place_name":"","community":"Skweahm 10","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Slaterville","place_name":"Slaterville","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Sleepy Hollow Road Trailer Park","place_name":"Sleepy Hollow Road Trailer Park","community":"Fraser Valley H","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Slesse Park","place_name":"Slesse Park","community":"Fraser Valley E","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sliammon","place_name":"Sliammon","community":"Sliammon 1","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Sliammon 1","place_name":"","community":"Sliammon 1","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Slocan","place_name":"","community":"Slocan","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Slocan Park","place_name":"Slocan Park","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Slosh 1","place_name":"","community":"Slosh 1","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Slosh 1A","place_name":"Slosh 1A","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Smith River","place_name":"Smith River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Smithers","place_name":"","community":"Smithers","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Smithers - Telkwa","place_name":"Smithers","community":"Telkwa","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Smithers Landing","place_name":"Smithers Landing","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Snake 5","place_name":"Snake 5","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Snake River","place_name":"Snake River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Snow Peak Trailer Court","place_name":"Snow Peak Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Snug Cove","place_name":"Snug Cove","community":"Bowen Island","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Soames Point","place_name":"Soames Point","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Soda Creek","place_name":"Soda Creek","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Soda Creek 1","place_name":"","community":"Soda Creek 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Sointula","place_name":"Sointula","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Solly","place_name":"Solly","community":"Alberni-Clayoquot E","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Solsqua","place_name":"Solsqua","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Somenos","place_name":"Somenos","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Sonora Island","place_name":"Sonora Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Sooke","place_name":"","community":"Sooke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Soowahlie 14","place_name":"","community":"Soowahlie 14","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Sorrento","place_name":"Sorrento","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"South Bentinck","place_name":"South Bentinck","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"South Cambie","place_name":"South Cambie","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"South Canoe","place_name":"South Canoe","community":"Salmon Arm","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"South Dawson","place_name":"South Dawson","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"South Fort George","place_name":"South Fort George","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"South Hazelton","place_name":"South Hazelton","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"South Lakeside","place_name":"South Lakeside","community":"Williams Lake","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 3"},{"location":"South Lakeside (Williams Lake)","place_name":"South Lakeside (Williams Lake)","community":"Williams Lake","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 3"},{"location":"South Pender Island","place_name":"South Pender Island","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"South Poplar","place_name":"South Poplar","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"South Saanich 1","place_name":"","community":"South Saanich 1","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"South Shalalth","place_name":"South Shalalth","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"South Slocan","place_name":"South Slocan","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"South Slope","place_name":"South Slope","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"South Sumas","place_name":"South Sumas","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"South Surrey","place_name":"South Surrey","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"South Taylor","place_name":"South Taylor","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"South Thormanby Island","place_name":"South Thormanby Island","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"South Wellington","place_name":"South Wellington","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Southarm","place_name":"Southarm","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Southbank","place_name":"Southbank","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Southern Gulf Islands","place_name":"","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Sowchea 3","place_name":"","community":"Sowchea 3","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Soyandostar 2","place_name":"Soyandostar 2","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Spallumcheen","place_name":"","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Sparwood","place_name":"","community":"Sparwood","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Spatsum","place_name":"Spatsum","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Spatsum 11","place_name":"Spatsum 11","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Spectacle Lake Mobile Home Park","place_name":"Spectacle Lake Mobile Home Park","community":"Cowichan Valley A","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Spences Bridge","place_name":"","community":"Spences Bridge","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Spences Bridge 4","place_name":"Spences Bridge 4","community":"Spences Bridge","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Spences Bridge 4C","place_name":"Spences Bridge 4C","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Speyum 3","place_name":"","community":"Speyum 3","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Spillimacheen","place_name":"Spillimacheen","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Spintlum Flat 3","place_name":"","community":"Spintlum Flat 3","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Springhouse","place_name":"Springhouse","community":"Cariboo E","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Sproat Lake","place_name":"Sproat Lake","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Sproat Trailer Park","place_name":"Sproat Trailer Park","community":"Alberni-Clayoquot D","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Sproatt","place_name":"Sproatt","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sproule Creek","place_name":"Sproule Creek","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Spur Valley Subdivision","place_name":"Spur Valley Subdivision","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Spuzzum","place_name":"Spuzzum","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Spuzzum 1","place_name":"","community":"Spuzzum 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Squaam 2","place_name":"","community":"Squaam 2","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Squaam Bay","place_name":"Squaam Bay","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Squamish","place_name":"","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Squamish-Lillooet A","place_name":"","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Squamish-Lillooet B","place_name":"","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Squamish-Lillooet C","place_name":"","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Squamish-Lillooet D","place_name":"","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Squamish-Lillooet, Subd. A","place_name":"Squamish-Lillooet, Subd. A","community":"Squamish-Lillooet B","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Squamish-Lillooet, Subd. B","place_name":"Squamish-Lillooet, Subd. B","community":"Squamish-Lillooet C","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Squaw-Hay-One 11","place_name":"","community":"Squaw-Hay-One 11","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Squawkum Creek 3","place_name":"","community":"Squawkum Creek 3","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Squeah","place_name":"Squeah","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Squiaala","place_name":"","community":"Squiaala","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Squiaala 7","place_name":"Squiaala 7","community":"Squiaala","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Squiaala 8","place_name":"Squiaala 8","community":"Squiaala","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Squilax","place_name":"Squilax","community":"Quaaout 1","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Squinas 2","place_name":"","community":"Squinas 2","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Squirrel Cove","place_name":"Squirrel Cove","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Squirrel Cove 8","place_name":"","community":"Squirrel Cove 8","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"St. Andrews","place_name":"St. Andrews","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"St. Eugene Mission","place_name":"St. Eugene Mission","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"St. Ives","place_name":"St. Ives","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"St. Joseph Mission","place_name":"St. Joseph Mission","community":"Cariboo F","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"St. Mary Lake","place_name":"St. Mary Lake","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"St. Mary's","place_name":"","community":"St. Mary's","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"St. Vincent Bay","place_name":"St. Vincent Bay","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Staiyahanny 8","place_name":"Staiyahanny 8","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Stanley","place_name":"Stanley","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Star Subdivision","place_name":"Star Subdivision","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Stave Falls","place_name":"Stave Falls","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Stawamus 24","place_name":"","community":"Stawamus 24","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Steamboat","place_name":"Steamboat","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Steelhead","place_name":"Steelhead","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Stellako","place_name":"Stellako","community":"Stellaquo (Stella) 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Stellaquo (Stella) 1","place_name":"","community":"Stellaquo (Stella) 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Stepping Stones Estates","place_name":"Stepping Stones Estates","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Stequmwhulpa 5","place_name":"","community":"Stequmwhulpa 5","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Steveston","place_name":"Steveston","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Stewardson Inlet","place_name":"Stewardson Inlet","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Stewart","place_name":"","community":"Stewart","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Stikine","place_name":"Stikine","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Stikine Region","place_name":"","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Stikine, Subd. A","place_name":"Stikine, Subd. A","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Stillwater - qathet C","place_name":"Stillwater","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Stillwater - Thompson-Nicola A (Wells Gray Country)","place_name":"Stillwater","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Stone 1","place_name":"","community":"Stone 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Stoner","place_name":"Stoner","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Stones Bay","place_name":"Stones Bay","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Stony Creek 1","place_name":"","community":"Stony Creek 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Stories Beach","place_name":"Stories Beach","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Strachan Creek","place_name":"Strachan Creek","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Straiton","place_name":"Straiton","community":"Abbotsford","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Strathcona","place_name":"Strathcona","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Strathcona A","place_name":"","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Strathcona B","place_name":"","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Strathcona C","place_name":"","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Strathcona D (Oyster Bay - Buttle Lake)","place_name":"","community":"Strathcona D (Oyster Bay - Buttle Lake)","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Strathnaver","place_name":"Strathnaver","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Strawberry Hill","place_name":"Strawberry Hill","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Strawberry Vale","place_name":"Strawberry Vale","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Streatham","place_name":"Streatham","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Stryen 9","place_name":"","community":"Stryen 9","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Stuart Bay 6","place_name":"Stuart Bay 6","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Stuart Island","place_name":"Stuart Island","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Stuart River","place_name":"Stuart River","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Stuie","place_name":"Stuie","community":"Central Coast C","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Stullawheets 8","place_name":"","community":"Stullawheets 8","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Stump Lake","place_name":"Stump Lake","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sturdies Bay","place_name":"Sturdies Bay","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Sugarcane","place_name":"Sugarcane","community":"Williams Lake 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Sullivan","place_name":"Sullivan","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sullivan Bay","place_name":"Sullivan Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Sullivan Heights","place_name":"Sullivan Heights","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Summerland","place_name":"","community":"Summerland","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Summit Lake - Central Kootenay H","place_name":"Summit Lake","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Summit Lake - Fraser-Fort George G","place_name":"Summit Lake","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Summit Lake - Northern Rockies","place_name":"Summit Lake","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Sun Peaks","place_name":"Sun Peaks","community":"Sun Peaks Mountain","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sun Peaks Mountain","place_name":"","community":"Sun Peaks Mountain","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sun Valley","place_name":"Sun Valley","community":"Coquitlam","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunbury","place_name":"Sunbury","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Suncrest","place_name":"Suncrest","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sundance Subdivision - Columbia-Shuswap E","place_name":"Sundance Subdivision","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sundance Subdivision - Peace River E","place_name":"Sundance Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sundayman's Meadow 3","place_name":"","community":"Sundayman's Meadow 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Sunningdale","place_name":"Sunningdale","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Sunny Dale","place_name":"Sunny Dale","community":"Courtenay","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Sunnybrae","place_name":"Sunnybrae","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sunnyside - Surrey","place_name":"Sunnyside","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunnyside - Tache 1","place_name":"Sunnyside","community":"Tache 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Sunnyside Trailer Court","place_name":"Sunnyside Trailer Court","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sunnyview Trailer Court","place_name":"Sunnyview Trailer Court","community":"Thompson-Nicola N (Beautiful Nicola Valley - South)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sunrise Valley","place_name":"Sunrise Valley","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sunset","place_name":"Sunset","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunset Beach - Lantzville","place_name":"Sunset Beach","community":"Lantzville","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Sunset Beach - West Vancouver","place_name":"Sunset Beach","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunset Prairie","place_name":"Sunset Prairie","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Sunset Trailer Park","place_name":"Sunset Trailer Park","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Sunshine","place_name":"Sunshine","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunshine Bay","place_name":"Sunshine Bay","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Sunshine Coast A","place_name":"","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Sunshine Coast B","place_name":"","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Sunshine Coast D","place_name":"","community":"Sunshine Coast D","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sunshine Coast E","place_name":"","community":"Sunshine Coast E","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sunshine Coast F","place_name":"","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sunshine Coast Trailer Court","place_name":"Sunshine Coast Trailer Court","community":"Sunshine Coast E","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Sunshine Coast, Subd. A","place_name":"Sunshine Coast, Subd. A","community":"Sunshine Coast A","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Sunshine Hills","place_name":"Sunshine Hills","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Sunshine Valley - Clearwater","place_name":"Sunshine Valley","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Sunshine Valley - Fraser Valley B","place_name":"Sunshine Valley","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Suquash","place_name":"Suquash","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Surge Narrows","place_name":"Surge Narrows","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Surprise","place_name":"Surprise","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Surrey","place_name":"","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Surrey Centre","place_name":"Surrey Centre","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Swahliseah 14","place_name":"Swahliseah 14","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Swan Lake 3","place_name":"Swan Lake 3","community":"Swan Lake 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Swan Lake 3","place_name":"","community":"Swan Lake 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Swartz Bay","place_name":"Swartz Bay","community":"North Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Sweetwater","place_name":"Sweetwater","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Switsemalph","place_name":"","community":"Switsemalph","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Switsemalph 3","place_name":"","community":"Switsemalph 3","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Switsemalph 6","place_name":"Switsemalph 6","community":"Switsemalph","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Switsemalph 7","place_name":"Switsemalph 7","community":"Switsemalph","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Ta Ta Creek","place_name":"Ta Ta Creek","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Ta:shiis","place_name":"Ta:shiis","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Tabor Lake","place_name":"Tabor Lake","community":"Fraser-Fort George D","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Tache 1","place_name":"","community":"Tache 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Tachie","place_name":"Tachie","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tacla Lake (Ferry Landing) 9","place_name":"","community":"Tacla Lake (Ferry Landing) 9","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Tadanac","place_name":"Tadanac","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Tadinlay 15","place_name":"","community":"Tadinlay 15","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Taghum","place_name":"Taghum","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Taghum Hill","place_name":"Taghum Hill","community":"Central Kootenay E","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Tahltan","place_name":"Tahltan","community":"Kitimat-Stikine F","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Tahltan 1","place_name":"","community":"Tahltan 1","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Tahsis","place_name":"","community":"Tahsis","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Takla Landing","place_name":"Takla Landing","community":"North Tacla Lake","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Taku","place_name":"Taku","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Takysie Lake","place_name":"Takysie Lake","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tall Timbers Trailer Park","place_name":"Tall Timbers Trailer Park","community":"Cowichan Valley E","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Tallheo","place_name":"Tallheo","community":"Central Coast E","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Tamarisk","place_name":"Tamarisk","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Tanakut 4","place_name":"","community":"Tanakut 4","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Tantalus Acres","place_name":"Tantalus Acres","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Tanu","place_name":"Tanu","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Tappen","place_name":"Tappen","community":"North Bay 5","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tarrys","place_name":"Tarrys","community":"Central Kootenay I","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Tasu","place_name":"Tasu","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Tatalrose","place_name":"Tatalrose","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tatelkus Lake 28","place_name":"Tatelkus Lake 28","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tatla Lake","place_name":"Tatla Lake","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tatla West 11","place_name":"","community":"Tatla West 11","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Tatla't East 2","place_name":"","community":"Tatla't East 2","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Tatlayoko Lake","place_name":"Tatlayoko Lake","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tatlow","place_name":"Tatlow","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tatogga","place_name":"Tatogga","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Tatpo-oose 10","place_name":"Tatpo-oose 10","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Tatton","place_name":"Tatton","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Taylor","place_name":"","community":"Taylor","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Tchesinkut Lake","place_name":"Tchesinkut Lake","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Teakerne Arm","place_name":"Teakerne Arm","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Telachick","place_name":"Telachick","community":"Fraser-Fort George C","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Telegraph Cove","place_name":"Telegraph Cove","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Telegraph Creek","place_name":"","community":"Telegraph Creek","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Telegraph Creek 6","place_name":"Telegraph Creek 6","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Telegraph Creek 6A","place_name":"Telegraph Creek 6A","community":"Kitimat-Stikine D","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Telkwa","place_name":"","community":"Telkwa","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Telkwa - Bulkley-Nechako A","place_name":"Telkwa","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Telkwa Trailer Park","place_name":"Telkwa Trailer Park","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Ten Mile Lake","place_name":"Ten Mile Lake","community":"Cariboo B","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Terrace","place_name":"","community":"Terrace","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 3"},{"location":"Tetachuk","place_name":"Tetachuk","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tête Jaune Cache","place_name":"Tête Jaune Cache","community":"Fraser-Fort George H","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Theik 2","place_name":"","community":"Theik 2","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Theodosia Arm","place_name":"Theodosia Arm","community":"qathet A","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Thetis Island","place_name":"Thetis Island","community":"Cowichan Valley G","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Thomas Point 5","place_name":"","community":"Thomas Point 5","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Thomas Point 5A","place_name":"","community":"Thomas Point 5A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Thomas Squinas Ranch 2A","place_name":"","community":"Thomas Squinas Ranch 2A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Thompson","place_name":"Thompson","community":"Richmond","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Thompson River Estates","place_name":"Thompson River Estates","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson Sound","place_name":"Thompson Sound","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Thompson-Nicola A (Wells Gray Country)","place_name":"","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola B (Thompson Headwaters)","place_name":"","community":"Thompson-Nicola B (Thompson Headwaters)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola E (Bonaparte Plateau)","place_name":"","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola I (Blue Sky Country)","place_name":"","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola J (Copper Desert Country)","place_name":"","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola L","place_name":"Thompson-Nicola L","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola L (Grasslands)","place_name":"","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola M","place_name":"Thompson-Nicola M","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola M (Beautiful Nicola Valley - North)","place_name":"","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola N","place_name":"Thompson-Nicola N","community":"Thompson-Nicola N (Beautiful Nicola Valley - South)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola N (Beautiful Nicola Valley - South)","place_name":"","community":"Thompson-Nicola N (Beautiful Nicola Valley - South)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola O (Lower North Thompson)","place_name":"","community":"Thompson-Nicola O (Lower North Thompson)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola P (Rivers and the Peaks)","place_name":"","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola, Subd. A","place_name":"Thompson-Nicola, Subd. A","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola, Subd. B","place_name":"Thompson-Nicola, Subd. B","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola, Subd. C","place_name":"Thompson-Nicola, Subd. C","community":"Thompson-Nicola M (Beautiful Nicola Valley - North)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thompson-Nicola, Subd. D","place_name":"Thompson-Nicola, Subd. D","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Thompson-Nicola, Subd. E","place_name":"Thompson-Nicola, Subd. E","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Thornhill","place_name":"Thornhill","community":"Kitimat-Stikine E","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Three Forks","place_name":"Three Forks","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Thrums","place_name":"Thrums","community":"Central Kootenay J","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Thunder Bay","place_name":"Thunder Bay","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Thurlow","place_name":"Thurlow","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Thurston Harbour","place_name":"Thurston Harbour","community":"North Coast E","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Thwaytes","place_name":"Thwaytes","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Tie Lake","place_name":"Tie Lake","community":"East Kootenay B","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Tiili Landing","place_name":"Tiili Landing","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Tillicum","place_name":"Tillicum","community":"Saanich","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Timberland Trailer Park","place_name":"Timberland Trailer Park","community":"Nanaimo C","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Tin Wis 11","place_name":"","community":"Tin Wis 11","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tintagel","place_name":"Tintagel","community":"Bulkley-Nechako B","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tipella","place_name":"Tipella","community":"Fraser Valley C","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Tipella 7","place_name":"","community":"Tipella 7","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Tlaa Gaa Aawtlaas 28","place_name":"","community":"Tlaa Gaa Aawtlaas 28","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Tl'aaniiwa'a","place_name":"Tl'aaniiwa'a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tlakmaqis","place_name":"Tlakmaqis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tlell","place_name":"Tlell","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Tl'esqox","place_name":"Tl'esqox","community":"Toosey 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Tl'etinqox","place_name":"Tl'etinqox","community":"Anahim's Flat 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Tl'isnachis","place_name":"Tl'isnachis","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tl'itsnit","place_name":"Tl'itsnit","community":"Numukamis 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tloohat-a","place_name":"Tloohat-a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Toad River","place_name":"Toad River","community":"Northern Rockies","regional_district":"Northern Rockies Regional Municipality","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Tobacco Plains 2","place_name":"","community":"Tobacco Plains 2","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"N/A"},{"location":"Tobiano","place_name":"Tobiano","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Toby Creek","place_name":"Toby Creek","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Toby's Meadow 4","place_name":"Toby's Meadow 4","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tofino","place_name":"","community":"Tofino","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tomslake","place_name":"Tomslake","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Toosey 1","place_name":"","community":"Toosey 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Topley","place_name":"Topley","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Topley Landing","place_name":"Topley Landing","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tork 7","place_name":"","community":"Tork 7","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tow Hill Road","place_name":"Tow Hill Road","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Towdystan","place_name":"Towdystan","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Towdystan Lake 3","place_name":"","community":"Towdystan Lake 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Tower Lake","place_name":"Tower Lake","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Towinock 2","place_name":"","community":"Towinock 2","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Traders Cove","place_name":"Traders Cove","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Trail","place_name":"","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Tranquille","place_name":"Tranquille","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Trépanier","place_name":"Trépanier","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Trevor Channel","place_name":"Trevor Channel","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Trinity Valley","place_name":"Trinity Valley","community":"North Okanagan D","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Triple E Trailer Park","place_name":"Triple E Trailer Park","community":"Nanaimo A","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Trout Creek","place_name":"Trout Creek","community":"Okanagan-Similkameen F","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Trout Lake","place_name":"Trout Lake","community":"Columbia-Shuswap B","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Trout Lake Alec 16","place_name":"","community":"Trout Lake Alec 16","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Trutch","place_name":"Trutch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Tsa Xana 18","place_name":"","community":"Tsa Xana 18","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tsahaheh 1","place_name":"","community":"Tsahaheh 1","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tsaukan 12","place_name":"","community":"Tsaukan 12","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tsawwassen","place_name":"","community":"Tsawwassen","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Tsawwassen - Delta","place_name":"Tsawwassen","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Tsawwassen Beach","place_name":"Tsawwassen Beach","community":"Delta","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ts'axq'oo-is","place_name":"Ts'axq'oo-is","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tsay Cho 4","place_name":"Tsay Cho 4","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tsay Keh Dene","place_name":"Tsay Keh Dene","community":"Finlay River 6","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"Tseatah 2","place_name":"","community":"Tseatah 2","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Tsideldel","place_name":"Tsideldel","community":"Redstone Flat 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Ts'iispoo-a","place_name":"Ts'iispoo-a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Tsimpsean 2 North Part","place_name":"Tsimpsean 2 North Part","community":"Lax Kw'alaams 1","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"N/A"},{"location":"Tsinstikeptum 9","place_name":"Tsinstikeptum 9","community":"Tsinstikeptum 9","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tsinstikeptum 10","place_name":"","community":"Tsinstikeptum 10","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tsinstikeptum 9","place_name":"","community":"Tsinstikeptum 9","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tsolum","place_name":"Tsolum","community":"Comox Valley B (Lazo North)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Tsolum River","place_name":"Tsolum River","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"T'Sou-ke","place_name":"","community":"T'Sou-ke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"T'Sou-ke 1 (Sooke 1)","place_name":"T'Sou-ke 1 (Sooke 1)","community":"T'Sou-ke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"T'Sou-ke 2 (Sooke 2)","place_name":"T'Sou-ke 2 (Sooke 2)","community":"T'Sou-ke","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tsulquate 4","place_name":"","community":"Tsulquate 4","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tsunnia Lake 5","place_name":"Tsunnia Lake 5","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tsussie 6","place_name":"","community":"Tsussie 6","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tuckkwiowhum 1","place_name":"","community":"Tuckkwiowhum 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Tulameen","place_name":"Tulameen","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Tulsequah","place_name":"Tulsequah","community":"Stikine Region","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tumbler Ridge","place_name":"","community":"Tumbler Ridge","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 2"},{"location":"Tupper","place_name":"Tupper","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Turner Subdivision","place_name":"Turner Subdivision","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Turtle Valley","place_name":"Turtle Valley","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Tuwanek","place_name":"Tuwanek","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Twidwell Bend","place_name":"Twidwell Bend","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Twin Bays","place_name":"Twin Bays","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Twin Creeks","place_name":"Twin Creeks","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Twin Firs Trailer Park","place_name":"Twin Firs Trailer Park","community":"Spallumcheen","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Twin Islands","place_name":"Twin Islands","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Twin Lakes","place_name":"Twin Lakes","community":"Okanagan-Similkameen I","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Twin Sevens Trailer Park","place_name":"Twin Sevens Trailer Park","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Two Mile","place_name":"Two Mile","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Two Mile Hazelton","place_name":"Two Mile Hazelton","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Two Rivers","place_name":"Two Rivers","community":"Peace River C","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Twoyqhalsht 16","place_name":"","community":"Twoyqhalsht 16","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Tyax Lake","place_name":"Tyax Lake","community":"Squamish-Lillooet A","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 1"},{"location":"Tyhee Trailer Park","place_name":"Tyhee Trailer Park","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Tynehead","place_name":"Tynehead","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Tzart-Lam 5","place_name":"","community":"Tzart-Lam 5","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Tzeachten 13","place_name":"","community":"Tzeachten 13","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Tzetzi Lake 11","place_name":"Tzetzi Lake 11","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Tzouhalem","place_name":"Tzouhalem","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Ucluelet","place_name":"","community":"Ucluelet","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Ulkatcho","place_name":"Ulkatcho","community":"Cariboo J","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Ulkatcho 13","place_name":"","community":"Ulkatcho 13","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Ulkatcho 14A","place_name":"","community":"Ulkatcho 14A","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Uncha Lake 13A","place_name":"","community":"Uncha Lake 13A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Union Bay","place_name":"Union Bay","community":"Comox Valley A","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Union Bay 4","place_name":"","community":"Union Bay 4","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"University Endowment Area","place_name":"University Endowment Area","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"University Hill","place_name":"University Hill","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Unnamed 10","place_name":"","community":"Unnamed 10","regional_district":"Stikine Region","economic_region":"Nechako","rural_category":"N/A"},{"location":"Upland Trailer Court","place_name":"Upland Trailer Court","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Upper Bench","place_name":"Upper Bench","community":"Okanagan-Similkameen G","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Upper China Creek","place_name":"Upper China Creek","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Upper Cutbank","place_name":"Upper Cutbank","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Upper Fraser","place_name":"Upper Fraser","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Upper Halfway","place_name":"Upper Halfway","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Upper Hat Creek","place_name":"Upper Hat Creek","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Upper Hat Creek 1","place_name":"","community":"Upper Hat Creek 1","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Upper Lynn","place_name":"Upper Lynn","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Upper Nepa 6","place_name":"","community":"Upper Nepa 6","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Upper Squamish Valley","place_name":"Upper Squamish Valley","community":"Squamish-Lillooet D","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Upper Sumas 6","place_name":"","community":"Upper Sumas 6","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Upsowis","place_name":"Upsowis","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Usk","place_name":"Usk","community":"Kitimat-Stikine C (Part 1)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Uuts","place_name":"Uuts","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Valemount","place_name":"","community":"Valemount","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Valhalla","place_name":"Valhalla","community":"Cariboo L","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Valhalla Subdivision","place_name":"Valhalla Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Valley Mobile Home","place_name":"Valley Mobile Home","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Valley Road Subdivision","place_name":"Valley Road Subdivision","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Valley View","place_name":"Valley View","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Valleycliffe","place_name":"Valleycliffe","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Valleyview","place_name":"Valleyview","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Vallican","place_name":"Vallican","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Van Anda","place_name":"Van Anda","community":"qathet D","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Vancouver","place_name":"","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Vanderhoof","place_name":"","community":"Vanderhoof","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 2"},{"location":"Vanway","place_name":"Vanway","community":"Prince George","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Urban 2"},{"location":"Vaseaux Lake","place_name":"Vaseaux Lake","community":"Okanagan-Similkameen D","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Vaucroft Beach","place_name":"Vaucroft Beach","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Vavenby","place_name":"Vavenby","community":"Thompson-Nicola A (Wells Gray Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Vedder Crossing","place_name":"Vedder Crossing","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Vermilion Crossing","place_name":"Vermilion Crossing","community":"East Kootenay G","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Vernon","place_name":"","community":"Vernon","regional_district":"North Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Vesuvius","place_name":"Vesuvius","community":"Saltspring Island","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Victoria","place_name":"","community":"Victoria","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Victoria Lake","place_name":"Victoria Lake","community":"Mount Waddington C","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Victoria-Fraserview","place_name":"Victoria-Fraserview","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Vidette","place_name":"Vidette","community":"Thompson-Nicola J (Copper Desert Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"View Royal","place_name":"","community":"View Royal","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Urban 1"},{"location":"Village Bay","place_name":"Village Bay","community":"Southern Gulf Islands","regional_district":"Capital","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Village Island 1","place_name":"","community":"Village Island 1","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Village of Queen Charlotte","place_name":"Village of Queen Charlotte","community":"Queen Charlotte","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Vinsulla","place_name":"Vinsulla","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"W'aayi","place_name":"W'aayi","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Wabi Estates","place_name":"Wabi Estates","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Wabi Hill Trailer Court","place_name":"Wabi Hill Trailer Court","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Wadhams","place_name":"Wadhams","community":"Central Coast A","regional_district":"Central Coast","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Wagner Ranch","place_name":"Wagner Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Waiwakum 14","place_name":"","community":"Waiwakum 14","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Walcott","place_name":"Walcott","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Walhachin","place_name":"Walhachin","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Walkers","place_name":"Walkers","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Wall Beach","place_name":"Wall Beach","community":"Nanaimo E","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Walnut Grove","place_name":"Walnut Grove","community":"Langley - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Waneta","place_name":"Waneta","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Waneta Junction","place_name":"Waneta Junction","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"Wardner","place_name":"Wardner","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Warfield","place_name":"","community":"Warfield","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Warner Bay","place_name":"Warner Bay","community":"Mount Waddington A","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Wasa","place_name":"Wasa","community":"East Kootenay E","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Water's Subdivision","place_name":"Water's Subdivision","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Webber Site","place_name":"Webber Site","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Websters Corners","place_name":"Websters Corners","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Weeping Willow Trailer Court","place_name":"Weeping Willow Trailer Court","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Weewanie","place_name":"Weewanie","community":"Kitimat-Stikine C (Part 2)","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Welcome Beach","place_name":"Welcome Beach","community":"Sunshine Coast B","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Weldwood","place_name":"Weldwood","community":"qathet C","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Wellington","place_name":"Wellington","community":"Nanaimo","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Wells","place_name":"","community":"Wells","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Weneez","place_name":"Weneez","community":"Bulkley-Nechako F","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"West Bay","place_name":"West Bay","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"West Bench","place_name":"West Bench","community":"Penticton 1","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"West Creston","place_name":"West Creston","community":"Central Kootenay C","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"West End - New Westminster","place_name":"West End","community":"New Westminster","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"West End - Vancouver","place_name":"West End","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"West End Trailer Park","place_name":"West End Trailer Park","community":"Kootenay Boundary D / Rural Grand Forks","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"West Heights","place_name":"West Heights","community":"Mission","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"West Kelowna","place_name":"","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"West Landing","place_name":"West Landing","community":"Bulkley-Nechako C","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"West Lynn","place_name":"West Lynn","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"West Mara Lake","place_name":"West Mara Lake","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"West Midway","place_name":"West Midway","community":"Midway","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"West Moberly Lake 168A","place_name":"","community":"West Moberly Lake 168A","regional_district":"Peace River","economic_region":"Northeast","rural_category":"N/A"},{"location":"West Point Grey","place_name":"West Point Grey","community":"Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"West Road Subdivision","place_name":"West Road Subdivision","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"West Sechelt","place_name":"West Sechelt","community":"Sechelt","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"West Thurlow","place_name":"West Thurlow","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"West Trail","place_name":"West Trail","community":"Trail","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 3"},{"location":"West Vancouver","place_name":"","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Westbank - Tsinstikeptum 9","place_name":"Westbank","community":"Tsinstikeptum 9","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Westbank - West Kelowna","place_name":"Westbank","community":"West Kelowna","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Westbridge","place_name":"Westbridge","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Westcoast Energy","place_name":"Westcoast Energy","community":"Fraser-Fort George G","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Westholme","place_name":"Westholme","community":"North Cowichan","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Urban 2"},{"location":"Westmount","place_name":"Westmount","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Westmount Acres Trailer Court","place_name":"Westmount Acres Trailer Court","community":"Columbia-Shuswap E","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Westridge","place_name":"Westridge","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Westside","place_name":"Westside","community":"Tsinstikeptum 10","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Westsyde","place_name":"Westsyde","community":"Kamloops","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Urban 2"},{"location":"Westview","place_name":"Westview","community":"Powell River","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Westwold","place_name":"Westwold","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Wet'suwet'en Village","place_name":"Wet'suwet'en Village","community":"Palling 1","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Weyerhaeuser Subdivision","place_name":"Weyerhaeuser Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Whaletown","place_name":"Whaletown","community":"Strathcona B","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Whalley","place_name":"Whalley","community":"Surrey","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Wheel Estates-Saratoga Beach","place_name":"Wheel Estates-Saratoga Beach","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Whiplash Ranch","place_name":"Whiplash Ranch","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Whisky Creek","place_name":"Whisky Creek","community":"Nanaimo F","regional_district":"Nanaimo","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Whispering Pines 4","place_name":"","community":"Whispering Pines 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Whispering Pines Trailer Park","place_name":"Whispering Pines Trailer Park","community":"Kootenay Boundary B / Lower Columbia-Old-Glory","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Whispering Winds Trailer Court","place_name":"Whispering Winds Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Whistler","place_name":"","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Whistler Creek","place_name":"Whistler Creek","community":"Whistler","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"White Lake","place_name":"White Lake","community":"Columbia-Shuswap C","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"White Rock","place_name":"","community":"White Rock","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"White Spruce Trailer Court","place_name":"White Spruce Trailer Court","community":"East Kootenay A","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Whitecroft","place_name":"Whitecroft","community":"Thompson-Nicola P (Rivers and the Peaks)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Whiterock Passage","place_name":"Whiterock Passage","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Whonnock","place_name":"Whonnock","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Whonnock 1","place_name":"","community":"Whonnock 1","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Whyac","place_name":"Whyac","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Whytecliff","place_name":"Whytecliff","community":"West Vancouver","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Wigwam Inn","place_name":"Wigwam Inn","community":"Metro Vancouver A","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Wihat'a","place_name":"Wihat'a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Wii Lax K'ap","place_name":"Wii Lax K'ap","community":"Nisga'a","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"N/A"},{"location":"Wildwood","place_name":"Wildwood","community":"Powell River","regional_district":"qathet","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Wildwood Subdivision","place_name":"Wildwood Subdivision","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Wildwood Trailer Park","place_name":"Wildwood Trailer Park","community":"Cariboo D","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Wiley","place_name":"Wiley","community":"Bulkley-Nechako G","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Williams Beach","place_name":"Williams Beach","community":"Comox Valley C (Puntledge - Black Creek)","regional_district":"Comox Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Williams Lake","place_name":"","community":"Williams Lake","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 3"},{"location":"Williams Lake 1","place_name":"","community":"Williams Lake 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Williams Landing","place_name":"Williams Landing","community":"Fraser Valley F","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Williams Prairie Meadow 1A","place_name":"","community":"Williams Prairie Meadow 1A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Williamsons Landing","place_name":"Williamsons Landing","community":"Sunshine Coast F","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Willingdon Heights","place_name":"Willingdon Heights","community":"Burnaby","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Willow Brook","place_name":"Willow Brook","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Willow Flats","place_name":"Willow Flats","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Willow Point","place_name":"Willow Point","community":"Central Kootenay F","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Willow Ranch","place_name":"Willow Ranch","community":"Thompson-Nicola L (Grasslands)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Willow River","place_name":"Willow River","community":"Fraser-Fort George F","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 2"},{"location":"Willow Valley","place_name":"Willow Valley","community":"Peace River E","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Willowbrook - Okanagan-Similkameen C","place_name":"Willowbrook","community":"Okanagan-Similkameen C","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Willowbrook - Peace River D","place_name":"Willowbrook","community":"Peace River D","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Willowvale","place_name":"Willowvale","community":"Bulkley-Nechako D","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Wilmer","place_name":"Wilmer","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Wilson Creek","place_name":"Wilson Creek","community":"Sechelt","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 2"},{"location":"Wilson Landing","place_name":"Wilson Landing","community":"Central Okanagan West","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Windermere","place_name":"Windermere","community":"East Kootenay F","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Windmill Trailer Park","place_name":"Windmill Trailer Park","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Windsor Park","place_name":"Windsor Park","community":"North Vancouver - District municipality","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Windy Mouth 7","place_name":"","community":"Windy Mouth 7","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Winfield","place_name":"Winfield","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Winfield Mobile Home Park","place_name":"Winfield Mobile Home Park","community":"Duck Lake 7","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Wingdam","place_name":"Wingdam","community":"Cariboo C","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Winlaw","place_name":"Winlaw","community":"Central Kootenay H","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Winter Harbour","place_name":"Winter Harbour","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Wistaria","place_name":"Wistaria","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Wisteria","place_name":"Wisteria","community":"Bulkley-Nechako E","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Wolf","place_name":"Wolf","community":"Cariboo I","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Wonowon","place_name":"Wonowon","community":"Peace River B","regional_district":"Peace River","economic_region":"Northeast","rural_category":"Rural 1"},{"location":"Woodcock","place_name":"Woodcock","community":"Kitimat-Stikine B","regional_district":"Kitimat-Stikine","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Woodcreek","place_name":"Woodcreek","community":"Sunshine Coast E","regional_district":"Sunshine Coast","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Woodfibre","place_name":"Woodfibre","community":"Squamish","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Woodhaven","place_name":"Woodhaven","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Woodland Park Estates","place_name":"Woodland Park Estates","community":"Okanagan-Similkameen H","regional_district":"Okanagan-Similkameen","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Woodlands","place_name":"Woodlands","community":"Belcarra","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 3"},{"location":"Woodmere","place_name":"Woodmere","community":"Bulkley-Nechako A","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"Rural 1"},{"location":"Woodpecker","place_name":"Woodpecker","community":"Fraser-Fort George E","regional_district":"Fraser-Fort George","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Woods Landing","place_name":"Woods Landing","community":"Columbia-Shuswap F","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Woodsdale","place_name":"Woodsdale","community":"Lake Country","regional_district":"Central Okanagan","economic_region":"Thompson/Okanagan","rural_category":"Rural 3"},{"location":"Woss","place_name":"Woss","community":"Mount Waddington D","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Woyenne 27","place_name":"","community":"Woyenne 27","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Wright","place_name":"Wright","community":"Cariboo G","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"Rural 1"},{"location":"Wyah 3","place_name":"Wyah 3","community":"Cowichan Valley F","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Wycliffe","place_name":"Wycliffe","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Wycliffe Trailer Park","place_name":"Wycliffe Trailer Park","community":"East Kootenay C","regional_district":"East Kootenay","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Wyndhaven Subdivision","place_name":"Wyndhaven Subdivision","community":"Clearwater","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Wynndel","place_name":"Wynndel","community":"Central Kootenay A","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Xeni","place_name":"Xeni","community":"Lohbiee 3","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Y.D. Ranch Subdivision","place_name":"Y.D. Ranch Subdivision","community":"Thompson-Nicola I (Blue Sky Country)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Ya:kats","place_name":"Ya:kats","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Yaashitquo-a","place_name":"Yaashitquo-a","community":"Alberni-Clayoquot A","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Yaculta","place_name":"Yaculta","community":"Strathcona C","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Yahk","place_name":"Yahk","community":"Central Kootenay B","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Yaku","place_name":"Yaku","community":"North Coast D","regional_district":"Skeena-Queen Charlotte","economic_region":"North Coast","rural_category":"Rural 1"},{"location":"Yakweakwioose 12","place_name":"","community":"Yakweakwioose 12","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Yale","place_name":"Yale","community":"Fraser Valley B","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Rural 3"},{"location":"Yale Town 1","place_name":"","community":"Yale Town 1","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Yankee Flats","place_name":"Yankee Flats","community":"Columbia-Shuswap D","regional_district":"Columbia-Shuswap","economic_region":"Thompson/Okanagan","rural_category":"Rural 2"},{"location":"Yarksis","place_name":"Yarksis","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Yarrow","place_name":"Yarrow","community":"Chilliwack","regional_district":"Fraser Valley","economic_region":"Mainland/Southwest","rural_category":"Urban 2"},{"location":"Yawaucht 11","place_name":"","community":"Yawaucht 11","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Ye Koo Che 3","place_name":"","community":"Ye Koo Che 3","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Yekooche","place_name":"Yekooche","community":"Ye Koo Che 3","regional_district":"Bulkley-Nechako","economic_region":"Nechako","rural_category":"N/A"},{"location":"Yekwaupsum 18","place_name":"","community":"Yekwaupsum 18","regional_district":"Squamish-Lillooet","economic_region":"Mainland/Southwest","rural_category":"N/A"},{"location":"Yellow Point","place_name":"Yellow Point","community":"Cowichan Valley H","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Yennadon","place_name":"Yennadon","community":"Maple Ridge","regional_district":"Metro Vancouver","economic_region":"Mainland/Southwest","rural_category":"Urban 1"},{"location":"Ymir","place_name":"Ymir","community":"Central Kootenay G","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Youbou","place_name":"Youbou","community":"Cowichan Valley I","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Youbou West","place_name":"Youbou West","community":"Cowichan Valley I","regional_district":"Cowichan Valley","economic_region":"Vancouver Island/Coast","rural_category":"Rural 3"},{"location":"Young Lake","place_name":"Young Lake","community":"Thompson-Nicola E (Bonaparte Plateau)","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"Rural 1"},{"location":"Yreka","place_name":"Yreka","community":"Mount Waddington B","regional_district":"Mount Waddington","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"YunesÌ‚it'in","place_name":"YunesÌ‚it'in","community":"Stone 1","regional_district":"Cariboo","economic_region":"Cariboo","rural_category":"N/A"},{"location":"Yuquot","place_name":"Yuquot","community":"Strathcona A","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Yuquot 1","place_name":"","community":"Yuquot 1","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"N/A"},{"location":"Yuuhluth","place_name":"Yuuhluth","community":"Alberni-Clayoquot C","regional_district":"Alberni-Clayoquot","economic_region":"Vancouver Island/Coast","rural_category":"Rural 2"},{"location":"Zacht 5","place_name":"","community":"Zacht 5","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"},{"location":"Zamora","place_name":"Zamora","community":"Kootenay Boundary E / West Boundary","regional_district":"Kootenay Boundary","economic_region":"Kootenay","rural_category":"Rural 2"},{"location":"Zeballos","place_name":"","community":"Zeballos","regional_district":"Strathcona","economic_region":"Vancouver Island/Coast","rural_category":"Rural 1"},{"location":"Zincton","place_name":"Zincton","community":"Central Kootenay D","regional_district":"Central Kootenay","economic_region":"Kootenay","rural_category":"Rural 1"},{"location":"Zoht 4","place_name":"","community":"Zoht 4","regional_district":"Thompson-Nicola","economic_region":"Thompson/Okanagan","rural_category":"N/A"}] \ No newline at end of file