You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@superset.apache.org by GitBox <gi...@apache.org> on 2018/02/13 06:04:49 UTC

[GitHub] mistercrunch closed pull request #4386: Canada

mistercrunch closed pull request #4386: Canada
URL: https://github.com/apache/incubator-superset/pull/4386
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/.pylintrc b/.pylintrc
index 27b41d7b42..8a0e0ed78f 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -102,7 +102,7 @@ evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / stateme
 good-names=i,j,k,ex,Run,_,d,e,v,o,l,x,ts
 
 # Bad variable names which should always be refused, separated by a comma
-bad-names=foo,bar,baz,toto,tutu,tata
+bad-names=foo,bar,baz,toto,tutu,tata,d,fd
 
 # Colon-delimited sets of names that determine each other's naming style when
 # the name regexes allow several styles.
diff --git a/superset/assets/images/viz_thumbnails/deck_grid.png b/superset/assets/images/viz_thumbnails/deck_grid.png
new file mode 100644
index 0000000000..cd93965106
Binary files /dev/null and b/superset/assets/images/viz_thumbnails/deck_grid.png differ
diff --git a/superset/assets/images/viz_thumbnails/deck_hex.png b/superset/assets/images/viz_thumbnails/deck_hex.png
new file mode 100644
index 0000000000..31feff5c8f
Binary files /dev/null and b/superset/assets/images/viz_thumbnails/deck_hex.png differ
diff --git a/superset/assets/images/viz_thumbnails/deck_scatter.png b/superset/assets/images/viz_thumbnails/deck_scatter.png
new file mode 100644
index 0000000000..11f38ccc8d
Binary files /dev/null and b/superset/assets/images/viz_thumbnails/deck_scatter.png differ
diff --git a/superset/assets/images/viz_thumbnails/deck_screengrid.png b/superset/assets/images/viz_thumbnails/deck_screengrid.png
new file mode 100644
index 0000000000..d5da29c99b
Binary files /dev/null and b/superset/assets/images/viz_thumbnails/deck_screengrid.png differ
diff --git a/superset/assets/javascripts/explore/components/controls/FixedOrMetricControl.jsx b/superset/assets/javascripts/explore/components/controls/FixedOrMetricControl.jsx
new file mode 100644
index 0000000000..6d90032be5
--- /dev/null
+++ b/superset/assets/javascripts/explore/components/controls/FixedOrMetricControl.jsx
@@ -0,0 +1,123 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+import { Label, Popover, OverlayTrigger } from 'react-bootstrap';
+
+import controls from '../../stores/controls';
+import TextControl from './TextControl';
+import SelectControl from './SelectControl';
+import ControlHeader from '../ControlHeader';
+import PopoverSection from '../../../components/PopoverSection';
+
+const controlTypes = {
+  fixed: 'fix',
+  metric: 'metric',
+};
+
+const propTypes = {
+  onChange: PropTypes.func,
+  value: PropTypes.object,
+  isFloat: PropTypes.bool,
+  datasource: PropTypes.object,
+  default: PropTypes.object,
+};
+
+const defaultProps = {
+  onChange: () => {},
+  default: { type: controlTypes.fixed, value: 5 },
+};
+
+export default class FixedOrMetricControl extends React.Component {
+  constructor(props) {
+    super(props);
+    this.onChange = this.onChange.bind(this);
+    const type = (props.value ? props.value.type : props.default.type) || controlTypes.fixed;
+    const value = (props.value ? props.value.value : props.default.value) || '100';
+    this.state = {
+      type,
+      fixedValue: type === controlTypes.fixed ? value : '',
+      metricValue: type === controlTypes.metric ? value : null,
+    };
+  }
+  onChange() {
+    this.props.onChange({
+      type: this.state.type,
+      value: this.state.type === controlTypes.fixed ? this.state.fixedValue : this.state.metricValue,
+    });
+  }
+  setType(type) {
+    this.setState({ type }, this.onChange);
+  }
+  setFixedValue(fixedValue) {
+    this.setState({ fixedValue }, this.onChange);
+  }
+  setMetric(metricValue) {
+    this.setState({ metricValue }, this.onChange);
+  }
+  renderPopover() {
+    const value = this.props.value || this.props.default;
+    const type = value.type || controlTypes.fixed;
+    const metrics = this.props.datasource ? this.props.datasource.metrics : null;
+    return (
+      <Popover id="filter-popover">
+        <div style={{ width: '240px' }}>
+          <PopoverSection
+            title="Fixed"
+            isSelected={type === controlTypes.fixed}
+            onSelect={this.onChange.bind(this, controlTypes.fixed)}
+          >
+            <TextControl
+              isFloat
+              onChange={this.setFixedValue.bind(this)}
+              onFocus={this.setType.bind(this, controlTypes.fixed)}
+              value={this.state.fixedValue}
+            />
+          </PopoverSection>
+          <PopoverSection
+            title="Based on a metric"
+            isSelected={type === controlTypes.metric}
+            onSelect={this.onChange.bind(this, controlTypes.metric)}
+          >
+            <SelectControl
+              {...controls.metric}
+              name="metric"
+              options={metrics}
+              onFocus={this.setType.bind(this, controlTypes.metric)}
+              onChange={this.setMetric.bind(this)}
+              value={this.state.metricValue}
+            />
+          </PopoverSection>
+        </div>
+      </Popover>
+    );
+  }
+  render() {
+    return (
+      <div>
+        <ControlHeader {...this.props} />
+        <OverlayTrigger
+          container={document.body}
+          trigger="click"
+          rootClose
+          ref="trigger"
+          placement="right"
+          overlay={this.renderPopover()}
+        >
+          <Label style={{ cursor: 'pointer' }}>
+            {this.state.type === controlTypes.fixed &&
+              <span>{this.state.fixedValue}</span>
+            }
+            {this.state.type === controlTypes.metric &&
+              <span>
+                <span style={{ fontWeight: 'normal' }}>metric: </span>
+                <strong>{this.state.metricValue}</strong>
+              </span>
+            }
+          </Label>
+        </OverlayTrigger>
+      </div>
+    );
+  }
+}
+
+FixedOrMetricControl.propTypes = propTypes;
+FixedOrMetricControl.defaultProps = defaultProps;
diff --git a/superset/assets/javascripts/explore/components/controls/SelectControl.jsx b/superset/assets/javascripts/explore/components/controls/SelectControl.jsx
index 51381d64d6..054eb987eb 100644
--- a/superset/assets/javascripts/explore/components/controls/SelectControl.jsx
+++ b/superset/assets/javascripts/explore/components/controls/SelectControl.jsx
@@ -14,6 +14,7 @@ const propTypes = {
   multi: PropTypes.bool,
   name: PropTypes.string.isRequired,
   onChange: PropTypes.func,
+  onFocus: PropTypes.func,
   value: PropTypes.oneOfType([PropTypes.string, PropTypes.number, PropTypes.array]),
   showHeader: PropTypes.bool,
   optionRenderer: PropTypes.func,
@@ -31,6 +32,7 @@ const defaultProps = {
   label: null,
   multi: false,
   onChange: () => {},
+  onFocus: () => {},
   showHeader: true,
   optionRenderer: opt => opt.label,
   valueRenderer: opt => opt.label,
@@ -161,6 +163,7 @@ export default class SelectControl extends React.PureComponent {
       clearable: this.props.clearable,
       isLoading: this.props.isLoading,
       onChange: this.onChange,
+      onFocus: this.props.onFocus,
       optionRenderer: this.props.optionRenderer,
       valueRenderer: this.props.valueRenderer,
     };
diff --git a/superset/assets/javascripts/explore/components/controls/TextControl.jsx b/superset/assets/javascripts/explore/components/controls/TextControl.jsx
index 4fe558e052..bfe3f99177 100644
--- a/superset/assets/javascripts/explore/components/controls/TextControl.jsx
+++ b/superset/assets/javascripts/explore/components/controls/TextControl.jsx
@@ -5,10 +5,8 @@ import * as v from '../../validators';
 import ControlHeader from '../ControlHeader';
 
 const propTypes = {
-  name: PropTypes.string.isRequired,
-  label: PropTypes.string,
-  description: PropTypes.string,
   onChange: PropTypes.func,
+  onFocus: PropTypes.func,
   value: PropTypes.oneOfType([
     PropTypes.string,
     PropTypes.number,
@@ -18,9 +16,8 @@ const propTypes = {
 };
 
 const defaultProps = {
-  label: null,
-  description: null,
   onChange: () => {},
+  onFocus: () => {},
   value: '',
   isInt: false,
   isFloat: false,
@@ -64,6 +61,7 @@ export default class TextControl extends React.Component {
             type="text"
             placeholder=""
             onChange={this.onChange}
+            onFocus={this.props.onFocus}
             value={value}
           />
         </FormGroup>
diff --git a/superset/assets/javascripts/explore/components/controls/ViewportControl.jsx b/superset/assets/javascripts/explore/components/controls/ViewportControl.jsx
new file mode 100644
index 0000000000..71d88e7e50
--- /dev/null
+++ b/superset/assets/javascripts/explore/components/controls/ViewportControl.jsx
@@ -0,0 +1,92 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+import { Label, Popover, OverlayTrigger } from 'react-bootstrap';
+import { decimal2sexagesimal } from 'geolib';
+
+import TextControl from './TextControl';
+import ControlHeader from '../ControlHeader';
+import { defaultViewport } from '../../../modules/geo';
+
+const PARAMS = [
+  'longitude',
+  'latitude',
+  'zoom',
+  'bearing',
+  'pitch',
+];
+
+const propTypes = {
+  onChange: PropTypes.func.isRequired,
+  value: PropTypes.object,
+  default: PropTypes.object,
+};
+
+const defaultProps = {
+  onChange: () => {},
+  default: { type: 'fix', value: 5 },
+  value: defaultViewport,
+};
+
+export default class ViewportControl extends React.Component {
+  constructor(props) {
+    super(props);
+    this.onChange = this.onChange.bind(this);
+  }
+  onChange(ctrl, value) {
+    this.props.onChange({
+      ...this.props.value,
+      [ctrl]: value,
+    });
+  }
+  renderTextControl(ctrl) {
+    return (
+      <div>
+        {ctrl}
+        <TextControl
+          value={this.props.value[ctrl]}
+          onChange={this.onChange.bind(this, ctrl)}
+          isFloat
+        />
+      </div>
+    );
+  }
+  renderPopover() {
+    return (
+      <Popover id="filter-popover" title="Viewport">
+        {PARAMS.map(ctrl => this.renderTextControl(ctrl))}
+      </Popover>
+    );
+  }
+  renderLabel() {
+    if (this.props.value.longitude && this.props.value.latitude) {
+      return (
+        decimal2sexagesimal(this.props.value.longitude) +
+        ' | ' +
+        decimal2sexagesimal(this.props.value.latitude)
+      );
+    }
+    return 'N/A';
+  }
+  render() {
+    return (
+      <div>
+        <ControlHeader {...this.props} />
+        <OverlayTrigger
+          container={document.body}
+          trigger="click"
+          rootClose
+          ref="trigger"
+          placement="right"
+          overlay={this.renderPopover()}
+        >
+          <Label style={{ cursor: 'pointer' }}>
+            {this.renderLabel()}
+          </Label>
+        </OverlayTrigger>
+      </div>
+    );
+  }
+}
+
+ViewportControl.propTypes = propTypes;
+ViewportControl.defaultProps = defaultProps;
diff --git a/superset/assets/javascripts/explore/components/controls/index.js b/superset/assets/javascripts/explore/components/controls/index.js
index 876bc4a1c6..094a26b323 100644
--- a/superset/assets/javascripts/explore/components/controls/index.js
+++ b/superset/assets/javascripts/explore/components/controls/index.js
@@ -6,12 +6,14 @@ import ColorSchemeControl from './ColorSchemeControl';
 import DatasourceControl from './DatasourceControl';
 import DateFilterControl from './DateFilterControl';
 import FilterControl from './FilterControl';
+import FixedOrMetricControl from './FixedOrMetricControl';
 import HiddenControl from './HiddenControl';
 import SelectAsyncControl from './SelectAsyncControl';
 import SelectControl from './SelectControl';
 import TextAreaControl from './TextAreaControl';
 import TextControl from './TextControl';
 import TimeSeriesColumnControl from './TimeSeriesColumnControl';
+import ViewportControl from './ViewportControl';
 import VizTypeControl from './VizTypeControl';
 
 const controlMap = {
@@ -23,12 +25,14 @@ const controlMap = {
   DatasourceControl,
   DateFilterControl,
   FilterControl,
+  FixedOrMetricControl,
   HiddenControl,
   SelectAsyncControl,
   SelectControl,
   TextAreaControl,
   TextControl,
   TimeSeriesColumnControl,
+  ViewportControl,
   VizTypeControl,
 };
 export default controlMap;
diff --git a/superset/assets/javascripts/explore/stores/controls.jsx b/superset/assets/javascripts/explore/stores/controls.jsx
index fa92cd5c66..1490fab93e 100644
--- a/superset/assets/javascripts/explore/stores/controls.jsx
+++ b/superset/assets/javascripts/explore/stores/controls.jsx
@@ -1,7 +1,8 @@
 import React from 'react';
 import { formatSelectOptionsForRange, formatSelectOptions } from '../../modules/utils';
 import * as v from '../validators';
-import { ALL_COLOR_SCHEMES, spectrums } from '../../modules/colors';
+import { colorPrimary, ALL_COLOR_SCHEMES, spectrums } from '../../modules/colors';
+import { defaultViewport } from '../../modules/geo';
 import MetricOption from '../../components/MetricOption';
 import ColumnOption from '../../components/ColumnOption';
 import OptionDescription from '../../components/OptionDescription';
@@ -135,6 +136,14 @@ export const controls = {
     }),
   },
 
+  color_picker: {
+    label: t('Fixed Color'),
+    description: t('Use this to define a static color for all circles'),
+    type: 'ColorPickerControl',
+    default: colorPrimary,
+    renderTrigger: true,
+  },
+
   annotation_layers: {
     type: 'SelectAsyncControl',
     multi: true,
@@ -393,6 +402,7 @@ export const controls = {
     choices: [
       'Belgium',
       'Brazil',
+			'Canada',
       'China',
       'Egypt',
       'France',
@@ -424,6 +434,13 @@ export const controls = {
   },
 
   groupby: groupByControl,
+  dimension: {
+    ...groupByControl,
+    label: t('Dimension'),
+    description: t('Select a dimension'),
+    multi: false,
+    default: null,
+  },
 
   columns: Object.assign({}, groupByControl, {
     label: t('Columns'),
@@ -441,6 +458,28 @@ export const controls = {
     }),
   },
 
+  longitude: {
+    type: 'SelectControl',
+    label: t('Longitude'),
+    default: 1,
+    validators: [v.nonEmpty],
+    description: t('Select the longitude column'),
+    mapStateToProps: state => ({
+      choices: (state.datasource) ? state.datasource.all_cols : [],
+    }),
+  },
+
+  latitude: {
+    type: 'SelectControl',
+    label: t('Latitude'),
+    default: 1,
+    validators: [v.nonEmpty],
+    description: t('Select the latitude column'),
+    mapStateToProps: state => ({
+      choices: (state.datasource) ? state.datasource.all_cols : [],
+    }),
+  },
+
   all_columns_x: {
     type: 'SelectControl',
     label: 'X',
@@ -719,6 +758,14 @@ export const controls = {
     'with the [Periods] text box'),
   },
 
+  multiplier: {
+    type: 'TextControl',
+    label: t('Multiplier'),
+    isFloat: true,
+    default: 1,
+    description: t('Factor to multiply the metric by'),
+  },
+
   rolling_periods: {
     type: 'TextControl',
     label: t('Periods'),
@@ -727,6 +774,15 @@ export const controls = {
     'relative to the time granularity selected'),
   },
 
+  grid_size: {
+    type: 'TextControl',
+    label: t('Grid Size'),
+    renderTrigger: true,
+    default: 20,
+    isInt: true,
+    description: t('Defines the grid size in pixels'),
+  },
+
   min_periods: {
     type: 'TextControl',
     label: t('Min Periods'),
@@ -1032,6 +1088,14 @@ export const controls = {
     ),
   },
 
+  extruded: {
+    type: 'CheckboxControl',
+    label: t('Extruded'),
+    renderTrigger: true,
+    default: true,
+    description: ('Whether to make the grid 3D'),
+  },
+
   show_brush: {
     type: 'CheckboxControl',
     label: t('Range Filter'),
@@ -1244,6 +1308,7 @@ export const controls = {
   mapbox_style: {
     type: 'SelectControl',
     label: t('Map Style'),
+    renderTrigger: true,
     choices: [
       ['mapbox://styles/mapbox/streets-v9', 'Streets'],
       ['mapbox://styles/mapbox/dark-v9', 'Dark'],
@@ -1277,6 +1342,15 @@ export const controls = {
     'number of points (>1000) will cause lag.'),
   },
 
+  point_radius_fixed: {
+    type: 'FixedOrMetricControl',
+    label: t('Point Size'),
+    description: t('Fixed point radius'),
+    mapStateToProps: state => ({
+      datasource: state.datasource,
+    }),
+  },
+
   point_radius: {
     type: 'SelectControl',
     label: t('Point Radius'),
@@ -1297,6 +1371,22 @@ export const controls = {
     description: t('The unit of measure for the specified point radius'),
   },
 
+  point_unit: {
+    type: 'SelectControl',
+    label: t('Point Unit'),
+    default: 'square_m',
+    clearable: false,
+    choices: [
+      ['square_m', 'Square meters'],
+      ['square_km', 'Square kilometers'],
+      ['square_miles', 'Square miles'],
+      ['radius_m', 'Radius in meters'],
+      ['radius_km', 'Radius in kilometers'],
+      ['radius_miles', 'Radius in miles'],
+    ],
+    description: t('The unit of measure for the specified point radius'),
+  },
+
   global_opacity: {
     type: 'TextControl',
     label: t('Opacity'),
@@ -1306,6 +1396,15 @@ export const controls = {
     'Between 0 and 1.'),
   },
 
+  viewport: {
+    type: 'ViewportControl',
+    label: t('Viewport'),
+    renderTrigger: true,
+    description: t('Parameters related to the view and perspective on the map'),
+    // default is whole world mostly centered
+    default: defaultViewport,
+  },
+
   viewport_zoom: {
     type: 'TextControl',
     label: t('Zoom'),
@@ -1359,6 +1458,7 @@ export const controls = {
   color: {
     type: 'ColorPickerControl',
     label: t('Color'),
+    default: colorPrimary,
     description: t('Pick a color'),
   },
 
diff --git a/superset/assets/javascripts/explore/stores/visTypes.js b/superset/assets/javascripts/explore/stores/visTypes.js
index 94115bb076..b13d4a787e 100644
--- a/superset/assets/javascripts/explore/stores/visTypes.js
+++ b/superset/assets/javascripts/explore/stores/visTypes.js
@@ -294,6 +294,153 @@ export const visTypes = {
     },
   },
 
+  deck_hex: {
+    label: t('Deck.gl - Hexagons'),
+    requiresTime: true,
+    controlPanelSections: [
+      {
+        label: t('Query'),
+        expanded: true,
+        controlSetRows: [
+          ['longitude', 'latitude'],
+          ['groupby', 'size'],
+          ['row_limit'],
+        ],
+      },
+      {
+        label: t('Map'),
+        controlSetRows: [
+          ['mapbox_style', 'viewport'],
+          ['color_picker', null],
+          ['grid_size', 'extruded'],
+        ],
+      },
+    ],
+    controlOverrides: {
+      size: {
+        label: t('Height'),
+        description: t('Metric used to control height'),
+        validators: [v.nonEmpty],
+      },
+    },
+  },
+
+  deck_grid: {
+    label: t('Deck.gl - Grid'),
+    requiresTime: true,
+    controlPanelSections: [
+      {
+        label: t('Query'),
+        expanded: true,
+        controlSetRows: [
+          ['longitude', 'latitude'],
+          ['groupby', 'size'],
+          ['row_limit'],
+        ],
+      },
+      {
+        label: t('Map'),
+        controlSetRows: [
+          ['mapbox_style', 'viewport'],
+          ['color_picker', null],
+          ['grid_size', 'extruded'],
+        ],
+      },
+    ],
+    controlOverrides: {
+      size: {
+        label: t('Height'),
+        description: t('Metric used to control height'),
+        validators: [v.nonEmpty],
+      },
+    },
+  },
+
+  deck_screengrid: {
+    label: t('Deck.gl - Screen grid'),
+    requiresTime: true,
+    controlPanelSections: [
+      {
+        label: t('Query'),
+        expanded: true,
+        controlSetRows: [
+          ['longitude', 'latitude'],
+          ['groupby', 'size'],
+          ['row_limit'],
+        ],
+      },
+      {
+        label: t('Map'),
+        controlSetRows: [
+          ['mapbox_style', 'viewport'],
+        ],
+      },
+      {
+        label: t('Grid'),
+        controlSetRows: [
+          ['grid_size', 'color_picker'],
+        ],
+      },
+    ],
+    controlOverrides: {
+      size: {
+        label: t('Weight'),
+        description: t("Metric used as a weight for the grid's coloring"),
+        validators: [v.nonEmpty],
+      },
+    },
+  },
+
+  deck_scatter: {
+    label: t('Deck.gl - Scatter plot'),
+    requiresTime: true,
+    controlPanelSections: [
+      {
+        label: t('Query'),
+        expanded: true,
+        controlSetRows: [
+          ['longitude', 'latitude'],
+          ['groupby'],
+          ['row_limit'],
+        ],
+      },
+      {
+        label: t('Map'),
+        controlSetRows: [
+          ['mapbox_style', 'viewport'],
+        ],
+      },
+      {
+        label: t('Point Size'),
+        controlSetRows: [
+          ['point_radius_fixed', 'point_unit'],
+          ['multiplier', null],
+        ],
+      },
+      {
+        label: t('Point Color'),
+        controlSetRows: [
+          ['color_picker', null],
+          ['dimension', 'color_scheme'],
+        ],
+      },
+    ],
+    controlOverrides: {
+      all_columns_x: {
+        label: t('Longitude Column'),
+        validators: [v.nonEmpty],
+      },
+      all_columns_y: {
+        label: t('Latitude Column'),
+        validators: [v.nonEmpty],
+      },
+      dimension: {
+        label: t('Categorical Color'),
+        description: t('Pick a dimension from which categorical colors are defined'),
+      },
+    },
+  },
+
   area: {
     label: t('Time Series - Stacked'),
     requiresTime: true,
@@ -1062,9 +1209,8 @@ export const visTypes = {
       {
         label: t('Viewport'),
         controlSetRows: [
-          ['viewport_longitude'],
-          ['viewport_latitude'],
-          ['viewport_zoom'],
+          ['viewport_longitude', 'viewport_latitude'],
+          ['viewport_zoom', null],
         ],
       },
     ],
diff --git a/superset/assets/javascripts/modules/colors.js b/superset/assets/javascripts/modules/colors.js
index 663fd6e494..0c3d06a09d 100644
--- a/superset/assets/javascripts/modules/colors.js
+++ b/superset/assets/javascripts/modules/colors.js
@@ -142,3 +142,13 @@ export const colorScalerFactory = function (colors, data, accessor, extents) {
   const points = colors.map((col, i) => ext[0] + (i * chunkSize));
   return d3.scale.linear().domain(points).range(colors).clamp(true);
 };
+
+export function hexToRGB(hex, alpha = 255) {
+  if (!hex) {
+    return [0, 0, 0, alpha];
+  }
+  const r = parseInt(hex.slice(1, 3), 16);
+  const g = parseInt(hex.slice(3, 5), 16);
+  const b = parseInt(hex.slice(5, 7), 16);
+  return [r, g, b, alpha];
+}
diff --git a/superset/assets/javascripts/modules/geo.js b/superset/assets/javascripts/modules/geo.js
new file mode 100644
index 0000000000..e689a41682
--- /dev/null
+++ b/superset/assets/javascripts/modules/geo.js
@@ -0,0 +1,25 @@
+export const defaultViewport = {
+  longitude: 6.85236157047845,
+  latitude: 31.222656842808707,
+  zoom: 1,
+  bearing: 0,
+  pitch: 0,
+};
+
+const METER_TO_MILE = 1609.34;
+export function unitToRadius(unit, num) {
+  if (unit === 'square_m') {
+    return Math.sqrt(num / Math.PI);
+  } else if (unit === 'radius_m') {
+    return num;
+  } else if (unit === 'radius_km') {
+    return num * 1000;
+  } else if (unit === 'radius_miles') {
+    return num * METER_TO_MILE;
+  } else if (unit === 'square_km') {
+    return Math.sqrt(num / Math.PI) * 1000;
+  } else if (unit === 'square_miles') {
+    return Math.sqrt(num / Math.PI) * METER_TO_MILE;
+  }
+  return null;
+}
diff --git a/superset/assets/package.json b/superset/assets/package.json
index 6f6068d6e5..962a4569a0 100644
--- a/superset/assets/package.json
+++ b/superset/assets/package.json
@@ -1,6 +1,6 @@
 {
   "name": "superset",
-  "version": "0.20.1",
+  "version": "0.20.5",
   "description": "Superset is a data exploration platform designed to be visual, intuitive, and interactive.",
   "license": "Apache-2.0",
   "directories": {
@@ -55,11 +55,14 @@
     "d3-tip": "^0.6.7",
     "datamaps": "^0.5.8",
     "datatables.net-bs": "^1.10.15",
+    "deck.gl": "^4.1.5",
     "distributions": "^1.0.0",
+    "geolib": "^2.0.24",
     "immutable": "^3.8.2",
     "jed": "^1.1.1",
     "jquery": "3.1.1",
     "lodash.throttle": "^4.1.1",
+    "luma.gl": "^4.0.5",
     "moment": "2.18.1",
     "mustache": "^2.2.1",
     "nvd3": "1.8.6",
diff --git a/superset/assets/spec/javascripts/explore/components/FixedOrMetricControl_spec.jsx b/superset/assets/spec/javascripts/explore/components/FixedOrMetricControl_spec.jsx
new file mode 100644
index 0000000000..6f5a1aa5b5
--- /dev/null
+++ b/superset/assets/spec/javascripts/explore/components/FixedOrMetricControl_spec.jsx
@@ -0,0 +1,39 @@
+/* eslint-disable no-unused-expressions */
+import React from 'react';
+import { expect } from 'chai';
+import { describe, it, beforeEach } from 'mocha';
+import { shallow } from 'enzyme';
+import { OverlayTrigger } from 'react-bootstrap';
+
+import FixedOrMetricControl from
+  '../../../../javascripts/explore/components/controls/FixedOrMetricControl';
+import SelectControl from
+  '../../../../javascripts/explore/components/controls/SelectControl';
+import TextControl from
+  '../../../../javascripts/explore/components/controls/TextControl';
+import ControlHeader from '../../../../javascripts/explore/components/ControlHeader';
+
+const defaultProps = {
+  value: { },
+};
+
+describe('FixedOrMetricControl', () => {
+  let wrapper;
+  let inst;
+  beforeEach(() => {
+    wrapper = shallow(<FixedOrMetricControl {...defaultProps} />);
+    inst = wrapper.instance();
+  });
+
+  it('renders a OverlayTrigger', () => {
+    const controlHeader = wrapper.find(ControlHeader);
+    expect(controlHeader).to.have.lengthOf(1);
+    expect(wrapper.find(OverlayTrigger)).to.have.length(1);
+  });
+
+  it('renders a TextControl and a SelectControl', () => {
+    const popOver = shallow(inst.renderPopover());
+    expect(popOver.find(TextControl)).to.have.lengthOf(1);
+    expect(popOver.find(SelectControl)).to.have.lengthOf(1);
+  });
+});
diff --git a/superset/assets/spec/javascripts/explore/components/ViewportControl_spec.jsx b/superset/assets/spec/javascripts/explore/components/ViewportControl_spec.jsx
new file mode 100644
index 0000000000..9864d83890
--- /dev/null
+++ b/superset/assets/spec/javascripts/explore/components/ViewportControl_spec.jsx
@@ -0,0 +1,46 @@
+/* eslint-disable no-unused-expressions */
+import React from 'react';
+import { expect } from 'chai';
+import { describe, it, beforeEach } from 'mocha';
+import { shallow } from 'enzyme';
+import { OverlayTrigger, Label } from 'react-bootstrap';
+
+import ViewportControl from
+  '../../../../javascripts/explore/components/controls/ViewportControl';
+import TextControl from
+  '../../../../javascripts/explore/components/controls/TextControl';
+import ControlHeader from '../../../../javascripts/explore/components/ControlHeader';
+
+const defaultProps = {
+  value: {
+    longitude: 6.85236157047845,
+    latitude: 31.222656842808707,
+    zoom: 1,
+    bearing: 0,
+    pitch: 0,
+  },
+};
+
+describe('ViewportControl', () => {
+  let wrapper;
+  let inst;
+  beforeEach(() => {
+    wrapper = shallow(<ViewportControl {...defaultProps} />);
+    inst = wrapper.instance();
+  });
+
+  it('renders a OverlayTrigger', () => {
+    const controlHeader = wrapper.find(ControlHeader);
+    expect(controlHeader).to.have.lengthOf(1);
+    expect(wrapper.find(OverlayTrigger)).to.have.length(1);
+  });
+
+  it('renders a Popover with 5 TextControl', () => {
+    const popOver = shallow(inst.renderPopover());
+    expect(popOver.find(TextControl)).to.have.lengthOf(5);
+  });
+
+  it('renders a summary in the label', () => {
+    expect(wrapper.find(Label).first().render().text()).to.equal('6? 51\' 8.50" | 31? 13\' 21.56"');
+  });
+});
diff --git a/superset/assets/spec/javascripts/modules/colors_spec.jsx b/superset/assets/spec/javascripts/modules/colors_spec.jsx
index 558547101a..31ccea8326 100644
--- a/superset/assets/spec/javascripts/modules/colors_spec.jsx
+++ b/superset/assets/spec/javascripts/modules/colors_spec.jsx
@@ -1,7 +1,7 @@
 import { it, describe } from 'mocha';
 import { expect } from 'chai';
 
-import { ALL_COLOR_SCHEMES, getColorFromScheme } from '../../../javascripts/modules/colors';
+import { ALL_COLOR_SCHEMES, getColorFromScheme, hexToRGB } from '../../../javascripts/modules/colors';
 
 describe('colors', () => {
   it('default to bnbColors', () => {
@@ -19,4 +19,13 @@ describe('colors', () => {
     expect(color1).to.equal(color3);
     expect(color4).to.equal(ALL_COLOR_SCHEMES.bnbColors[1]);
   });
+
+  it('hexToRGB converts properly', () => {
+    expect(hexToRGB('#FFFFFF')).to.have.same.members([255, 255, 255, 255]);
+    expect(hexToRGB('#000000')).to.have.same.members([0, 0, 0, 255]);
+    expect(hexToRGB('#FF0000')).to.have.same.members([255, 0, 0, 255]);
+    expect(hexToRGB('#00FF00')).to.have.same.members([0, 255, 0, 255]);
+    expect(hexToRGB('#0000FF')).to.have.same.members([0, 0, 255, 255]);
+    expect(hexToRGB('#FF0000', 128)).to.have.same.members([255, 0, 0, 128]);
+  });
 });
diff --git a/superset/assets/spec/javascripts/modules/geo_spec.jsx b/superset/assets/spec/javascripts/modules/geo_spec.jsx
new file mode 100644
index 0000000000..758bf15a13
--- /dev/null
+++ b/superset/assets/spec/javascripts/modules/geo_spec.jsx
@@ -0,0 +1,27 @@
+import { it, describe } from 'mocha';
+import { expect } from 'chai';
+
+import { unitToRadius } from '../../../javascripts/modules/geo';
+
+const METER_TO_MILE = 1609.34;
+
+describe('unitToRadius', () => {
+  it('converts to square meters', () => {
+    expect(unitToRadius('square_m', 4 * Math.PI)).to.equal(2);
+  });
+  it('converts to square meters', () => {
+    expect(unitToRadius('square_km', 25 * Math.PI)).to.equal(5000);
+  });
+  it('converts to radius meters', () => {
+    expect(unitToRadius('radius_m', 1000)).to.equal(1000);
+  });
+  it('converts to radius km', () => {
+    expect(unitToRadius('radius_km', 1)).to.equal(1000);
+  });
+  it('converts to radius miles', () => {
+    expect(unitToRadius('radius_miles', 1)).to.equal(METER_TO_MILE);
+  });
+  it('converts to square miles', () => {
+    expect(unitToRadius('square_miles', 25 * Math.PI)).to.equal(5000 * (METER_TO_MILE / 1000));
+  });
+});
diff --git a/superset/assets/visualizations/countries/canada.geojson b/superset/assets/visualizations/countries/canada.geojson
new file mode 100644
index 0000000000..2d6fa3a10d
--- /dev/null
+++ b/superset/assets/visualizations/countries/canada.geojson
@@ -0,0 +1,296 @@
+{"type":"FeatureCollection", "features": [
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-110.00576019287104,53.88941574096691],[-110.00517272949213,52.85484313964844],[-110.3209381103515,52.914489746093864],[-110.4942855834961,53.03749465942383],[-111.02947998046875,53.05967330932623],[-111.21109008789057,53.14664077758795],[-111.42997741699213,53.14656066894537],[-111.40528106689447,52.9299201965332],[-111.79224395751953,52.930381774902344],[-111.98747253417963,53.01677703857422],[-112.32632446289057,53.017795562744084],[-112.32636260986328,52.726726531982365],[-112.59603118896479,52.66764450073242],[-112.93873596191406,52.49157714843756],[-113.09766387939447,52.75575637817383],[-113.09882354736317,53.11973190307623],[-113.17169189453125,53.23590850830078],[-112.9513931274414,53.48306655883795],[-112.95004272460932,53.87611389160162],[-112.84772491455067,53.97800445556652],[-112.8049087524414,54.05986404418951],[-112.61123657226562,54.00124359130865],[-112.19972229003906,53.988090515136776],[-111.83457946
 777344,53.92413330078125],[-111.48966979980463,53.79410552978521],[-111.16175842285156,53.74581527709972],[-110.53994750976562,53.77280807495123],[-110.25902557373047,53.87485885620123],[-110.00576019287104,53.88941574096691]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":1,"NAME_2":"Division No. 10","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-112.84772491455067,53.97800445556652],[-112.95004272460932,53.87611389160162],[-112.9513931274414,53.48306655883795],[-113.17169189453125,53.23590850830078],[-113.09882354736317,53.11973190307623],[-113.09766387939447,52.75575637817383],[-113.49925231933588,52.843238830566406],[-114.05010223388666,52.84383773803705],[-114.14500427246082,52.887050628662166],[-114.5816421508789,52.84354782104498],[-115.01590728759766,52.843585968017635],[-115.02373504638672,53.0623512268067],[-115.197280883789,53.05172348022472],[-115.28114318847656,52.85889816284191],[-115.59809112548822,52.843143463134766],[-115.61064910888672,53.36682128906256],[-115.114761352539,53.366909027099666],[-114.91160583496094,53.71617126464838],[-114.8130874633789,53.602855682373104],[-114.24730682373041,53.61386871337896],[-114.02666473388672,53.657535552978516],[-114.02962493896484,53.84756469726574],[-113.57030487060541,54.021568298339844],[-113.34782409
 667963,53.97797393798834],[-112.84772491455067,53.97800445556652]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":2,"NAME_2":"Division No. 11","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-110.00011444091791,55.331233978271484],[-110.00569915771484,54.649806976318416],[-110.00576019287104,53.88941574096691],[-110.25902557373047,53.87485885620123],[-110.53994750976562,53.77280807495123],[-111.16175842285156,53.74581527709972],[-111.48966979980463,53.79410552978521],[-111.83457946777344,53.92413330078125],[-112.19972229003906,53.988090515136776],[-112.61123657226562,54.00124359130865],[-112.8049087524414,54.05986404418951],[-112.76334381103516,54.20959854125982],[-112.601089477539,54.32622909545893],[-112.57646179199213,54.56555938720703],[-112.42514801025379,54.58747100830078],[-112.44618225097656,55.02396011352539],[-112.31175231933588,55.11172485351574],[-112.31356048583979,55.460491180420036],[-112.7635498046875,55.460823059081974],[-112.79398345947266,55.638931274414176],[-112.63323211669916,55.75239944458008],[-112.64553833007807,55.984653472900504],[-111.41273498535156,55.98443984985363],[-111.40225
 219726562,55.46071243286127],[-111.30324554443348,55.33084869384771],[-110.00011444091791,55.331233978271484]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":3,"NAME_2":"Division No. 12","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-112.8049087524414,54.05986404418951],[-112.84772491455067,53.97800445556652],[-113.34782409667963,53.97797393798834],[-113.57030487060541,54.021568298339844],[-114.02962493896484,53.84756469726574],[-114.02666473388672,53.657535552978516],[-114.24730682373041,53.61386871337896],[-114.8130874633789,53.602855682373104],[-114.91160583496094,53.71617126464838],[-114.9880599975586,53.78831863403332],[-115.78495025634766,53.81883621215832],[-115.8754653930664,53.97770690917969],[-116.52706909179682,53.97752380371094],[-116.69900512695307,54.119136810302734],[-116.25041198730463,54.256103515625114],[-115.96997833251953,54.41269302368164],[-115.96249389648432,54.50003814697277],[-115.06288909912104,54.49929428100586],[-115.06993865966791,54.85028839111328],[-114.2201309204101,54.850471496581974],[-114.32343292236322,54.58863830566406],[-113.69735717773438,54.58755111694336],[-113.66560363769531,54.936729431152344],[-113.361305
 2368164,55.02386093139654],[-112.90389251708973,55.02410888671881],[-112.7635498046875,55.460823059081974],[-112.31356048583979,55.460491180420036],[-112.31175231933588,55.11172485351574],[-112.44618225097656,55.02396011352539],[-112.42514801025379,54.58747100830078],[-112.57646179199213,54.56555938720703],[-112.601089477539,54.32622909545893],[-112.76334381103516,54.20959854125982],[-112.8049087524414,54.05986404418951]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":4,"NAME_2":"Division No. 13","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-114.91160583496094,53.71617126464838],[-115.114761352539,53.366909027099666],[-115.61064910888672,53.36682128906256],[-115.59809112548822,52.843143463134766],[-116.61273956298828,52.842361450195426],[-116.8185806274414,52.71741485595709],[-117.0803833007812,52.71654891967779],[-117.55301666259766,52.99137878417963],[-117.95883178710932,53.33019638061535],[-118.3601455688476,53.45699691772472],[-118.79165649414057,53.416175842285156],[-119.2370834350586,53.47411346435558],[-119.40608215332031,53.36809158325201],[-119.66889953613281,53.36782836914074],[-119.89948272705078,53.51912689208996],[-119.71340942382807,53.61457824707037],[-119.99998474121088,53.806236267089844],[-120,53.93741226196295],[-119.81336212158192,53.89474105834972],[-119.48410034179688,54.02488327026367],[-119.48502349853516,53.8465461730957],[-118.99934387207031,53.80493545532238],[-118.12482452392578,53.80658340454107],[-118.06812286376947,53.9099807
 7392578],[-117.47514343261707,54.02932739257824],[-117.06784057617188,53.975086212158146],[-116.84798431396479,54.00081253051769],[-116.69900512695307,54.119136810302734],[-116.52706909179682,53.97752380371094],[-115.8754653930664,53.97770690917969],[-115.78495025634766,53.81883621215832],[-114.9880599975586,53.78831863403332],[-114.91160583496094,53.71617126464838]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":5,"NAME_2":"Division No. 14","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-116.8185806274414,52.71741485595709],[-116.87620544433588,52.486980438232365],[-117.10042572021479,52.26379013061535],[-116.97129821777338,52.14946746826166],[-116.71990203857416,52.062164306640625],[-116.50903320312494,51.81463623046881],[-116.32466888427734,51.78683090209961],[-116.07980346679682,51.91316223144531],[-115.5740966796875,51.619102478027344],[-114.99317169189447,51.620841979980526],[-114.82846832275385,51.707645416259766],[-114.70917510986322,51.649364471435604],[-114.69944763183588,50.96504592895519],[-114.55593109130854,50.89257049560547],[-114.50601959228516,50.36820983886719],[-114.20777130126953,50.30960845947277],[-114.00005340576172,50.19380569458008],[-114.00170135498047,49.842624664306584],[-114.31745910644531,49.800548553466854],[-114.31732940673822,49.55150222778326],[-114.5729751586914,49.55699157714855],[-114.69048309326166,49.553718566894645],[-114.63993835449213,49.827720642089844],[-114.6
 6636657714838,50.05094528198242],[-114.79760742187489,50.32612228393566],[-115.01369476318354,50.57085800170893],[-115.23098754882812,50.54487991333019],[-115.31512451171875,50.72582626342779],[-115.55091857910156,50.79706573486334],[-115.64883422851557,50.9975204467774],[-115.923599243164,51.083087921142635],[-116.00758361816406,51.22197341918957],[-116.28260803222656,51.33150100708002],[-116.29248046874994,51.46181488037121],[-116.59501647949219,51.66183090209972],[-116.68207550048828,51.81214523315441],[-116.9205703735351,51.709804534912166],[-117.01946258544916,51.891361236572266],[-117.19721984863276,51.980136871338004],[-117.33403778076172,52.14863967895508],[-117.61126708984375,52.14425659179693],[-117.83958435058594,52.27412796020508],[-117.70579528808594,52.3653450012207],[-117.96678924560547,52.46970748901373],[-118.22602844238276,52.3803062438966],[-118.44829559326172,52.8852653503418],[-118.66020965576172,52.96393585205078],[-118.73234558105463,53.119247436523494],[-118.
 94745635986328,53.23892974853527],[-119.23274230957026,53.18175888061529],[-119.40608215332031,53.36809158325201],[-119.2370834350586,53.47411346435558],[-118.79165649414057,53.416175842285156],[-118.3601455688476,53.45699691772472],[-117.95883178710932,53.33019638061535],[-117.55301666259766,52.99137878417963],[-117.0803833007812,52.71654891967779],[-116.8185806274414,52.71741485595709]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":6,"NAME_2":"Division No. 15","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-110,60.00000000000006],[-109.99999237060547,58.86151885986334],[-110.00000762939453,58.04086303710949],[-110,56.83329391479492],[-110.00011444091791,55.331233978271484],[-111.30324554443348,55.33084869384771],[-111.40225219726562,55.46071243286127],[-111.41273498535156,55.98443984985363],[-112.64553833007807,55.984653472900504],[-112.5173110961914,56.18637847900385],[-112.7156753540039,56.50709152221674],[-112.76512145996088,57.29436874389654],[-113.09460449218744,57.38235092163097],[-114,57.381130218505916],[-113.99999237060547,58.00000000000006],[-114.00009155273438,59.47468948364269],[-115.55567169189447,59.475967407226506],[-115.5671615600586,60.00004959106445],[-114,60.00000000000006],[-111.75,60.00000000000006],[-110,60.00000000000006]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":7,"NAME_2":"Division No. 16","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","N
 L_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-115.5671615600586,60.00004959106445],[-115.55567169189447,59.475967407226506],[-114.00009155273438,59.47468948364269],[-113.99999237060547,58.00000000000006],[-114,57.381130218505916],[-113.09460449218744,57.38235092163097],[-112.76512145996088,57.29436874389654],[-112.7156753540039,56.50709152221674],[-112.5173110961914,56.18637847900385],[-112.64553833007807,55.984653472900504],[-112.63323211669916,55.75239944458008],[-112.79398345947266,55.638931274414176],[-112.7635498046875,55.460823059081974],[-112.90389251708973,55.02410888671881],[-113.3613052368164,55.02386093139654],[-113.66560363769531,54.936729431152344],[-113.69735717773438,54.58755111694336],[-114.32343292236322,54.58863830566406],[-114.2201309204101,54.850471496581974],[-115.06993865966791,54.85028839111328],[-115.06288909912104,54.49929428100586],[-115.96249389648432,54.50003814697277],[-115.984375,54.84953308105469],[-116.74542999267578,54.850288391113
 28],[-116.74263763427734,55.11259460449219],[-116.92171478271479,55.11244201660162],[-116.9209365844726,55.373870849609375],[-116.7699203491211,55.37419509887695],[-116.7932662963866,55.723114013671875],[-116.91958618164062,55.737548828125114],[-116.9762954711914,55.941509246826286],[-117.52570343017578,55.98544311523443],[-117.3207015991211,56.24984359741211],[-117.9999160766601,56.25000000000006],[-117.99986267089844,56.16473007202143],[-118.78388214111328,56.15999984741211],[-119.1640396118164,56.31467819213867],[-119.62034606933594,56.1720924377442],[-120,56.148120880126896],[-120.0000228881836,56.943271636963004],[-120.0000228881836,58.00000000000006],[-120,59.224296569824276],[-120,60.00000000000006],[-117.49999999999994,60.00000000000006],[-115.5671615600586,60.00004959106445]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":8,"NAME_2":"Division No. 17","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_
 2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-116.9209365844726,55.373870849609375],[-116.92171478271479,55.11244201660162],[-116.74263763427734,55.11259460449219],[-116.74542999267578,54.85028839111328],[-115.984375,54.84953308105469],[-115.96249389648432,54.50003814697277],[-115.96997833251953,54.41269302368164],[-116.25041198730463,54.256103515625114],[-116.69900512695307,54.119136810302734],[-116.84798431396479,54.00081253051769],[-117.06784057617188,53.975086212158146],[-117.47514343261707,54.02932739257824],[-118.06812286376947,53.90998077392578],[-118.12482452392578,53.80658340454107],[-118.99934387207031,53.80493545532238],[-119.48502349853516,53.8465461730957],[-119.48410034179688,54.02488327026367],[-119.81336212158192,53.89474105834972],[-120,53.93741226196295],[-119.99992370605469,54.93779373168945],[-119.61444854736328,54.93864822387707],[-119.28614044189447,55.0391006469726],[-118.66541290283197,55.057193756103516],[-118.22119903564442,55.17909240722
 6506],[-118.2960357666015,55.2940559387207],[-118.05748748779297,55.56888961791992],[-117.70451354980469,55.55690383911133],[-117.53865814208973,55.37493133544933],[-116.9209365844726,55.373870849609375]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":9,"NAME_2":"Division No. 18","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-116.9209365844726,55.373870849609375],[-117.53865814208973,55.37493133544933],[-117.70451354980469,55.55690383911133],[-118.05748748779297,55.56888961791992],[-118.2960357666015,55.2940559387207],[-118.22119903564442,55.179092407226506],[-118.66541290283197,55.057193756103516],[-119.28614044189447,55.0391006469726],[-119.61444854736328,54.93864822387707],[-119.99992370605469,54.93779373168945],[-120,56.148120880126896],[-119.62034606933594,56.1720924377442],[-119.1640396118164,56.31467819213867],[-118.78388214111328,56.15999984741211],[-117.99986267089844,56.16473007202143],[-117.9999160766601,56.25000000000006],[-117.3207015991211,56.24984359741211],[-117.52570343017578,55.98544311523443],[-116.9762954711914,55.941509246826286],[-116.91958618164062,55.737548828125114],[-116.7932662963866,55.723114013671875],[-116.7699203491211,55.37419509887695],[-116.9209365844726,55.373870849609375]]]},"properties":{"ID_0":42,"ISO":
 "CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":10,"NAME_2":"Division No. 19","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-110.0038833618164,50.134704589843864],[-110.00502014160156,49.00005722045904],[-111.34130096435536,49.0001220703125],[-111.4407348632812,49.2636451721192],[-111.75472259521484,49.262722015380916],[-111.88902282714844,49.34989547729498],[-111.90159606933594,49.567260742187614],[-111.6304702758789,49.53070068359375],[-111.63040924072266,49.873260498046875],[-111.70321655273426,49.93557357788086],[-111.37018585205072,50.13582229614258],[-111.38814544677734,50.702976226806754],[-110.28187561035156,50.70295715332031],[-110.13327026367182,50.681343078613395],[-110.00312805175781,50.83884429931646],[-110.0038833618164,50.134704589843864]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":11,"NAME_2":"Division No. 1","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-111.38814544677734,50.702976226806754],[-111.37018585205072,50.13582229614258],[-111.70321655273426,49.93557357788086],[-111.63040924072266,49.873260498046875],[-111.6304702758789,49.53070068359375],[-111.90159606933594,49.567260742187614],[-111.88902282714844,49.34989547729498],[-111.75472259521484,49.262722015380916],[-111.4407348632812,49.2636451721192],[-111.34130096435536,49.0001220703125],[-112.4095840454101,49.00060272216808],[-112.40847778320312,49.17353820800787],[-112.69540405273432,49.173950195312614],[-112.76306915283203,49.52325820922857],[-112.98296356201172,49.73354339599615],[-113.19407653808588,49.78976058959972],[-113.27750396728516,50.048625946044865],[-112.81331634521484,50.07749176025402],[-112.64379119873041,50.13558959960943],[-112.4321899414062,50.31074905395508],[-112.17473602294922,50.310905456543026],[-112.1895523071289,50.437107086181754],[-112.50181579589838,50.64030075073242],[-112.6356735
 2294922,50.92198562622082],[-112.23599243164062,51.217750549316406],[-111.96820068359375,51.071613311767635],[-111.80300903320312,50.84426116943371],[-111.62547302246088,50.86005783081055],[-111.38814544677734,50.702976226806754]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":12,"NAME_2":"Division No. 2","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-113.27750396728516,50.048625946044865],[-113.19407653808588,49.78976058959972],[-112.98296356201172,49.73354339599615],[-112.76306915283203,49.52325820922857],[-112.69540405273432,49.173950195312614],[-112.40847778320312,49.17353820800787],[-112.4095840454101,49.00060272216808],[-114.07023620605457,49.00068283081066],[-114.1749038696289,49.163551330566406],[-114.4021224975586,49.213272094726676],[-114.59843444824219,49.41256332397461],[-114.5729751586914,49.55699157714855],[-114.31732940673822,49.55150222778326],[-114.31745910644531,49.800548553466854],[-114.00170135498047,49.842624664306584],[-114.00005340576172,50.19380569458008],[-114.20777130126953,50.30960845947277],[-114.20809936523438,50.39722442626953],[-113.56501770019531,50.41173553466797],[-113.27680206298828,50.135635375976676],[-113.27750396728516,50.048625946044865]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2
 ":13,"NAME_2":"Division No. 3","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-110.00514221191406,52.055622100830135],[-110.00341796875,51.35809707641607],[-110.00312805175781,50.83884429931646],[-110.13327026367182,50.681343078613395],[-110.28187561035156,50.70295715332031],[-111.38814544677734,50.702976226806754],[-111.62547302246088,50.86005783081055],[-111.80300903320312,50.84426116943371],[-111.96820068359375,51.071613311767635],[-112.23599243164062,51.217750549316406],[-112.4530029296875,51.32083892822271],[-112.2543106079101,51.41592788696295],[-112.11453247070307,51.59123992919922],[-112.20133209228516,51.85299682617193],[-112.00009155273432,51.969093322753906],[-111.29060363769531,51.96761703491211],[-111.14630889892578,52.23041152954113],[-110.36055755615234,52.230571746826286],[-110.3623428344726,52.11394500732433],[-110.00514221191406,52.055622100830135]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":14,"NAME_2":"Division No. 4","TYPE_2":"C
 ensus Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-112.91816711425776,51.969352722168026],[-112.69801330566406,51.88163375854492],[-112.20133209228516,51.85299682617193],[-112.11453247070307,51.59123992919922],[-112.2543106079101,51.41592788696295],[-112.4530029296875,51.32083892822271],[-112.23599243164062,51.217750549316406],[-112.63567352294922,50.92198562622082],[-112.50181579589838,50.64030075073242],[-112.1895523071289,50.437107086181754],[-112.17473602294922,50.310905456543026],[-112.4321899414062,50.31074905395508],[-112.64379119873041,50.13558959960943],[-112.81331634521484,50.07749176025402],[-113.27750396728516,50.048625946044865],[-113.27680206298828,50.135635375976676],[-113.56501770019531,50.41173553466797],[-113.48989868164057,50.57243728637695],[-113.60655975341786,50.79044723510742],[-113.6324844360351,51.12547683715832],[-113.37649536132812,51.24189376831055],[-113.37996673583973,51.44524002075195],[-113.66169738769531,51.444999694824276],[-113.642417
 90771473,51.67848205566412],[-113.71366119384754,51.896202087402344],[-113.4814682006836,51.9833984375],[-112.91816711425776,51.969352722168026]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":15,"NAME_2":"Division No. 5","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-113.71366119384754,51.896202087402344],[-113.64241790771473,51.67848205566412],[-113.66169738769531,51.444999694824276],[-113.37996673583973,51.44524002075195],[-113.37649536132812,51.24189376831055],[-113.6324844360351,51.12547683715832],[-113.60655975341786,50.79044723510742],[-113.48989868164057,50.57243728637695],[-113.56501770019531,50.41173553466797],[-114.20809936523438,50.39722442626953],[-114.20777130126953,50.30960845947277],[-114.50601959228516,50.36820983886719],[-114.55593109130854,50.89257049560547],[-114.69944763183588,50.96504592895519],[-114.70917510986322,51.649364471435604],[-114.82846832275385,51.707645416259766],[-114.99447631835938,51.88914489746094],[-114.49697875976557,51.93459701538097],[-114.16692352294916,51.88239669799805],[-113.71366119384754,51.896202087402344]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":16,"NAME_2":"Division No. 6","TYPE_2":
 "Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-110.00517272949213,52.85484313964844],[-110.00514221191406,52.055622100830135],[-110.3623428344726,52.11394500732433],[-110.36055755615234,52.230571746826286],[-111.14630889892578,52.23041152954113],[-111.29060363769531,51.96761703491211],[-112.00009155273432,51.969093322753906],[-112.20133209228516,51.85299682617193],[-112.69801330566406,51.88163375854492],[-112.91816711425776,51.969352722168026],[-113.06421661376953,52.20169448852539],[-113.07564544677729,52.376037597656364],[-112.93873596191406,52.49157714843756],[-112.59603118896479,52.66764450073242],[-112.32636260986328,52.726726531982365],[-112.32632446289057,53.017795562744084],[-111.98747253417963,53.01677703857422],[-111.79224395751953,52.930381774902344],[-111.40528106689447,52.9299201965332],[-111.42997741699213,53.14656066894537],[-111.21109008789057,53.14664077758795],[-111.02947998046875,53.05967330932623],[-110.4942855834961,53.03749465942383],[-110.320
 9381103515,52.914489746093864],[-110.00517272949213,52.85484313964844]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":17,"NAME_2":"Division No. 7","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-113.09766387939447,52.75575637817383],[-112.93873596191406,52.49157714843756],[-113.07564544677729,52.376037597656364],[-113.06421661376953,52.20169448852539],[-112.91816711425776,51.969352722168026],[-113.4814682006836,51.9833984375],[-113.71366119384754,51.896202087402344],[-114.16692352294916,51.88239669799805],[-114.49697875976557,51.93459701538097],[-114.42874908447266,52.13018417358404],[-114.46549224853516,52.56667709350597],[-114.64837646484375,52.59527969360363],[-114.5816421508789,52.84354782104498],[-114.14500427246082,52.887050628662166],[-114.05010223388666,52.84383773803705],[-113.49925231933588,52.843238830566406],[-113.09766387939447,52.75575637817383]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":18,"NAME_2":"Division No. 8","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-114.5816421508789,52.84354782104498],[-114.64837646484375,52.59527969360363],[-114.46549224853516,52.56667709350597],[-114.42874908447266,52.13018417358404],[-114.49697875976557,51.93459701538097],[-114.99447631835938,51.88914489746094],[-114.82846832275385,51.707645416259766],[-114.99317169189447,51.620841979980526],[-115.5740966796875,51.619102478027344],[-116.07980346679682,51.91316223144531],[-116.32466888427734,51.78683090209961],[-116.50903320312494,51.81463623046881],[-116.71990203857416,52.062164306640625],[-116.97129821777338,52.14946746826166],[-117.10042572021479,52.26379013061535],[-116.87620544433588,52.486980438232365],[-116.8185806274414,52.71741485595709],[-116.61273956298828,52.842361450195426],[-115.59809112548822,52.843143463134766],[-115.28114318847656,52.85889816284191],[-115.197280883789,53.05172348022472],[-115.02373504638672,53.0623512268067],[-115.01590728759766,52.843585968017635],[-114.581642
 1508789,52.84354782104498]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":1,"NAME_1":"Alberta","ID_2":19,"NAME_2":"Division No. 9","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-124.96806335449207,49.43363952636719],[-124.58250427246094,49.14012527465832],[-124.539566040039,48.934402465820426],[-124.8433609008789,48.66607666015619],[-125.21131134033197,48.79774856567394],[-125.10855102539062,48.972881317138615],[-125.36924743652338,48.997589111328125],[-125.51126098632807,48.921981811523494],[-125.75,49.06861114501959],[-125.80188751220703,49.29741287231451],[-126.01249694824213,49.24111175537121],[-126.14881896972656,49.400669097900504],[-126.58361053466797,49.41777801513672],[-126.5609512329101,49.54071807861334],[-125.97118377685547,49.585391998291016],[-125.49999999999994,49.478393554687614],[-125.37987518310547,49.54855728149414],[-125.1082763671875,49.51435089111334],[-124.96806335449207,49.43363952636719]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":20,"NAME_2":"Alberni-Clayoquot","TYPE_2":"Regional District","ENGTYPE_2":"Regional 
 District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-124.43842315673828,56.00004959106451],[-124.30821990966797,55.70669937133795],[-123.9303207397461,55.55494689941412],[-123.85262298583979,55.33935928344738],[-123.49548339843744,55.31431961059576],[-123.41658782958984,55.03388595581055],[-123.69107055664057,54.92379760742193],[-123.81104278564447,55.03804397583002],[-124.0519409179687,54.950744628906364],[-123.94806671142578,54.76750183105463],[-123.77831268310547,54.65908432006836],[-123.98563385009766,54.42958831787115],[-123.81890106201172,54.336627960205135],[-123.5542373657226,54.30616760253906],[-123.60108184814453,54.0566139221192],[-123.42635345458973,53.97236633300781],[-123.5,53.72917175292969],[-123.305679321289,53.62802886962902],[-123.30248260498047,53.47104263305664],[-123.99668884277344,53.48396682739258],[-124.1361312866211,53.408267974853516],[-124.50419616699207,53.52975463867193],[-124.52241516113281,53.40301513671875],[-124.73545074462885,53.3550682
 0678711],[-124.99999999999994,53.403320312500114],[-124.99999999999994,53],[-126.60942077636713,53.00007247924805],[-127.03277587890625,53.114055633545036],[-127.26663970947266,53.27727890014654],[-127.43408966064453,53.490661621093864],[-127.7472534179687,53.607151031494254],[-127.99639892578125,53.85607910156256],[-127.89178466796875,54.021835327148494],[-127.5933837890625,54.31268310546881],[-127.53754425048817,54.43496322631836],[-127.779541015625,54.467121124267635],[-127.8012084960937,55.00012207031256],[-126.93655395507812,55.00014495849621],[-126.64617919921875,55.1016845703125],[-126.83758544921875,55.22229003906256],[-126.87078857421875,55.35229492187494],[-127.30924987792969,55.514602661132756],[-127.46479034423828,55.510841369628906],[-127.71338653564447,55.71057128906256],[-128.180908203125,55.72308349609369],[-128.1895751953124,55.906921386718864],[-128.3646240234375,56.00006866455078],[-126.5,56.000000000000114],[-124.43842315673828,56.00004959106451]]]},"properties":
 {"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":21,"NAME_2":"Bulkley-Nechako","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-123.55464172363281,48.53600692749029],[-123.46933746337885,48.42094039916992],[-123.66638946533197,48.319999694824276],[-124.5002822875976,48.54294586181646],[-124.28044128417963,48.680988311767635],[-123.69296264648438,48.61642456054693],[-123.55464172363281,48.53600692749029]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":22,"NAME_2":"Capital","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-123.30248260498047,53.47104263305664],[-123.30146026611328,53.28545379638683],[-123.0039291381836,53.27215576171875],[-122.83043670654297,53.37036514282232],[-122.34794616699219,53.37364959716797],[-122.27452087402344,53.45614242553711],[-121.28781127929682,53.44616699218756],[-121.22773742675776,53.385112762451286],[-120.46698760986322,53.14910507202154],[-120.3360824584961,52.926799774170036],[-120.14131927490229,52.87693023681635],[-120.31160736083984,52.85883331298828],[-120.23391723632807,52.63506317138683],[-120.53459930419916,52.3300666809082],[-120.29338836669922,52.082912445068416],[-120.24963378906244,51.9400367736817],[-120.33836364746094,51.73384857177746],[-120.55970001220697,51.6620979309082],[-120.5602035522461,51.435825347900504],[-121.14191436767572,51.44000625610363],[-121.42028808593744,51.37734985351574],[-121.52706146240234,51.54854965209972],[-122.5595703125,51.4854087829591],[-122.67819213867182,
 51.294399261474666],[-122.53874206542963,51.20491409301758],[-122.57894897460938,51.10340118408209],[-123.03302764892572,51.20026397705084],[-123.23517608642578,51.0580291748048],[-123.66169738769526,50.8802947998048],[-123.75756072998041,50.88335418701183],[-124.05912780761719,50.95835494995123],[-124.18500518798828,51.13481140136719],[-124.43400573730457,51.14812850952154],[-124.76244354248041,51.238021850585994],[-124.88820648193354,51.3301887512207],[-125.26677703857422,51.37665176391613],[-125.25460815429682,51.76484680175787],[-125.57511138916016,51.9130210876466],[-125.66828155517578,52.121654510498104],[-125.34320068359375,52.34434509277355],[-125.8844375610351,52.627990722656364],[-126.35869598388666,52.53518295288097],[-126.64691162109364,52.94150924682617],[-126.60942077636713,53.00007247924805],[-124.99999999999994,53],[-124.99999999999994,53.403320312500114],[-124.73545074462885,53.35506820678711],[-124.52241516113281,53.40301513671875],[-124.50419616699207,53.529754638
 67193],[-124.1361312866211,53.408267974853516],[-123.99668884277344,53.48396682739258],[-123.30248260498047,53.47104263305664]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":23,"NAME_2":"Cariboo","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-127.98267364501953,52.074111938476676],[-128.02000427246088,51.81611251831066],[-128.25054931640625,51.888332366943416],[-128.1598205566405,52.04419708251953],[-127.98267364501953,52.074111938476676]]],[[[-127.25987243652344,52.425411224365234],[-127.21562957763672,52.32081222534191],[-127.63619232177734,52.14036560058594],[-127.71333312988281,51.96389007568354],[-127.90216827392578,52.00421905517584],[-127.76551055908203,52.245979309081974],[-127.62545013427729,52.26122283935558],[-127.25987243652344,52.425411224365234]]],[[[-126.60942077636713,53.00007247924805],[-126.64691162109364,52.94150924682617],[-126.35869598388666,52.53518295288097],[-125.8844375610351,52.627990722656364],[-125.34320068359375,52.34434509277355],[-125.66828155517578,52.121654510498104],[-125.57511138916016,51.9130210876466],[-125.88032531738276,51.96306228637695],[-125.9504623413086,51.64834594726568],[-126.21621704101557,51.453205108642
 58],[-126.45063781738276,51.475322723388615],[-126.69892120361328,51.40893936157221],[-126.99750518798828,51.24065399169922],[-127.39133453369135,51.228504180908146],[-127.75272369384766,51.15871047973633],[-127.66722106933588,51.39972305297857],[-127.8894424438476,51.69250106811529],[-127.88778686523438,51.88567352294933],[-127.6666641235351,51.95999908447271],[-127.60752105712885,52.12113189697271],[-127.10863494873047,52.33354949951172],[-127.26062774658203,52.47589492797863],[-127.4852828979491,52.34038925170904],[-127.89863586425781,52.22465133666998],[-127.93250274658203,52.31782913208008],[-128.21487426757812,52.47994995117193],[-128.10894775390625,52.67866516113287],[-127.5624160766601,52.69039154052729],[-127.22200012207031,52.82203674316406],[-127.2433242797851,53.016288757324276],[-127.4725952148437,53.12414169311529],[-127.26663970947266,53.27727890014654],[-127.03277587890625,53.114055633545036],[-126.60942077636713,53.00007247924805]]]]},"properties":{"ID_0":42,"ISO":"
 CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":24,"NAME_2":"Central Coast","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-116.79499816894531,50.73008728027344],[-116.65435791015625,50.598583221435604],[-116.6891021728515,50.492401123046875],[-116.47102355957031,50.03815841674805],[-116.6850357055664,49.813491821289176],[-116.59032440185536,49.699832916259766],[-116.68647766113281,49.572925567626896],[-116.57636260986322,49.45679473876959],[-116.31155395507807,49.5248641967774],[-116.15561676025385,49.28482055664057],[-116.02742767333979,49.19957351684576],[-116.02704620361322,49.00091552734381],[-117.4696273803711,49.00092315673834],[-117.504638671875,49.157699584960994],[-117.70281219482422,49.265239715576286],[-118.1362533569336,49.2639427185058],[-118.28750610351562,49.49530410766596],[-118.31215667724604,49.81223678588873],[-118.41879272460932,49.91370010375982],[-118.39805603027344,50.0790252685548],[-118.23906707763672,50.19606781005865],[-118.2810668945312,50.393562316894474],[-118.17546844482422,50.493564605713004],[-118.207107543
 94531,50.690231323242244],[-118.01350402832031,50.65273666381836],[-117.97702026367188,50.53369140625006],[-117.74020385742188,50.55451583862305],[-117.32099914550776,50.48712539672846],[-117.22978973388672,50.64819335937494],[-117.48818969726557,50.886356353759766],[-117.30706024169922,51.05107879638672],[-117.03683471679676,50.95749664306646],[-117.0391006469726,50.814994812011776],[-116.79499816894531,50.73008728027344]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":25,"NAME_2":"Central Kootenay","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-119.05560302734375,49.81233215332037],[-119.37558746337885,49.67890930175781],[-119.48586273193354,49.74636077880871],[-119.9795150756836,49.76613616943365],[-120.05582427978516,49.85531616210932],[-119.76900482177729,50.04312133789068],[-119.76281738281239,50.23297119140619],[-119.47099304199207,50.150245666503906],[-119.14595031738276,50.15118789672863],[-118.86903381347645,50.0527076721192],[-118.85372924804688,49.95775604248047],[-119.05560302734375,49.81233215332037]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":26,"NAME_2":"Central Okanagan","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-116.28260803222656,51.33150100708002],[-116.26023864746088,51.1270103454591],[-116.76353454589844,50.84815216064453],[-116.79499816894531,50.73008728027344],[-117.0391006469726,50.814994812011776],[-117.03683471679676,50.95749664306646],[-117.30706024169922,51.05107879638672],[-117.48818969726557,50.886356353759766],[-117.22978973388672,50.64819335937494],[-117.32099914550776,50.48712539672846],[-117.74020385742188,50.55451583862305],[-117.97702026367188,50.53369140625006],[-118.01350402832031,50.65273666381836],[-118.20710754394531,50.690231323242244],[-118.29483032226562,50.86699676513672],[-118.53417968749994,50.93421173095709],[-118.88215637207026,50.75119781494135],[-119.18045043945312,50.75024414062494],[-119.18344879150385,50.52780151367199],[-119.31769561767578,50.41623306274414],[-119.64464569091791,50.40225219726568],[-119.52556610107422,50.57664871215826],[-119.52471923828125,50.75093460083008],[-119.6641998
 291015,50.86771392822277],[-119.537109375,50.983558654785156],[-119.44002532958984,51.22227096557617],[-118.95323181152338,51.46194076538097],[-118.88701629638672,51.775043487548885],[-118.98789978027344,51.93126678466791],[-118.80296325683594,52.17701721191412],[-118.58137512207026,52.19260787963873],[-118.49198150634766,52.31210708618164],[-118.22602844238276,52.3803062438966],[-117.96678924560547,52.46970748901373],[-117.70579528808594,52.3653450012207],[-117.83958435058594,52.27412796020508],[-117.61126708984375,52.14425659179693],[-117.33403778076172,52.14863967895508],[-117.19721984863276,51.980136871338004],[-117.01946258544916,51.891361236572266],[-116.9205703735351,51.709804534912166],[-116.68207550048828,51.81214523315441],[-116.59501647949219,51.66183090209972],[-116.29248046874994,51.46181488037121],[-116.28260803222656,51.33150100708002]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":27,"NAME_2":"Columbia-Shuswap","T
 YPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-126.79535675048828,49.885650634765625],[-126.66924285888672,49.854778289795036],[-126.61405181884766,49.590602874755916],[-126.82707977294922,49.618247985839844],[-126.96959686279291,49.798049926757926],[-126.79535675048828,49.885650634765625]]],[[[-124.7574462890625,49.463958740234375],[-124.96806335449207,49.43363952636719],[-125.1082763671875,49.51435089111334],[-125.37987518310547,49.54855728149414],[-125.49999999999994,49.478393554687614],[-125.97118377685547,49.585391998291016],[-126.5609512329101,49.54071807861334],[-126.65277862548828,49.81250000000006],[-126.80024719238276,49.90666580200207],[-127.15389251708984,49.85944366455084],[-127.24250030517578,49.96861267089838],[-127.65499877929688,50.1569442749024],[-127.91832733154291,50.12538909912104],[-127.52555847167969,50.27907180786133],[-127.33272552490234,50.23211288452143],[-127.09614562988281,50.339878082275334],[-126.65920257568354,50.01865005493175
 4],[-126.38894653320312,49.90705108642578],[-126.25357818603516,50.06869888305664],[-126.0439834594726,50.18055343627941],[-126.05889892578125,50.43967819213867],[-126.05777740478516,50.439445495605526],[-126.05682373046875,50.43924713134771],[-125.9438247680664,50.39050674438482],[-125.44166564941406,50.320556640625],[-125.35842895507812,50.1287460327149],[-125.1824722290039,49.914443969726506],[-124.86353302001947,49.693649291992244],[-124.7574462890625,49.463958740234375]]],[[[-123.75756072998041,50.88335418701183],[-123.83148193359375,50.71377944946289],[-123.97370147705078,50.80381393432623],[-124.34783172607422,50.7462730407716],[-124.59115600585932,50.66158676147472],[-124.5752944946289,50.41961669921881],[-124.82833099365229,50.306945800781364],[-125.26934051513672,50.46056747436535],[-125.70346069335938,50.42204284667969],[-126.18632507324219,50.5385475158692],[-125.97203826904297,50.62059783935547],[-125.60482025146479,50.60950088500982],[-125.4960098266601,50.900817871093
 81],[-125.32302856445312,51.04606628417963],[-125.26677703857422,51.37665176391613],[-124.88820648193354,51.3301887512207],[-124.76244354248041,51.238021850585994],[-124.43400573730457,51.14812850952154],[-124.18500518798828,51.13481140136719],[-124.05912780761719,50.95835494995123],[-123.75756072998041,50.88335418701183]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":28,"NAME_2":"Comox-Strathcona","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-123.76670074462885,49.057247161865234],[-123.75499725341797,48.95805740356445],[-123.55854034423828,48.78316116333008],[-123.55464172363281,48.53600692749029],[-123.69296264648438,48.61642456054693],[-124.28044128417963,48.680988311767635],[-124.5002822875976,48.54294586181646],[-124.8433609008789,48.66607666015619],[-124.539566040039,48.934402465820426],[-124.58250427246094,49.14012527465832],[-124.47911834716797,49.02148818969738],[-124.10231781005848,48.99815368652338],[-123.76670074462885,49.057247161865234]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":29,"NAME_2":"Cowichan Valley","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-114.5729751586914,49.55699157714855],[-114.59843444824219,49.41256332397461],[-114.4021224975586,49.213272094726676],[-114.1749038696289,49.163551330566406],[-114.07023620605457,49.00068283081066],[-116.02704620361322,49.00091552734381],[-116.02742767333979,49.19957351684576],[-116.15561676025385,49.28482055664057],[-116.31155395507807,49.5248641967774],[-116.57636260986322,49.45679473876959],[-116.68647766113281,49.572925567626896],[-116.59032440185536,49.699832916259766],[-116.6850357055664,49.813491821289176],[-116.47102355957031,50.03815841674805],[-116.6891021728515,50.492401123046875],[-116.65435791015625,50.598583221435604],[-116.79499816894531,50.73008728027344],[-116.76353454589844,50.84815216064453],[-116.26023864746088,51.1270103454591],[-116.28260803222656,51.33150100708002],[-116.00758361816406,51.22197341918957],[-115.923599243164,51.083087921142635],[-115.64883422851557,50.9975204467774],[-115.5509185791
 0156,50.79706573486334],[-115.31512451171875,50.72582626342779],[-115.23098754882812,50.54487991333019],[-115.01369476318354,50.57085800170893],[-114.79760742187489,50.32612228393566],[-114.66636657714838,50.05094528198242],[-114.63993835449213,49.827720642089844],[-114.69048309326166,49.553718566894645],[-114.5729751586914,49.55699157714855]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":30,"NAME_2":"East Kootenay","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-119.99998474121088,53.806236267089844],[-119.71340942382807,53.61457824707037],[-119.89948272705078,53.51912689208996],[-119.66889953613281,53.36782836914074],[-119.40608215332031,53.36809158325201],[-119.23274230957026,53.18175888061529],[-118.94745635986328,53.23892974853527],[-118.73234558105463,53.119247436523494],[-118.66020965576172,52.96393585205078],[-118.44829559326172,52.8852653503418],[-118.22602844238276,52.3803062438966],[-118.49198150634766,52.31210708618164],[-118.58137512207026,52.19260787963873],[-118.80296325683594,52.17701721191412],[-118.92668914794922,52.35365295410162],[-118.9275512695312,52.568874359130916],[-119.055923461914,52.633403778076286],[-119.76735687255854,52.659965515136776],[-120.02351379394526,52.75822830200195],[-120.14131927490229,52.87693023681635],[-120.3360824584961,52.926799774170036],[-120.46698760986322,53.14910507202154],[-121.22773742675776,53.385112762451286],[-121.2878112
 7929682,53.44616699218756],[-122.27452087402344,53.45614242553711],[-122.34794616699219,53.37364959716797],[-122.83043670654297,53.37036514282232],[-123.0039291381836,53.27215576171875],[-123.30146026611328,53.28545379638683],[-123.30248260498047,53.47104263305664],[-123.305679321289,53.62802886962902],[-123.5,53.72917175292969],[-123.42635345458973,53.97236633300781],[-123.60108184814453,54.0566139221192],[-123.5542373657226,54.30616760253906],[-123.81890106201172,54.336627960205135],[-123.98563385009766,54.42958831787115],[-123.77831268310547,54.65908432006836],[-123.94806671142578,54.76750183105463],[-124.0519409179687,54.950744628906364],[-123.81104278564447,55.03804397583002],[-123.69107055664057,54.92379760742193],[-123.41658782958984,55.03388595581055],[-123.49548339843744,55.31431961059576],[-123.85262298583979,55.33935928344738],[-123.9303207397461,55.55494689941412],[-123.80736541748047,55.757495880126896],[-123.93311309814447,55.90977478027355],[-123.81002807617188,55.979
 465484619254],[-123.57617950439453,55.87037658691406],[-123.3680191040039,55.860721588134766],[-123.26179504394531,55.697002410888786],[-122.93477630615234,55.521968841552734],[-123.00743103027344,55.44615554809576],[-122.41857147216791,55.31594848632818],[-122.24789428710932,55.13095092773443],[-121.55541992187494,54.81927871704096],[-121.52410125732422,54.65142822265631],[-121.35516357421864,54.53565979003912],[-121.14483642578125,54.552589416503906],[-120.6593017578125,54.354946136474666],[-120.53182983398432,54.135837554931754],[-119.99998474121088,53.806236267089844]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":31,"NAME_2":"Fraser-Fort George","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-122.12632751464844,49.17847824096691],[-122.23483276367176,49.140743255615234],[-122.42742156982422,49.17173385620123],[-122.40888977050781,49.352474212646484],[-122.53540802001947,49.47433090209961],[-122.81477355957031,49.57276916503912],[-122.81127166748047,49.71057510375982],[-122.98457336425781,49.85741043090826],[-122.67968749999994,49.98150634765631],[-122.7880859375,50.13153076171875],[-122.25856781005854,50.1239013671875],[-121.6102447509765,50.042263031005916],[-121.31477355957031,50.05265426635742],[-121.1640625,49.88190841674816],[-121.12532043457026,49.68014526367193],[-120.96183776855463,49.673446655273494],[-121.09764862060541,49.353012084960994],[-120.90279388427734,49.175479888916016],[-120.84837341308588,49.0009651184082],[-122.45917510986328,49.00280380249035],[-122.46125030517578,49.165222167968864],[-122.33251953125,49.106079101562614],[-122.12632751464844,49.17847824096691]]]},"properties":{"ID_0"
 :42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":32,"NAME_2":"Fraser Valley","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.46125030517578,49.165222167968864],[-122.45917510986328,49.00280380249035],[-122.75385284423828,49.00329208374029],[-123.03852844238281,49.14168930053711],[-122.88350677490229,49.212554931640625],[-122.46125030517578,49.165222167968864]]],[[[-122.42742156982422,49.17173385620123],[-122.88096618652344,49.22399139404297],[-123.19905090332031,49.12465286254894],[-123.28394317626947,49.35738754272472],[-123.24532318115229,49.48140335083008],[-122.81477355957031,49.57276916503912],[-122.53540802001947,49.47433090209961],[-122.40888977050781,49.352474212646484],[-122.42742156982422,49.17173385620123]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":33,"NAME_2":"Greater Vancouver","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-129.272216796875,52.827514648437614],[-128.9299926757812,52.61277770996094],[-129.1177978515625,52.543884277343864],[-129.30667114257807,52.76222229003912],[-129.272216796875,52.827514648437614]]],[[[-128.15274047851557,52.787776947021484],[-128.29110717773432,52.52388763427729],[-128.4277954101562,52.5452880859375],[-128.40727233886713,52.796134948730526],[-128.15274047851557,52.787776947021484]]],[[[-129.01000976562494,53.30328369140625],[-128.5742797851562,53.09210205078125],[-128.5233306884765,52.96500015258789],[-128.59271240234375,52.60827636718756],[-128.9305572509765,52.66361236572271],[-129.07611083984364,52.75250244140631],[-129.19888305664062,52.951110839843864],[-129.01000976562494,53.30328369140625]]],[[[-128.3646240234375,56.00006866455078],[-128.1895751953124,55.906921386718864],[-128.180908203125,55.72308349609369],[-127.71338653564447,55.71057128906256],[-127.46479034423828,55.510841369628906],[-
 127.30924987792969,55.514602661132756],[-126.87078857421875,55.35229492187494],[-126.83758544921875,55.22229003906256],[-126.64617919921875,55.1016845703125],[-126.93655395507812,55.00014495849621],[-127.8012084960937,55.00012207031256],[-127.779541015625,54.467121124267635],[-127.53754425048817,54.43496322631836],[-127.5933837890625,54.31268310546881],[-127.89178466796875,54.021835327148494],[-127.99639892578125,53.85607910156256],[-127.7472534179687,53.607151031494254],[-127.43408966064453,53.490661621093864],[-127.26663970947266,53.27727890014654],[-127.4725952148437,53.12414169311529],[-127.2433242797851,53.016288757324276],[-127.22200012207031,52.82203674316406],[-127.5624160766601,52.69039154052729],[-128.10894775390625,52.67866516113287],[-128.21487426757812,52.47994995117193],[-128.1361083984375,52.71252441406244],[-128.4305572509765,52.814167022705135],[-128.60556030273432,53.1616668701173],[-128.88935852050776,53.31209182739252],[-128.97531127929688,53.49474716186529],[-12
 8.81797790527344,53.56896209716797],[-128.92745971679688,53.78647613525396],[-129.23086547851557,53.6312370300293],[-129.37382507324213,53.796562194824276],[-129.3720703125,54.357547760009766],[-129.6758422851562,54.478458404541016],[-129.79438781738276,54.7408447265625],[-130.21276855468744,54.72173309326172],[-130.0380859375,55.023681640625],[-130.1670684814453,55.080257415771484],[-129.94390869140625,55.28808593750006],[-130.1096801757812,55.562072753906364],[-130.13876342773432,55.75267410278326],[-130.00610351562494,55.883609771728516],[-130.10540771484364,56.1226806640625],[-130.42547607421875,56.141723632812614],[-130.46820068359375,56.24328613281256],[-130.78179931640625,56.36712646484381],[-131.08697509765625,56.4061279296875],[-131.58129882812494,56.6123046875],[-131.83538818359375,56.59912109374994],[-131.8731079101562,56.8062744140625],[-132.12310791015625,56.87390136718756],[-132.0447998046874,57.04510498046875],[-132.36871337890625,57.09167480468756],[-132.247802734374
 94,57.21112060546881],[-133.066177368164,57.997585296630916],[-130.7499999999999,58.0001220703125],[-128.99999999999994,58.0001220703125],[-128.99999999999994,57.1649436950683],[-128.8480987548828,57.11714935302729],[-128.63296508789062,56.883922576904354],[-128.1692504882812,56.719783782958984],[-127.84685516357422,56.559112548828125],[-128.1630859375,56.452880859375],[-128.10919189453125,56.347106933593864],[-128.2841796874999,56.244857788085994],[-128.3646240234375,56.00006866455078]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":34,"NAME_2":"Kitimat-Stikine","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-118.31215667724604,49.81223678588873],[-118.28750610351562,49.49530410766596],[-118.1362533569336,49.2639427185058],[-117.70281219482422,49.265239715576286],[-117.504638671875,49.157699584960994],[-117.4696273803711,49.00092315673834],[-119.29492187499994,49.0000457763673],[-119.17805480957031,49.3109016418457],[-119.30078125,49.385353088378906],[-119.37558746337885,49.67890930175781],[-119.05560302734375,49.81233215332037],[-118.31215667724604,49.81223678588873]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":35,"NAME_2":"Kootenay Boundary","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-126.32499694824219,50.834445953369084],[-126.26889038085938,50.65499877929693],[-126.56254577636719,50.73942565917969],[-126.32499694824219,50.834445953369084]]],[[[-126.05889892578125,50.43967819213867],[-126.0439834594726,50.18055343627941],[-126.25357818603516,50.06869888305664],[-126.38894653320312,49.90705108642578],[-126.65920257568354,50.018650054931754],[-127.09614562988281,50.339878082275334],[-127.33272552490234,50.23211288452143],[-127.52555847167969,50.27907180786133],[-127.91832733154291,50.12538909912104],[-127.76059722900385,50.23727035522461],[-127.95777893066406,50.40166854858393],[-128.2233276367187,50.53972244262707],[-128.38945007324213,50.73416519165039],[-128.06277465820312,50.873054504394645],[-127.90833282470692,50.875],[-127.48555755615229,50.76638793945318],[-127.11833190917969,50.589443206787166],[-126.53462982177729,50.48851013183605],[-126.05889892578125,50.43967819213867]]],[[[-125.5
 7511138916016,51.9130210876466],[-125.25460815429682,51.76484680175787],[-125.26677703857422,51.37665176391613],[-125.32302856445312,51.04606628417963],[-125.4960098266601,50.90081787109381],[-125.60482025146479,50.60950088500982],[-125.97203826904297,50.62059783935547],[-126.18389129638666,50.668056488037166],[-126.21630096435541,50.83217239379883],[-126.45763397216797,50.815525054931754],[-126.82761383056635,50.95802307128912],[-127.04777526855469,50.82138824462885],[-127.51555633544922,50.990276336669865],[-127.75272369384766,51.15871047973633],[-127.39133453369135,51.228504180908146],[-126.99750518798828,51.24065399169922],[-126.69892120361328,51.40893936157221],[-126.45063781738276,51.475322723388615],[-126.21621704101557,51.45320510864258],[-125.9504623413086,51.64834594726568],[-125.88032531738276,51.96306228637695],[-125.57511138916016,51.9130210876466]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":36,"NAME_2":"Mount Wa
 ddington","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-123.76670074462885,49.057247161865234],[-124.10231781005848,48.99815368652338],[-124.47911834716797,49.02148818969738],[-124.58250427246094,49.14012527465832],[-124.96806335449207,49.43363952636719],[-124.7574462890625,49.463958740234375],[-124.57360839843744,49.380554199218864],[-123.98110961914062,49.23916625976568],[-123.76670074462885,49.057247161865234]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":37,"NAME_2":"Nanaimo","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-118.20710754394531,50.690231323242244],[-118.17546844482422,50.493564605713004],[-118.2810668945312,50.393562316894474],[-118.23906707763672,50.19606781005865],[-118.39805603027344,50.0790252685548],[-118.41879272460932,49.91370010375982],[-118.31215667724604,49.81223678588873],[-119.05560302734375,49.81233215332037],[-118.85372924804688,49.95775604248047],[-118.86903381347645,50.0527076721192],[-119.14595031738276,50.15118789672863],[-119.47099304199207,50.150245666503906],[-119.76281738281239,50.23297119140619],[-119.64464569091791,50.40225219726568],[-119.31769561767578,50.41623306274414],[-119.18344879150385,50.52780151367199],[-119.18045043945312,50.75024414062494],[-118.88215637207026,50.75119781494135],[-118.53417968749994,50.93421173095709],[-118.29483032226562,50.86699676513672],[-118.20710754394531,50.690231323242244]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia
 ","ID_2":38,"NAME_2":"North Okanagan","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-120,60.00000000000006],[-120,59.224296569824276],[-120.0000228881836,58.00000000000006],[-122,58.00000000000006],[-123.24999999999994,57.999996185302734],[-124.94745635986322,58.00004196166992],[-124.82700347900385,58.20647430419922],[-125.19837951660156,58.23851776123047],[-125.43640136718744,58.340255737304744],[-125.71438598632807,58.306339263916016],[-126.056884765625,58.41963958740246],[-126.29902648925781,58.59772491455084],[-126.60004425048828,58.58481216430664],[-127.04885101318354,58.85096740722656],[-126.96835327148438,59.10240554809582],[-127.16789245605463,59.139560699463004],[-127.49282073974598,59.52753448486328],[-127.72532653808582,59.62976455688488],[-127.80146026611328,59.78498077392578],[-127.7249984741211,60.00002288818365],[-125.25,60.00000000000006],[-123.78933715820312,60.00003433227539],[-122,60.00000000000006],[-120,60.00000000000006]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID
 _1":2,"NAME_1":"British Columbia","ID_2":39,"NAME_2":"Northern Rockies","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-120.05582427978516,49.85531616210932],[-119.9795150756836,49.76613616943365],[-119.48586273193354,49.74636077880871],[-119.37558746337885,49.67890930175781],[-119.30078125,49.385353088378906],[-119.17805480957031,49.3109016418457],[-119.29492187499994,49.0000457763673],[-120.84837341308588,49.0009651184082],[-120.90279388427734,49.175479888916016],[-121.09764862060541,49.353012084960994],[-120.96183776855463,49.673446655273494],[-120.94736480712885,49.7602653503418],[-120.48641967773438,49.77294540405279],[-120.3293838500976,49.91224670410162],[-120.05582427978516,49.85531616210932]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":40,"NAME_2":"Okanagan-Similkameen","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-124.94745635986322,58.00004196166992],[-123.24999999999994,57.999996185302734],[-122,58.00000000000006],[-120.0000228881836,58.00000000000006],[-120.0000228881836,56.943271636963004],[-120,56.148120880126896],[-119.99992370605469,54.93779373168945],[-120,53.93741226196295],[-119.99998474121088,53.806236267089844],[-120.53182983398432,54.135837554931754],[-120.6593017578125,54.354946136474666],[-121.14483642578125,54.552589416503906],[-121.35516357421864,54.53565979003912],[-121.52410125732422,54.65142822265631],[-121.55541992187494,54.81927871704096],[-122.24789428710932,55.13095092773443],[-122.41857147216791,55.31594848632818],[-123.00743103027344,55.44615554809576],[-122.93477630615234,55.521968841552734],[-123.26179504394531,55.697002410888786],[-123.3680191040039,55.860721588134766],[-123.57617950439453,55.87037658691406],[-123.81002807617188,55.979465484619254],[-123.93311309814447,55.90977478027355],[-123.807365
 41748047,55.757495880126896],[-123.9303207397461,55.55494689941412],[-124.30821990966797,55.70669937133795],[-124.43842315673828,56.00004959106451],[-124.83013153076166,56.22488403320324],[-125.11777496337885,56.304302215576286],[-125.65522003173828,56.2294921875],[-125.86387634277344,56.14635467529297],[-126.11529541015625,56.27255249023449],[-126.14271545410156,56.576694488525504],[-126.48802947998036,56.6646614074707],[-126.81112670898432,56.68026733398443],[-127.1284408569336,56.626327514648494],[-127.41523742675781,56.67674255371088],[-127.60206604003906,56.83388519287121],[-127.55915069580078,56.97703552246094],[-127.6945571899414,57.14070510864252],[-127.464859008789,57.20979690551758],[-127.47785186767578,57.335430145263786],[-127.30046844482422,57.44637298583979],[-126.79368591308594,57.56542205810547],[-126.94616699218744,57.98747253417963],[-125.74520874023432,57.86521148681635],[-125.20275115966791,58.022438049316406],[-124.94745635986322,58.00004196166992]]]},"propertie
 s":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":41,"NAME_2":"Peace River","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-123.83148193359375,50.71377944946289],[-123.7433242797851,50.537998199463004],[-123.9957656860351,50.47412109375],[-123.9094619750976,50.35988235473644],[-124.15941619873041,50.33384323120123],[-124.15054321289057,50.0614128112793],[-124.03941345214844,49.929008483886776],[-124.13113403320312,49.78139495849615],[-124.39659118652338,49.765880584716854],[-124.82207489013672,50.02895736694347],[-124.60610961914057,50.199443817138786],[-124.71111297607416,50.322223663330135],[-124.5752944946289,50.41961669921881],[-124.59115600585932,50.66158676147472],[-124.34783172607422,50.7462730407716],[-123.97370147705078,50.80381393432623],[-123.83148193359375,50.71377944946289]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":42,"NAME_2":"Powell River","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-131.81906127929682,53.260604858398494],[-131.64389038085938,53.10832595825201],[-131.6022033691405,52.963874816894645],[-131.8501739501953,52.83316802978521],[-131.6742401123047,52.580970764160156],[-131.46676635742182,52.500831604003906],[-131.33361816406244,52.30389404296881],[-131.06912231445312,52.21829223632824],[-131.17845153808588,52.11850738525396],[-131.5597686767578,52.32816696166998],[-131.6639404296875,52.47669219970709],[-132.06201171875,52.69214630126953],[-132.47546386718744,53.12333297729492],[-132.0816650390625,53.148612976074276],[-131.81906127929682,53.260604858398494]]],[[[-130.46777343749994,53.63777923583979],[-130.10667419433594,53.514167785644645],[-129.752197265625,53.214111328125114],[-129.96388244628895,53.16972351074219],[-130.22142028808594,53.37709426879894],[-130.5508422851562,53.55240631103521],[-130.46777343749994,53.63777923583979]]],[[[-130.20166015625,53.911109924316406],[-129.
 82421875,53.7100830078125],[-129.33441162109375,53.3636093139649],[-129.58815002441406,53.211776733398494],[-130.20611572265614,53.72138977050787],[-130.20166015625,53.911109924316406]]],[[[-130.4183349609375,54.103092193603516],[-130.2344512939453,53.97833251953131],[-130.34359741210938,53.827606201171875],[-130.50425720214844,53.840965270996094],[-130.66360473632812,53.994300842285156],[-130.4183349609375,54.103092193603516]]],[[[-131.67327880859375,54.091125488281364],[-131.8621826171875,53.80719757080078],[-131.99888610839844,53.24583435058594],[-132.21377563476557,53.14783096313488],[-132.47171020507812,53.135021209716854],[-132.68888854980463,53.2605552673341],[-132.54110717773438,53.36611175537121],[-132.9361114501953,53.51555633544922],[-132.9116821289062,53.6038818359375],[-133.11547851562494,53.77587890625],[-133.1588745117187,53.914672851562614],[-133.02278137207026,54.180000305175895],[-132.3204956054687,54.111946105956974],[-132.17030334472645,54.02957534790045],[-131.6
 7327880859375,54.091125488281364]]],[[[-129.23086547851557,53.6312370300293],[-129.337646484375,53.38175582885742],[-129.6468963623047,53.56654357910162],[-130.07318115234375,53.89111328125],[-130.0560302734375,54.13628005981445],[-130.4822998046874,54.36907958984375],[-130.37023925781244,54.68000793457031],[-130.21276855468744,54.72173309326172],[-129.79438781738276,54.7408447265625],[-129.6758422851562,54.478458404541016],[-129.3720703125,54.357547760009766],[-129.37382507324213,53.796562194824276],[-129.23086547851557,53.6312370300293]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":43,"NAME_2":"Skeena-Queen Charlotte","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-122.53874206542963,51.20491409301758],[-122.465087890625,51.11429977416992],[-122.16564178466797,50.9901580810548],[-121.62685394287104,50.99649429321295],[-121.76502227783197,50.750564575195426],[-121.76124572753906,50.54673385620123],[-121.88232421874994,50.41954803466797],[-122.11734771728516,50.41612625122082],[-122.31632232666016,50.187400817871094],[-122.25856781005854,50.1239013671875],[-122.7880859375,50.13153076171875],[-122.67968749999994,49.98150634765631],[-122.98457336425781,49.85741043090826],[-122.81127166748047,49.71057510375982],[-122.81477355957031,49.57276916503912],[-123.24532318115229,49.48140335083008],[-123.27666473388672,49.583332061767635],[-123.32841491699219,49.851444244384766],[-123.60245513916016,49.923160552978516],[-123.58016204833979,50.174121856689396],[-123.9094619750976,50.35988235473644],[-123.9957656860351,50.47412109375],[-123.7433242797851,50.537998199463004],[-123.83148193359375,
 50.71377944946289],[-123.75756072998041,50.88335418701183],[-123.66169738769526,50.8802947998048],[-123.23517608642578,51.0580291748048],[-123.03302764892572,51.20026397705084],[-122.57894897460938,51.10340118408209],[-122.53874206542963,51.20491409301758]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":44,"NAME_2":"Squamish-Lillooet","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-127.7249984741211,60.00002288818365],[-127.80146026611328,59.78498077392578],[-127.72532653808582,59.62976455688488],[-127.49282073974598,59.52753448486328],[-127.16789245605463,59.139560699463004],[-126.96835327148438,59.10240554809582],[-127.04885101318354,58.85096740722656],[-126.60004425048828,58.58481216430664],[-126.29902648925781,58.59772491455084],[-126.056884765625,58.41963958740246],[-125.71438598632807,58.306339263916016],[-125.43640136718744,58.340255737304744],[-125.19837951660156,58.23851776123047],[-124.82700347900385,58.20647430419922],[-124.94745635986322,58.00004196166992],[-125.20275115966791,58.022438049316406],[-125.74520874023432,57.86521148681635],[-126.94616699218744,57.98747253417963],[-126.79368591308594,57.56542205810547],[-127.30046844482422,57.44637298583979],[-127.47785186767578,57.335430145263786],[-127.464859008789,57.20979690551758],[-127.6945571899414,57.14070510864252],[-127.559150695
 80078,56.97703552246094],[-127.60206604003906,56.83388519287121],[-127.41523742675781,56.67674255371088],[-127.1284408569336,56.626327514648494],[-126.81112670898432,56.68026733398443],[-126.48802947998036,56.6646614074707],[-126.14271545410156,56.576694488525504],[-126.11529541015625,56.27255249023449],[-125.86387634277344,56.14635467529297],[-125.65522003173828,56.2294921875],[-125.11777496337885,56.304302215576286],[-124.83013153076166,56.22488403320324],[-124.43842315673828,56.00004959106451],[-126.5,56.000000000000114],[-128.3646240234375,56.00006866455078],[-128.2841796874999,56.244857788085994],[-128.10919189453125,56.347106933593864],[-128.1630859375,56.452880859375],[-127.84685516357422,56.559112548828125],[-128.1692504882812,56.719783782958984],[-128.63296508789062,56.883922576904354],[-128.8480987548828,57.11714935302729],[-128.99999999999994,57.1649436950683],[-128.99999999999994,58.0001220703125],[-130.7499999999999,58.0001220703125],[-133.066177368164,57.99758529663091
 6],[-133.1719512939452,58.153831481933594],[-133.45986938476562,58.38847732543957],[-133.37997436523438,58.43181228637695],[-133.84104919433582,58.72985458374029],[-134.25799560546864,58.860870361328125],[-134.48272705078125,59.13097000122076],[-134.70069885253906,59.24889755249018],[-134.9597778320312,59.28104019165045],[-135.10063171386713,59.42776107788097],[-135.0288848876953,59.56364059448242],[-135.47958374023438,59.798099517822266],[-135.94760131835932,59.66343307495117],[-136.1952514648437,59.63881301879883],[-136.58198547363276,59.16554260253912],[-136.82467651367182,59.15980148315441],[-137.45150756835938,58.908535003662166],[-137.60743713378906,59.243480682373104],[-138.60920715332026,59.76000213623047],[-138.70578002929688,59.9062385559082],[-139.05220031738276,60.00004196166992],[-137.25,60.00000000000006],[-135.5,60.00000000000006],[-133.49999999999994,60.00000000000006],[-131.74999999999994,59.99999618530285],[-130.7499999999999,59.99999618530285],[-128.75,60.00000000
 000006],[-127.7249984741211,60.00002288818365]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":45,"NAME_2":"Stikine","TYPE_2":"Region","ENGTYPE_2":"Region","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-123.9094619750976,50.35988235473644],[-123.58016204833979,50.174121856689396],[-123.60245513916016,49.923160552978516],[-123.32841491699219,49.851444244384766],[-123.27666473388672,49.583332061767635],[-123.49200439453125,49.518611907958984],[-123.50049591064453,49.39311981201183],[-123.90262603759766,49.48040771484381],[-124.07489776611328,49.64187622070307],[-123.93765258789062,49.76676177978527],[-124.03941345214844,49.929008483886776],[-124.15054321289057,50.0614128112793],[-124.15941619873041,50.33384323120123],[-123.9094619750976,50.35988235473644]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":46,"NAME_2":"Sunshine Coast","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-120.14131927490229,52.87693023681635],[-120.02351379394526,52.75822830200195],[-119.76735687255854,52.659965515136776],[-119.055923461914,52.633403778076286],[-118.9275512695312,52.568874359130916],[-118.92668914794922,52.35365295410162],[-118.80296325683594,52.17701721191412],[-118.98789978027344,51.93126678466791],[-118.88701629638672,51.775043487548885],[-118.95323181152338,51.46194076538097],[-119.44002532958984,51.22227096557617],[-119.537109375,50.983558654785156],[-119.6641998291015,50.86771392822277],[-119.52471923828125,50.75093460083008],[-119.52556610107422,50.57664871215826],[-119.64464569091791,50.40225219726568],[-119.76281738281239,50.23297119140619],[-119.76900482177729,50.04312133789068],[-120.05582427978516,49.85531616210932],[-120.3293838500976,49.91224670410162],[-120.48641967773438,49.77294540405279],[-120.94736480712885,49.7602653503418],[-120.96183776855463,49.673446655273494],[-121.1253204345702
 6,49.68014526367193],[-121.1640625,49.88190841674816],[-121.31477355957031,50.05265426635742],[-121.6102447509765,50.042263031005916],[-122.25856781005854,50.1239013671875],[-122.31632232666016,50.187400817871094],[-122.11734771728516,50.41612625122082],[-121.88232421874994,50.41954803466797],[-121.76124572753906,50.54673385620123],[-121.76502227783197,50.750564575195426],[-121.62685394287104,50.99649429321295],[-122.16564178466797,50.9901580810548],[-122.465087890625,51.11429977416992],[-122.53874206542963,51.20491409301758],[-122.67819213867182,51.294399261474666],[-122.5595703125,51.4854087829591],[-121.52706146240234,51.54854965209972],[-121.42028808593744,51.37734985351574],[-121.14191436767572,51.44000625610363],[-120.5602035522461,51.435825347900504],[-120.55970001220697,51.6620979309082],[-120.33836364746094,51.73384857177746],[-120.24963378906244,51.9400367736817],[-120.29338836669922,52.082912445068416],[-120.53459930419916,52.3300666809082],[-120.23391723632807,52.6350631
 7138683],[-120.31160736083984,52.85883331298828],[-120.14131927490229,52.87693023681635]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":2,"NAME_1":"British Columbia","ID_2":47,"NAME_2":"Thompson-Nicola","TYPE_2":"Regional District","ENGTYPE_2":"Regional District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-97.44409942626953,49.92322158813482],[-97.45384979248047,49.80564117431646],[-97.21971893310547,49.7136802673341],[-97.25482177734375,49.532081604003906],[-97.73213195800781,49.532604217529354],[-97.73224639892572,49.62110900878906],[-97.86872100830072,49.79789352416998],[-97.94743347167969,50.07656097412104],[-97.73497772216797,50.06389236450195],[-97.44409942626953,49.92322158813482]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":48,"NAME_2":"Division No. 10","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-96.9977569580077,49.930427551269645],[-97.02642059326172,49.79743576049805],[-97.21971893310547,49.7136802673341],[-97.45384979248047,49.80564117431646],[-97.44409942626953,49.92322158813482],[-97.18379211425776,49.97541427612305],[-96.9977569580077,49.930427551269645]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":49,"NAME_2":"Division No. 11","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-96.36570739746094,49.796054840088004],[-97.02642059326172,49.79743576049805],[-96.9977569580077,49.930427551269645],[-96.85363006591791,50.06289291381847],[-96.70439910888666,50.062381744384766],[-96.68003845214844,50.239559173583984],[-96.35357666015625,50.28383636474621],[-96.36570739746094,49.796054840088004]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":50,"NAME_2":"Division No. 12","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-96.35357666015625,50.28383636474621],[-96.68003845214844,50.239559173583984],[-96.70439910888666,50.062381744384766],[-96.85363006591791,50.06289291381847],[-96.9977569580077,49.930427551269645],[-97.18379211425776,49.97541427612305],[-97.11493682861322,50.06359863281244],[-97.1145629882812,50.50654602050781],[-96.95034027099604,50.491756439208984],[-96.69623565673828,50.38850021362316],[-96.58293914794922,50.54788589477545],[-96.53751373291004,50.41621780395508],[-96.35357666015625,50.28383636474621]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":51,"NAME_2":"Division No. 13","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-97.1145629882812,50.50654602050781],[-97.11493682861322,50.06359863281244],[-97.18379211425776,49.97541427612305],[-97.44409942626953,49.92322158813482],[-97.73497772216797,50.06389236450195],[-97.94743347167969,50.07656097412104],[-98.01445007324213,50.30698776245123],[-97.59873199462885,50.32961654663086],[-97.46144104003906,50.50700759887695],[-97.1145629882812,50.50654602050781]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":52,"NAME_2":"Division No. 14","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-99.41487884521484,50.63920974731451],[-99.40072631835926,50.24040222167963],[-99.24799346923828,50.24039077758795],[-99.248046875,50.063426971435604],[-100.4845581054687,50.06303787231451],[-101.4454116821289,50.06401824951172],[-101.47529602050781,50.59421539306635],[-100.53148651123041,50.594539642333984],[-100.53203582763666,50.727111816406364],[-100.07865142822266,50.71235656738287],[-99.95982360839844,50.64536666870123],[-99.41487884521484,50.63920974731451]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":53,"NAME_2":"Division No. 15","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-100.97848510742176,51.361885070800895],[-100.9506378173827,50.85972213745123],[-100.67132568359375,50.85972976684576],[-100.53203582763666,50.727111816406364],[-100.53148651123041,50.594539642333984],[-101.47529602050781,50.59421539306635],[-101.53933715820307,51.12615203857433],[-101.57048034667969,51.566799163818416],[-101.39955139160156,51.56502914428711],[-101.26058197021473,51.44964218139654],[-100.97848510742176,51.361885070800895]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":54,"NAME_2":"Division No. 16","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-99.66345977783197,51.53712844848633],[-99.6632461547851,51.53712844848633],[-99.66295623779291,51.53712844848633],[-99.66281127929688,51.53712844848633],[-99.66194915771484,51.53712463378912],[-99.66180419921875,51.53712463378912],[-99.66151428222656,51.53712463378912],[-99.661376953125,51.53712463378912],[-99.66071319580078,51.53712081909174],[-99.66050720214832,51.53712081909174],[-99.65882873535156,51.53711318969721],[-99.65863037109375,51.53711318969721],[-99.65776824951172,51.53710937500006],[-99.65762329101557,51.53710937500006],[-99.65581512451166,51.537101745605526],[-99.65560150146484,51.537101745605526],[-99.65315246582026,51.537090301513786],[-99.65300750732422,51.537090301513786],[-99.65200042724604,51.537086486816406],[-99.65185546875,51.537086486816406],[-99.65132141113276,51.537086486816406],[-99.651138305664,51.537082672119254],[-99.6507720947265,51.537082672119254],[-99.65055847167963,51.53708267211925
 4],[-99.65026855468744,51.537078857421875],[-99.6501235961914,51.537078857421875],[-99.64997863769531,51.537078857421875],[-99.64984130859375,51.537078857421875],[-99.64828491210932,51.537071228027344],[-99.64810943603504,51.537071228027344],[-99.64788055419922,51.537071228027344],[-99.64767456054688,51.537071228027344],[-99.64745330810547,51.537071228027344],[-99.64724731445307,51.53706741333019],[-99.64685058593744,51.53706741333019],[-99.6466674804687,51.53706741333019],[-99.64630126953125,51.53706359863281],[-99.64608764648432,51.53706359863281],[-99.64551544189447,51.53706359863281],[-99.64537048339844,51.53705978393566],[-99.6440811157226,51.53694534301758],[-99.64395141601562,51.53692626953131],[-99.49727630615234,51.53619384765631],[-99.49025726318354,51.53623199462902],[-99.43294525146479,51.53648376464844],[-99.43327331542969,51.5333137512207],[-99.1261978149414,51.449134826660156],[-98.9876937866211,51.18465042114258],[-98.7987289428711,51.095115661621094],[-98.8686294555
 664,50.86551666259771],[-98.6534652709961,50.595985412597656],[-98.99687957763672,50.63937377929699],[-99.41487884521484,50.63920974731451],[-99.95982360839844,50.64536666870123],[-100.07865142822266,50.71235656738287],[-100.53203582763666,50.727111816406364],[-100.67132568359375,50.85972976684576],[-100.9506378173827,50.85972213745123],[-100.97848510742176,51.361885070800895],[-100.697265625,51.36222457885742],[-100.72262573242188,51.71110153198242],[-100.04876708984375,51.71156311035156],[-99.66345977783197,51.53712844848633]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":55,"NAME_2":"Division No. 17","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-96.95034027099604,50.491756439208984],[-97.1145629882812,50.50654602050781],[-97.46144104003906,50.50700759887695],[-97.59873199462885,50.32961654663086],[-98.01445007324213,50.30698776245123],[-98.2001113891601,50.212432861328125],[-98.56021118164062,50.22605514526367],[-98.53778076171875,50.37888717651373],[-98.6534652709961,50.595985412597656],[-98.8686294555664,50.86551666259771],[-98.7987289428711,51.095115661621094],[-98.5621109008789,51.20521163940441],[-98.76264953613281,51.30618667602539],[-98.87755584716797,51.755466461181754],[-98.4981918334961,51.762210845947266],[-98.44419860839844,51.44892883300781],[-98.15933227539062,51.36164093017584],[-98.13935852050781,51.21473312377941],[-97.46167755126953,51.215560913085994],[-97.46205139160156,51.30403518676752],[-96.92359161376953,51.30279541015619],[-96.5290756225586,51.444549560546875],[-96.25777435302729,51.193519592285156],[-96.50021362304682,51.1337699890136
 7],[-96.80126953124994,50.95979309082037],[-96.92504119873047,50.985977172851676],[-96.99030303955072,50.679992675781364],[-96.95034027099604,50.491756439208984]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":56,"NAME_2":"Division No. 18","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-94.26972961425781,53.37722015380871],[-95.15314483642572,52.84057235717785],[-95.15300750732422,51.33757781982422],[-95.15291595458984,50.395820617675895],[-95.53479766845697,50.36479949951172],[-95.53443145751947,50.482997894287166],[-95.94646453857422,50.48323059082031],[-95.94608306884766,50.57035446166998],[-96.32955169677734,50.59664535522461],[-96.58293914794922,50.54788589477545],[-96.69623565673828,50.38850021362316],[-96.95034027099604,50.491756439208984],[-96.99030303955072,50.679992675781364],[-96.92504119873047,50.985977172851676],[-96.80126953124994,50.95979309082037],[-96.50021362304682,51.13376998901367],[-96.25777435302729,51.193519592285156],[-96.5290756225586,51.444549560546875],[-96.92359161376953,51.30279541015619],[-97.46205139160156,51.30403518676752],[-97.46167755126953,51.215560913085994],[-98.13935852050781,51.21473312377941],[-98.15933227539062,51.36164093017584],[-98.44419860839844,51.4489288
 3300781],[-98.4981918334961,51.762210845947266],[-98.87755584716797,51.755466461181754],[-98.76264953613281,51.30618667602539],[-98.5621109008789,51.20521163940441],[-98.7987289428711,51.095115661621094],[-98.9876937866211,51.18465042114258],[-99.1261978149414,51.449134826660156],[-99.43327331542969,51.5333137512207],[-99.43294525146479,51.53648376464844],[-99.49025726318354,51.53623199462902],[-99.49727630615234,51.53619384765631],[-99.64395141601562,51.53692626953131],[-99.6440811157226,51.53694534301758],[-99.64537048339844,51.53705978393566],[-99.64551544189447,51.53706359863281],[-99.64608764648432,51.53706359863281],[-99.64630126953125,51.53706359863281],[-99.6466674804687,51.53706741333019],[-99.64685058593744,51.53706741333019],[-99.64724731445307,51.53706741333019],[-99.64745330810547,51.537071228027344],[-99.64767456054688,51.537071228027344],[-99.64788055419922,51.537071228027344],[-99.64810943603504,51.537071228027344],[-99.64828491210932,51.537071228027344],[-99.6498413
 0859375,51.537078857421875],[-99.64997863769531,51.537078857421875],[-99.6501235961914,51.537078857421875],[-99.65026855468744,51.537078857421875],[-99.65055847167963,51.537082672119254],[-99.6507720947265,51.537082672119254],[-99.651138305664,51.537082672119254],[-99.65132141113276,51.537086486816406],[-99.65185546875,51.537086486816406],[-99.65200042724604,51.537086486816406],[-99.65300750732422,51.537090301513786],[-99.65315246582026,51.537090301513786],[-99.65560150146484,51.537101745605526],[-99.65581512451166,51.537101745605526],[-99.65762329101557,51.53710937500006],[-99.65776824951172,51.53710937500006],[-99.65863037109375,51.53711318969721],[-99.65882873535156,51.53711318969721],[-99.66050720214832,51.53712081909174],[-99.66071319580078,51.53712081909174],[-99.661376953125,51.53712463378912],[-99.66151428222656,51.53712463378912],[-99.66180419921875,51.53712463378912],[-99.66194915771484,51.53712463378912],[-99.66281127929688,51.53712844848633],[-99.66295623779291,51.537128
 44848633],[-99.6632461547851,51.53712844848633],[-99.66345977783197,51.53712844848633],[-100.04876708984375,51.71156311035156],[-100.13031768798828,51.971141815185604],[-100.6102447509765,52.071784973144645],[-100.61033630371088,52.08518981933588],[-100.61034393310541,52.08546066284191],[-100.61034393310541,52.08554840087902],[-100.61034393310541,52.08569335937506],[-100.61034393310541,52.085784912109375],[-100.74447631835938,52.23113632202154],[-100.75169372558588,52.2312126159668],[-100.75169372558588,52.23300933837885],[-100.75169372558588,52.23310089111334],[-100.75169372558588,52.23328018188488],[-100.75169372558588,52.23336791992199],[-100.75169372558588,52.23345947265625],[-100.75169372558588,52.23363876342785],[-100.75169372558588,52.23373031616211],[-100.75169372558588,52.23381805419922],[-100.75169372558588,52.23399734497076],[-100.75169372558588,52.23408889770508],[-100.75169372558588,52.23417663574219],[-100.75169372558588,52.23426818847662],[-100.75169372558588,52.23437
 118530279],[-100.75169372558588,52.23462677001959],[-100.75169372558588,52.23472976684576],[-100.75169372558588,52.2349853515625],[-100.75169372558588,52.23508834838873],[-100.75169372558588,52.23525619506836],[-100.75169372558588,52.23534774780285],[-100.75170135498036,52.23678588867199],[-100.75170135498036,52.2368736267091],[-100.75170135498036,52.23768234252924],[-100.75170135498036,52.23777389526373],[-100.75170135498036,52.23795318603527],[-100.75170135498036,52.23813247680664],[-100.75170135498036,52.23831176757824],[-100.75170135498036,52.23849487304699],[-100.75170135498036,52.23867416381836],[-100.75170135498036,52.2388534545899],[-100.751708984375,52.23984146118164],[-100.751708984375,52.23992919921875],[-100.751708984375,52.24010848999035],[-100.751708984375,52.24020004272461],[-100.751708984375,52.24047088623047],[-100.751708984375,52.24055862426758],[-100.751708984375,52.24136734008789],[-100.751708984375,52.24145889282238],[-100.751708984375,52.24172973632824],[-100.7
 51708984375,52.24181747436529],[-100.751708984375,52.24200057983404],[-100.751708984375,52.24217987060547],[-100.75171661376953,52.24560928344732],[-100.75172424316406,52.2457733154298],[-100.75171661376953,52.245979309081974],[-100.75172424316406,52.24613189697277],[-100.75171661376953,52.24634170532232],[-100.75172424316406,52.24649429321289],[-100.75172424316406,52.24937057495117],[-100.75172424316406,52.24945831298828],[-100.75172424316406,52.24954986572277],[-100.75172424316406,52.24963760375982],[-100.75172424316406,52.24972915649414],[-100.75172424316406,52.24982070922857],[-100.75172424316406,52.25008773803705],[-100.75172424316406,52.25017929077154],[-100.75172424316406,52.25242614746105],[-100.7517318725586,52.25260543823242],[-100.75172424316406,52.25269317626953],[-100.7517318725586,52.25278472900396],[-100.7517318725586,52.25296401977539],[-100.7517318725586,52.25305557250982],[-100.7517318725586,52.25314331054693],[-100.7517318725586,52.25323486328119],[-100.7517318725
 586,52.25332641601568],[-100.7517318725586,52.25341415405279],[-100.7517318725586,52.25350570678722],[-100.75173950195312,52.25701141357433],[-100.75173950195312,52.25709915161144],[-100.75173950195312,52.25727844238281],[-100.75173950195312,52.25746154785156],[-100.75173950195312,52.257640838623104],[-100.75173950195312,52.25782012939453],[-100.75173950195312,52.25799942016607],[-100.75173950195312,52.258178710937614],[-100.75173950195312,52.25835800170904],[-100.75310516357416,52.31743240356445],[-100.75312805175776,52.31822967529308],[-100.94464874267578,52.66714859008795],[-100.94512176513672,52.842235565185604],[-101.67081451416016,52.79813003540039],[-101.66979980468744,52.859146118164176],[-101.66970062255854,52.85924148559582],[-101.67195892333984,53.011352539062614],[-100.59722137451172,53.01089096069347],[-98.77969360351551,53.010261535644474],[-97.33154296874989,53.000064849853516],[-97.62830352783197,53.37919998168957],[-95.84901428222656,53.37130737304699],[-94.26972961
 425781,53.37722015380871]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":57,"NAME_2":"Division No. 19","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-95.15291595458984,50.395820617675895],[-95.14968872070307,49.3804550170899],[-95.1513900756836,48.99995040893566],[-96.78456115722656,49.00003814697277],[-96.77999877929682,49.26627731323242],[-96.37609100341797,49.26630020141607],[-96.36570739746094,49.796054840088004],[-96.35357666015625,50.28383636474621],[-96.53751373291004,50.41621780395508],[-96.58293914794922,50.54788589477545],[-96.32955169677734,50.59664535522461],[-95.94608306884766,50.57035446166998],[-95.94646453857422,50.48323059082031],[-95.53443145751947,50.482997894287166],[-95.53479766845697,50.36479949951172],[-95.15291595458984,50.395820617675895]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":58,"NAME_2":"Division No. 1","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-100.75312805175776,52.31822967529308],[-100.75310516357416,52.31743240356445],[-100.75173950195312,52.25835800170904],[-100.75173950195312,52.258178710937614],[-100.75173950195312,52.25799942016607],[-100.75173950195312,52.25782012939453],[-100.75173950195312,52.257640838623104],[-100.75173950195312,52.25746154785156],[-100.75173950195312,52.25727844238281],[-100.75173950195312,52.25709915161144],[-100.75173950195312,52.25701141357433],[-100.7517318725586,52.25350570678722],[-100.7517318725586,52.25341415405279],[-100.7517318725586,52.25332641601568],[-100.7517318725586,52.25323486328119],[-100.7517318725586,52.25314331054693],[-100.7517318725586,52.25305557250982],[-100.7517318725586,52.25296401977539],[-100.7517318725586,52.25278472900396],[-100.75172424316406,52.25269317626953],[-100.7517318725586,52.25260543823242],[-100.75172424316406,52.25242614746105],[-100.75172424316406,52.25017929077154],[-100.75172424316406,
 52.25008773803705],[-100.75172424316406,52.24982070922857],[-100.75172424316406,52.24972915649414],[-100.75172424316406,52.24963760375982],[-100.75172424316406,52.24954986572277],[-100.75172424316406,52.24945831298828],[-100.75172424316406,52.24937057495117],[-100.75172424316406,52.24649429321289],[-100.75171661376953,52.24634170532232],[-100.75172424316406,52.24613189697277],[-100.75171661376953,52.245979309081974],[-100.75172424316406,52.2457733154298],[-100.75171661376953,52.24560928344732],[-100.751708984375,52.24217987060547],[-100.751708984375,52.24200057983404],[-100.751708984375,52.24181747436529],[-100.751708984375,52.24172973632824],[-100.751708984375,52.24145889282238],[-100.751708984375,52.24136734008789],[-100.751708984375,52.24055862426758],[-100.751708984375,52.24047088623047],[-100.751708984375,52.24020004272461],[-100.751708984375,52.24010848999035],[-100.751708984375,52.23992919921875],[-100.751708984375,52.23984146118164],[-100.75170135498036,52.2388534545899],[-1
 00.75170135498036,52.23867416381836],[-100.75170135498036,52.23849487304699],[-100.75170135498036,52.23831176757824],[-100.75170135498036,52.23813247680664],[-100.75170135498036,52.23795318603527],[-100.75170135498036,52.23777389526373],[-100.75170135498036,52.23768234252924],[-100.75170135498036,52.2368736267091],[-100.75170135498036,52.23678588867199],[-100.75169372558588,52.23534774780285],[-100.75169372558588,52.23525619506836],[-100.75169372558588,52.23508834838873],[-100.75169372558588,52.2349853515625],[-100.75169372558588,52.23472976684576],[-100.75169372558588,52.23462677001959],[-100.75169372558588,52.23437118530279],[-100.75169372558588,52.23426818847662],[-100.75169372558588,52.23417663574219],[-100.75169372558588,52.23408889770508],[-100.75169372558588,52.23399734497076],[-100.75169372558588,52.23381805419922],[-100.75169372558588,52.23373031616211],[-100.75169372558588,52.23363876342785],[-100.75169372558588,52.23345947265625],[-100.75169372558588,52.23336791992199],[-
 100.75169372558588,52.23328018188488],[-100.75169372558588,52.23310089111334],[-100.75169372558588,52.23300933837885],[-100.75169372558588,52.2312126159668],[-100.74447631835938,52.23113632202154],[-100.61034393310541,52.085784912109375],[-100.61034393310541,52.08569335937506],[-100.61034393310541,52.08554840087902],[-100.61034393310541,52.08546066284191],[-100.61033630371088,52.08518981933588],[-100.6102447509765,52.071784973144645],[-100.13031768798828,51.971141815185604],[-100.04876708984375,51.71156311035156],[-100.72262573242188,51.71110153198242],[-100.697265625,51.36222457885742],[-100.97848510742176,51.361885070800895],[-101.26058197021473,51.44964218139654],[-101.39955139160156,51.56502914428711],[-101.57048034667969,51.566799163818416],[-101.5775527954101,51.96853637695318],[-101.6378173828125,52.31828308105469],[-101.67081451416016,52.79813003540039],[-100.94512176513672,52.842235565185604],[-100.94464874267578,52.66714859008795],[-100.75312805175776,52.31822967529308]]]}
 ,"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":59,"NAME_2":"Division No. 20","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-99.01719665527344,55.62550735473627],[-98.95955657958973,54.41442489624029],[-98.949951171875,53.77866744995117],[-98.32816314697266,53.833259582519645],[-97.88165283203125,53.68387985229492],[-97.62830352783197,53.37919998168957],[-97.33154296874989,53.000064849853516],[-98.77969360351551,53.010261535644474],[-100.59722137451172,53.01089096069347],[-101.67195892333984,53.011352539062614],[-101.73500823974604,53.53037261962902],[-101.73501586914057,53.53046035766613],[-101.73500823974604,53.53136062622076],[-101.73500823974604,53.53144836425787],[-101.73500823974604,53.53181076049816],[-101.7350006103515,53.53199005126959],[-101.7350006103515,53.53216934204113],[-101.73500823974604,53.53306579589838],[-101.73500823974604,53.53324508666998],[-101.7350006103515,53.53576278686529],[-101.73499298095703,53.5358505249024],[-101.73499298095703,53.53594207763672],[-101.73499298095703,53.53630065917963],[-101.7350006103515,53.5
 36434173583984],[-101.7350006103515,53.53693008422863],[-101.7350006103515,53.53701782226574],[-101.73499298095703,53.53836822509777],[-101.7349853515625,53.53845596313488],[-101.7349853515625,53.53980255126953],[-101.7349853515625,53.53998565673828],[-101.7349853515625,53.54169082641613],[-101.7349853515625,53.5418701171875],[-101.7349853515625,53.54222869873047],[-101.7349853515625,53.54238128662121],[-101.73497772216797,53.54249954223627],[-101.7349853515625,53.5427703857423],[-101.7349853515625,53.54294967651367],[-101.7349853515625,53.54339981079113],[-101.7349853515625,53.54357528686529],[-101.73497772216797,53.54366683959961],[-101.73497772216797,53.54384613037115],[-101.7349853515625,53.54492568969738],[-101.73497772216797,53.54501342773443],[-101.73497772216797,53.5470809936524],[-101.73497772216797,53.54717254638666],[-101.73497772216797,53.54726028442394],[-101.73497772216797,53.54735183715826],[-101.7349624633789,53.54905700683605],[-101.73497009277344,53.54923629760742]
 ,[-101.7349624633789,53.55013656616205],[-101.7349624633789,53.55031585693365],[-101.7349624633789,53.55112457275402],[-101.73497009277344,53.55130386352539],[-101.7349624633789,53.55220031738281],[-101.7349624633789,53.55237960815441],[-101.7349624633789,53.55265045166027],[-101.73495483398438,53.55273818969732],[-101.73495483398438,53.55282974243164],[-101.7349624633789,53.55381774902355],[-101.7349624633789,53.55390930175781],[-101.73495483398438,53.55525588989269],[-101.73494720458984,53.55534744262695],[-101.7349395751952,53.55938720703119],[-101.7349395751952,53.55947875976568],[-101.73494720458984,53.56028747558605],[-101.73494720458984,53.56046676635742],[-101.7349395751952,53.56172180175781],[-101.7349395751952,53.5618133544923],[-101.7349395751952,53.56271362304693],[-101.7349395751952,53.56280136108404],[-101.7349395751952,53.56298065185558],[-101.73493194580072,53.563072204589844],[-101.73493194580072,53.56316375732433],[-101.7349395751952,53.56396865844732],[-101.734939
 5751952,53.564060211181584],[-101.7349395751952,53.56414794921869],[-101.7349395751952,53.56423950195318],[-101.73493194580072,53.565586090087834],[-101.7349243164062,53.56567764282232],[-101.7349243164062,53.56711578369146],[-101.7349243164062,53.56720352172857],[-101.73493194580072,53.56819152832031],[-101.7349243164062,53.568283081054744],[-101.7349243164062,53.569358825683594],[-101.7349243164062,53.56949996948248],[-101.7349243164062,53.57070541381847],[-101.7349243164062,53.570796966552734],[-101.73491668701166,53.57088851928722],[-101.73491668701166,53.5711555480957],[-101.73491668701166,53.57124710083019],[-101.73491668701166,53.57241439819347],[-101.73491668701166,53.572505950927734],[-101.73491668701166,53.57322311401367],[-101.73491668701166,53.573314666748104],[-101.73491668701166,53.573417663574276],[-101.73490905761713,53.573581695556754],[-101.73490905761713,53.574119567871094],[-101.73491668701166,53.574302673339844],[-101.73490905761713,53.57608032226568],[-101.7349
 0142822266,53.57618713378906],[-101.73490142822266,53.578613281250114],[-101.73490142822266,53.578704833984375],[-101.73489379882812,53.580051422119254],[-101.73489379882812,53.580139160156364],[-101.73489379882812,53.580589294433594],[-101.73490142822266,53.580768585205135],[-101.73489379882812,53.581489562988395],[-101.73490142822266,53.5816535949707],[-101.73489379882812,53.5823860168457],[-101.73489379882812,53.58253860473644],[-101.73489379882812,53.582656860351506],[-101.7348861694336,53.583915710449276],[-101.7348861694336,53.584003448486385],[-101.73489379882812,53.584991455078125],[-101.7348861694336,53.585079193115234],[-101.7348861694336,53.585979461670036],[-101.7348861694336,53.58611297607422],[-101.73487854003906,53.586608886718864],[-101.73487854003906,53.586700439453125],[-101.73487854003906,53.588943481445256],[-101.73487091064453,53.589035034179744],[-101.73487091064453,53.593883514404354],[-101.73487091064453,53.594062805175895],[-101.73486328125,53.59523010253917
 6],[-101.73485565185547,53.595413208007926],[-101.73485565185547,53.598556518554744],[-101.73485565185547,53.598735809326286],[-101.73485565185547,53.599094390869254],[-101.73484802246094,53.599273681640625],[-101.73484802246094,53.599456787109375],[-101.73485565185547,53.600444793701286],[-101.73485565185547,53.60054397583008],[-101.73484039306635,53.60351943969738],[-101.73484039306635,53.60369873046875],[-101.73484802246094,53.60468673706049],[-101.73484039306635,53.60477828979498],[-101.73483276367182,53.60630416870123],[-101.73483276367182,53.60639572143549],[-101.73484039306635,53.6071128845216],[-101.73484039306635,53.60720443725586],[-101.73484039306635,53.61088562011713],[-101.73484802246094,53.61104583740246],[-101.73484802246094,53.61241149902338],[-101.73484802246094,53.61259460449213],[-101.73484802246094,53.61268234252941],[-101.73485565185547,53.61295318603527],[-101.73485565185547,53.61501693725586],[-101.73486328125,53.61510848999029],[-101.73486328125,53.6160049438
 4777],[-101.73486328125,53.616142272949276],[-101.73489379882812,53.6221160888673],[-101.73490142822266,53.62223052978521],[-101.7703018188476,53.70927047729492],[-101.76824951171875,54.0644264221192],[-101.8475112915039,54.539932250976676],[-101.84722900390625,54.552505493164176],[-101.84355926513666,54.74309539794922],[-101.84339141845703,54.74309921264654],[-101.8819732666015,54.898700714111385],[-101.8819732666015,54.89885330200195],[-101.8818969726562,54.909465789795036],[-101.8818969726562,54.90958786010748],[-101.8797988891601,55.105594635009766],[-101.8797988891601,55.10586929321295],[-101.91478729248041,55.41780471801752],[-101.91476440429688,55.421249389648494],[-101.95520782470697,55.50004196166992],[-101.95515441894531,55.512714385986385],[-101.95452880859375,55.62414932250988],[-100.02619171142578,55.6229133605957],[-99.01719665527344,55.62550735473627]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":60,"NAME_2":"Division No.
  21","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-91.64778900146484,55.15848541259777],[-92.6586074829101,54.453392028808594],[-93.6298828125,53.75007247924805],[-94.26972961425781,53.37722015380871],[-95.84901428222656,53.37130737304699],[-97.62830352783197,53.37919998168957],[-97.88165283203125,53.68387985229492],[-98.32816314697266,53.833259582519645],[-98.949951171875,53.77866744995117],[-98.95955657958973,54.41442489624029],[-99.01719665527344,55.62550735473627],[-99.02935028076166,56.33359146118164],[-98.00000762939453,56.333457946777344],[-96.1820068359375,56.339557647705135],[-95.0000991821289,56.334999084472656],[-95.0000991821289,55.17590713500988],[-93.6899642944336,55.17824172973627],[-91.64778900146484,55.15848541259777]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":61,"NAME_2":"Division No. 22","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-88.96736907958984,56.8569450378418],[-90.23148345947266,56.08443832397461],[-91.64778900146484,55.15848541259777],[-93.6899642944336,55.17824172973627],[-95.0000991821289,55.17590713500988],[-95.0000991821289,56.334999084472656],[-96.1820068359375,56.339557647705135],[-98.00000762939453,56.333457946777344],[-99.02935028076166,56.33359146118164],[-99.01719665527344,55.62550735473627],[-100.02619171142578,55.6229133605957],[-101.95452880859375,55.62414932250988],[-102,55.96755218505871],[-102,55.99990463256847],[-102,56.000000000000114],[-102,56.01438903808594],[-102,56.45178604125971],[-102,56.451946258545036],[-102,56.57289886474615],[-102,56.57737350463873],[-102,56.75118637084972],[-102,56.752265930175895],[-102,56.87717437744152],[-102,56.89306640625],[-102,56.979717254638786],[-102,56.97987365722656],[-102,57.000000000000114],[-102,57.002792358398494],[-102,57.07008361816406],[-102,57.07024765014654],[-102,57.21410
 751342785],[-102,57.21680831909174],[-102.00000762939453,58.36177062988281],[-102,58.479991912841854],[-102,58.51985168457031],[-102,58.53668212890631],[-102,58.581077575683594],[-102,58.58963012695307],[-102,58.662860870361385],[-102,58.6631431579591],[-101.99999237060547,58.744815826416016],[-102,58.74494171142578],[-102,58.94940185546875],[-102,58.9495849609375],[-102,59.007614135742244],[-102,59.01180648803722],[-102,59.01985168457037],[-102,59.02693939208996],[-102,59.03860855102545],[-102,59.14680862426769],[-102,59.27099227905285],[-101.99999237060547,59.29595565795904],[-101.99999237060547,59.30723953247082],[-102,59.3073463439942],[-102,60.00000000000006],[-99.49999999999994,60.00000000000006],[-97.75000762939447,60.00000000000006],[-96.25,60.00000000000006],[-94.82127380371088,60.00001525878912],[-94.7699966430664,59.78972244262701],[-94.83277893066406,59.64277648925787],[-94.71444702148432,59.369167327880916],[-94.800552368164,59.05722045898443],[-94.40612792968744,58.705
 32226562506],[-94.1738891601562,58.77471923828131],[-93.2199935913086,58.76613998413097],[-93.10888671875,58.47638702392578],[-92.84722137451172,58.131389617919865],[-92.71722412109375,57.78332519531256],[-92.42500305175781,57.357776641845646],[-92.5460815429687,57.09832763671875],[-92.45721435546864,57.04327392578131],[-91.87666320800781,57.072776794433594],[-91.14944458007801,57.24694442749018],[-90.63500213623041,57.23805618286133],[-89.9705581665039,57.00944519042969],[-88.96736907958984,56.8569450378418]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":62,"NAME_2":"Division No. 23","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-96.36570739746094,49.796054840088004],[-96.37609100341797,49.26630020141607],[-96.77999877929682,49.26627731323242],[-96.78456115722656,49.00003814697277],[-97.16706085205078,49.00011444091797],[-97.28537750244135,49.16076660156256],[-97.1869277954101,49.266323089599666],[-97.25482177734375,49.532081604003906],[-97.21971893310547,49.7136802673341],[-97.02642059326172,49.79743576049805],[-96.36570739746094,49.796054840088004]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":63,"NAME_2":"Division No. 2","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-97.73224639892572,49.62110900878906],[-97.73213195800781,49.532604217529354],[-97.25482177734375,49.532081604003906],[-97.1869277954101,49.266323089599666],[-97.28537750244135,49.16076660156256],[-97.16706085205078,49.00011444091797],[-98.2679672241211,49.00029373168957],[-98.27311706542969,49.26536941528326],[-98.40900421142578,49.26579666137707],[-98.4146499633789,49.53161239624029],[-98.41478729248041,49.62105941772461],[-97.73224639892572,49.62110900878906]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":64,"NAME_2":"Division No. 3","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-99.09866333007807,49.53266525268566],[-98.4146499633789,49.53161239624029],[-98.40900421142578,49.26579666137707],[-98.27311706542969,49.26536941528326],[-98.2679672241211,49.00029373168957],[-99.4822387695312,49.00003051757824],[-99.36090087890625,49.222240447998104],[-99.36035919189447,49.53348159790039],[-99.09866333007807,49.53266525268566]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":65,"NAME_2":"Division No. 4","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-99.36035919189447,49.53348159790039],[-99.36090087890625,49.222240447998104],[-99.4822387695312,49.00003051757824],[-101.36248016357422,49.000080108642635],[-101.39280700683594,49.532451629638786],[-100.4630355834961,49.532268524170036],[-99.36035919189447,49.53348159790039]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":66,"NAME_2":"Division No. 5","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-100.4845581054687,50.06303787231451],[-100.4630355834961,49.532268524170036],[-101.39280700683594,49.532451629638786],[-101.4454116821289,50.06401824951172],[-100.4845581054687,50.06303787231451]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":67,"NAME_2":"Division No. 6","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-99.248046875,50.063426971435604],[-99.11009979248047,50.06411361694336],[-99.09866333007807,49.53266525268566],[-99.36035919189447,49.53348159790039],[-100.4630355834961,49.532268524170036],[-100.4845581054687,50.06303787231451],[-99.248046875,50.063426971435604]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":68,"NAME_2":"Division No. 7","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-98.6534652709961,50.595985412597656],[-98.53778076171875,50.37888717651373],[-98.56021118164062,50.22605514526367],[-98.55146026611322,49.79788970947277],[-98.41478729248041,49.62105941772461],[-98.4146499633789,49.53161239624029],[-99.09866333007807,49.53266525268566],[-99.11009979248047,50.06411361694336],[-99.248046875,50.063426971435604],[-99.24799346923828,50.24039077758795],[-99.40072631835926,50.24040222167963],[-99.41487884521484,50.63920974731451],[-98.99687957763672,50.63937377929699],[-98.6534652709961,50.595985412597656]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":69,"NAME_2":"Division No. 8","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-97.94743347167969,50.07656097412104],[-97.86872100830072,49.79789352416998],[-97.73224639892572,49.62110900878906],[-98.41478729248041,49.62105941772461],[-98.55146026611322,49.79788970947277],[-98.56021118164062,50.22605514526367],[-98.2001113891601,50.212432861328125],[-98.01445007324213,50.30698776245123],[-97.94743347167969,50.07656097412104]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":3,"NAME_1":"Manitoba","ID_2":70,"NAME_2":"Division No. 9","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.5728302001952,45.86439514160156],[-64.6930541992187,45.68277740478527],[-65.08241271972656,45.52671813964855],[-65.11935424804682,45.61508941650385],[-65.22387695312494,45.84381484985363],[-65.03462982177734,45.892414093017635],[-65.03423309326172,46.02211761474604],[-64.75650787353504,46.08821487426758],[-64.5728302001952,45.86439514160156]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","ID_2":71,"NAME_2":"Albert","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-67.78040313720697,45.9434432983399],[-67.78392028808588,46.600486755371094],[-66.86725616455072,46.77406692504894],[-67.49397277832031,46.00951004028326],[-67.78040313720697,45.9434432983399]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","ID_2":72,"NAME_2":"Carleton","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-67.42024230957031,45.50673675537121],[-66.9362182617187,45.502693176269645],[-66.56346130371094,45.49879837036144],[-66.45973968505854,45.31261062622076],[-66.45945739746088,45.221996307373104],[-66.4589614868164,45.064464569091854],[-66.89054870605457,45.04181671142584],[-66.95323944091797,45.15700912475597],[-67.35400390624994,45.1373291015625],[-67.4776000976562,45.28729248046881],[-67.42024230957031,45.50673675537121]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","ID_2":73,"NAME_2":"Charlotte","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.9369277954101,47.43632888793945],[-65.81587219238281,47.23254013061529],[-66.2171630859375,47.55064392089855],[-66.1076889038086,47.57730484008789],[-65.915298461914,47.82750320434582],[-65.79444122314453,47.8808326721192],[-65.63249969482422,47.663055419921875],[-65.48944091796875,47.67472076416021],[-65.18111419677734,47.819168090820426],[-64.80116271972656,47.80385208129894],[-64.67805480957031,47.71111297607422],[-64.90499877929676,47.54833221435558],[-64.9369277954101,47.43632888793945]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","ID_2":74,"NAME_2":"Gloucester","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.57437896728516,46.278450012207145],[-65.41643524169916,46.25676345825207],[-65.8516616821289,46.33650588989269],[-65.58553314208979,46.63119125366222],[-64.82645416259766,47.05624389648449],[-64.91903686523438,46.833076477050895],[-64.71472930908197,46.5577125549317],[-64.57437896728516,46.278450012207145]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","ID_2":75,"NAME_2":"Kent","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-65.11935424804682,45.61508941650385],[-66.45945739746088,45.221996307373104],[-66.45973968505854,45.31261062622076],[-65.34258270263672,46.098773956298885],[-65.22387695312494,45.84381484985363],[-65.11935424804682,45.61508941650385]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","ID_2":76,"NAME_2":"Kings","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-67.68853759765625,47.568538665771484],[-67.6887741088866,47.173721313476676],[-67.78360748291016,47.06127166748047],[-68.24383544921875,47.35255432128906],[-68.58042144775385,47.286880493164006],[-68.89749145507812,47.17663955688482],[-69.05052947998047,47.300170898437614],[-68.5692749023437,47.4271240234375],[-68.38349914550776,47.553199768066406],[-68.38247680664051,47.79079437255854],[-67.68853759765625,47.568538665771484]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","ID_2":77,"NAME_2":"Madawaska","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.9369277954101,47.43632888793945],[-64.93418121337879,47.436954498291016],[-64.8802642822265,47.449081420898494],[-64.95944213867182,47.299720764160156],[-65.27503204345703,47.11283111572271],[-64.82645416259766,47.05624389648449],[-65.58553314208979,46.63119125366222],[-65.8516616821289,46.33650588989269],[-65.85376739501953,46.33658218383789],[-66.16452026367188,46.396484375000114],[-66.45917510986322,46.453956604003906],[-66.7446517944336,46.92735671997076],[-67.0482406616211,47.362728118896484],[-66.2171630859375,47.55064392089855],[-65.81587219238281,47.23254013061529],[-64.9369277954101,47.43632888793945]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","ID_2":78,"NAME_2":"Northumberland","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-65.85376739501953,46.33658218383789],[-65.8516616821289,46.33650588989269],[-65.41643524169916,46.25676345825207],[-65.34258270263672,46.098773956298885],[-66.45973968505854,45.31261062622076],[-66.56346130371094,45.49879837036144],[-65.85376739501953,46.33658218383789]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","ID_2":79,"NAME_2":"Queens","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-65.79444122314453,47.8808326721192],[-65.915298461914,47.82750320434582],[-66.1076889038086,47.57730484008789],[-66.2171630859375,47.55064392089855],[-67.0482406616211,47.362728118896484],[-67.68853759765625,47.568538665771484],[-68.38247680664051,47.79079437255854],[-68.3826293945312,47.8800506591798],[-67.94956970214838,47.99994277954096],[-67.59805297851557,47.99989318847656],[-67.39452362060547,47.86846160888672],[-67.21704864501947,47.87736129760742],[-66.77474975585932,47.99764633178705],[-66.47284698486328,48.06160354614258],[-65.79444122314453,47.8808326721192]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","ID_2":80,"NAME_2":"Restigouche","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-66.4589614868164,45.064464569091854],[-66.45945739746088,45.221996307373104],[-65.11935424804682,45.61508941650385],[-65.08241271972656,45.52671813964855],[-65.34289550781244,45.4478759765625],[-65.5355224609375,45.32287597656244],[-65.87528228759766,45.20393371582037],[-66.14527893066406,45.18083190917969],[-66.4589614868164,45.064464569091854]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","ID_2":81,"NAME_2":"Saint John","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-66.56346130371094,45.49879837036144],[-66.9362182617187,45.502693176269645],[-66.16452026367188,46.396484375000114],[-65.85376739501953,46.33658218383789],[-66.56346130371094,45.49879837036144]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","ID_2":82,"NAME_2":"Sunbury","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-67.0482406616211,47.362728118896484],[-66.7446517944336,46.92735671997076],[-66.86725616455072,46.77406692504894],[-67.78392028808588,46.600486755371094],[-67.78360748291016,47.06127166748047],[-67.6887741088866,47.173721313476676],[-67.68853759765625,47.568538665771484],[-67.0482406616211,47.362728118896484]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","ID_2":83,"NAME_2":"Victoria","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.04694366455072,45.981712341308594],[-64.27828216552734,45.83412170410162],[-64.5728302001952,45.86439514160156],[-64.75650787353504,46.08821487426758],[-65.03423309326172,46.02211761474604],[-65.03462982177734,45.892414093017635],[-65.22387695312494,45.84381484985363],[-65.34258270263672,46.098773956298885],[-65.41643524169916,46.25676345825207],[-64.57437896728516,46.278450012207145],[-64.08946228027344,46.17008209228527],[-64.04694366455072,45.981712341308594]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","ID_2":84,"NAME_2":"Westmorland","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-66.16452026367188,46.396484375000114],[-66.9362182617187,45.502693176269645],[-67.42024230957031,45.50673675537121],[-67.78874969482422,45.68232727050787],[-67.78040313720697,45.9434432983399],[-67.49397277832031,46.00951004028326],[-66.86725616455072,46.77406692504894],[-66.7446517944336,46.92735671997076],[-66.45917510986322,46.453956604003906],[-66.16452026367188,46.396484375000114]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":4,"NAME_1":"New Brunswick","ID_2":85,"NAME_2":"York","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-61.42279815673828,56.04325103759771],[-61.41375350952143,56.04469680786144],[-61.33694839477539,56.04708099365246],[-60.871318817138615,55.8476295471192],[-61.05520629882801,55.77861785888672],[-61.33769989013672,55.38406372070318],[-61.73925399780268,55.12958908081066],[-62.26454925537104,55.015190124511776],[-62.23186111450195,54.92180633544916],[-61.48711395263666,55.036201477050895],[-61.45676422119135,54.88445281982422],[-61.027191162109375,54.70935440063482],[-61.04119873046875,54.48289489746105],[-60.94081115722656,54.4128532409668],[-60.61162567138666,54.43386840820324],[-60.35207748413086,54.312675476074276],[-59.97097015380848,54.312675476074276],[-59.85169219970703,54.2079429626466],[-59.97998046875,53.7881431579591],[-60.10760498046869,53.68548583984375],[-60.13269042968744,53.465515136718864],[-59.833858489990234,53.545146942138786],[-59.48809814453119,53.57535552978527],[-59.40949249267578,53.535915
 374755916],[-58.85383224487299,53.72501373291021],[-58.789829254150334,53.87629318237299],[-58.117801666259766,54.06248474121105],[-57.33611297607422,54.059165954589844],[-57.213787078857365,53.95460510253906],[-57.13328552246088,53.7322349548341],[-57.3994140625,53.64892578125006],[-57.30850219726551,53.46134567260748],[-56.965339660644474,53.73289489746105],[-56.702667236328125,53.76045608520519],[-56.50023651123041,53.621429443359375],[-56.0205078125,53.57470703125],[-55.98498535156244,53.39349365234375],[-55.7388916015625,53.25000381469732],[-55.911109924316406,53.030834197998104],[-55.80347824096674,52.84268188476568],[-55.98529052734375,52.823486328125114],[-56.00221633911133,52.51223754882824],[-55.64398193359375,52.43048095703125],[-55.81938552856445,52.32296371459961],[-55.64714431762695,52.198852539062614],[-55.69752883911127,52.09416580200201],[-56.223331451416016,51.78111267089855],[-56.422222137451115,51.726665496826286],[-56.82941436767578,51.5181121826173],[-57.108398
 43749994,51.42510986328125],[-57.1077880859375,51.99847412109375],[-59.0344123840332,51.996982574462834],[-60.4416885375976,51.99651336669922],[-61.806522369384766,51.9958114624024],[-63.808109283447266,51.99784851074219],[-63.69057464599604,52.129833221435604],[-63.82686233520502,52.330837249755916],[-64.01271820068354,52.362594604492244],[-64.0379409790039,52.560955047607536],[-63.850959777831974,52.62247085571295],[-63.429420471191406,52.6455192565918],[-63.66006469726557,52.81123733520508],[-64.1242218017577,52.732048034668026],[-64.10923004150385,52.39405822753906],[-64.34169006347656,51.98590087890631],[-64.27828979492188,51.74637985229492],[-64.55435943603516,51.5758056640625],[-64.65354919433594,51.70153427124018],[-64.92467498779297,51.77785873413086],[-65.18606567382812,51.77560424804699],[-65.49999237060536,52.11034774780279],[-66.09636688232422,52.10780715942383],[-66.33010864257812,52.135932922363224],[-66.49051666259766,52.3416366577149],[-66.34171295166016,52.39720916
 748058],[-66.43992614746088,52.62949371337902],[-66.26116943359375,52.87432861328125],[-66.361083984375,53.014404296875114],[-66.6258697509765,52.954257965088004],[-66.6463775634765,52.788936614990234],[-66.7724380493164,52.696216583251896],[-67.31682586669916,52.87544631958019],[-67.39233398437494,53.120857238769645],[-67.04160308837885,53.076072692871094],[-66.92444610595703,53.41865921020519],[-67.21877288818354,53.530338287353516],[-67.82168579101557,54.025699615478516],[-67.67531585693354,54.15876007080084],[-67.7274932861327,54.45740127563488],[-67.34923553466791,54.51699066162115],[-67.06290435791016,54.69293212890625],[-67.42248535156244,55.00006103515625],[-67.21924591064447,55.00003433227545],[-66.94784545898432,54.822311401367244],[-66.6963119506836,54.72595596313488],[-66.60264587402344,54.81350326538097],[-66.76599121093744,55.00001525878906],[-66.74890136718744,55.215698242187614],[-66.60279083251947,55.26898193359375],[-66.25939941406244,54.999748229980526],[-65.84984
 588623047,54.92721176147472],[-65.69011688232422,54.71152877807617],[-65.45552825927729,54.728584289550724],[-65.12644958496094,54.96147918701166],[-64.9719009399414,54.93739700317383],[-64.55688476562494,54.71366119384777],[-64.29453277587885,54.753276824951115],[-64.05427551269531,54.60090637207037],[-63.7689476013183,54.69984436035156],[-63.82052230834961,54.947959899902344],[-63.55875015258789,55.00004959106457],[-63.61137008666992,55.09080505371094],[-63.442253112792855,55.344058990478516],[-63.66539764404291,55.423049926757756],[-63.77361679077143,55.8560523986817],[-63.636722564697266,56.02352523803722],[-63.93324661254883,56.09715270996094],[-63.86721420288086,56.211040496826286],[-63.75853729248047,56.14198303222656],[-63.42500686645508,56.147937774658146],[-63.0531005859375,56.0045280456543],[-61.42279815673828,56.04325103759771]]],[[[-61.95112609863281,56.42209625244152],[-61.83435440063465,56.381389617919865],[-61.83644485473627,56.371429443359375],[-61.86397171020508,56
 .350597381591854],[-61.897956848144474,56.33955383300781],[-61.89699554443354,56.29628372192394],[-62.10432052612299,56.29203414916998],[-62.096187591552734,56.425289154052734],[-61.95112609863281,56.42209625244152]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":5,"NAME_1":"Newfoundland and Labrador","ID_2":86,"NAME_2":"Division No. 10","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-57.33611297607422,54.059165954589844],[-58.117801666259766,54.06248474121105],[-58.789829254150334,53.87629318237299],[-58.85383224487299,53.72501373291021],[-59.40949249267578,53.535915374755916],[-59.48809814453119,53.57535552978527],[-59.2277946472168,53.691612243652344],[-58.85418701171869,53.9481201171875],[-58.393890380859375,54.02835083007824],[-58.3839111328125,54.19333267211914],[-58.0577774047851,54.23749923706066],[-57.41528320312494,54.18057632446289],[-57.33611297607422,54.059165954589844]]],[[[-59.97998046875,53.7881431579591],[-59.85169219970703,54.2079429626466],[-59.97097015380848,54.312675476074276],[-60.35207748413086,54.312675476074276],[-60.61162567138666,54.43386840820324],[-60.94081115722656,54.4128532409668],[-61.04119873046875,54.48289489746105],[-61.027191162109375,54.70935440063482],[-61.45676422119135,54.88445281982422],[-61.48711395263666,55.036201477050895],[-62.23186111450195,54.921
 80633544916],[-62.26454925537104,55.015190124511776],[-61.73925399780268,55.12958908081066],[-61.33769989013672,55.38406372070318],[-61.05520629882801,55.77861785888672],[-60.871318817138615,55.8476295471192],[-60.208877563476506,55.471153259277344],[-60.458389282226506,55.226139068603516],[-60.07550048828125,55.20892333984375],[-59.811668395996094,55.31279754638666],[-59.7371826171875,55.206390380859375],[-59.43731689453125,55.1431503295899],[-59.15279769897455,55.233673095703125],[-59.03840637207031,55.01288604736334],[-58.84166717529297,54.81499862670904],[-58.28166580200195,54.78916549682617],[-58.13940429687494,54.8795166015625],[-57.84517288208008,54.809295654296875],[-57.716674804687386,54.64129638671875],[-57.44219970703119,54.65393066406256],[-57.411319732666016,54.46250534057623],[-57.70393371582031,54.36838531494146],[-58.175052642822266,54.363117218017635],[-58.44097900390619,54.23809814453131],[-58.61058044433594,54.039875030517635],[-58.86697387695307,54.0442276000976]
 ,[-58.9809684753418,53.96511459350597],[-59.48297882080067,53.83238220214844],[-59.850948333740234,53.84912109375],[-59.97998046875,53.7881431579591]]],[[[-61.47430419921875,56.95892333984381],[-61.37890625,56.90228271484381],[-61.36277770996094,56.6736106872558],[-61.67108154296869,56.69110107421875],[-61.6343994140625,56.86169433593756],[-61.47430419921875,56.95892333984381]]],[[[-64.441665649414,60.13124847412115],[-64.46666717529291,60.125000000000114],[-64.44791412353516,60.097915649414176],[-64.54374694824207,60.07291793823242],[-64.48958587646484,60.00208282470703],[-64.27708435058588,60.00208282470703],[-64.1255493164062,59.897285461425895],[-64.1738891601562,59.68888854980469],[-63.91334152221674,59.666881561279354],[-63.7218017578125,59.49951171875006],[-63.8577880859375,59.377502441406364],[-63.5172233581543,59.321949005126896],[-63.18521118164057,59.050514221191406],[-62.845455169677734,58.67267227172863],[-63.16607666015625,58.5067138671875],[-62.992782592773324,58.4237
 5564575207],[-62.64572906494135,58.41085815429699],[-62.42375564575195,57.987777709960994],[-62.07936096191406,57.887706756591854],[-61.89270019531244,57.631896972656364],[-62.28601074218744,57.53771972656244],[-61.8065185546875,57.37628173828131],[-61.87584686279297,57.167778015136776],[-61.480098724365234,57.16405868530279],[-61.36529541015625,57.09552001953131],[-61.65999984741205,56.871387481689396],[-61.81657028198242,56.571674346923885],[-61.86540985107416,56.49572372436529],[-62.096187591552734,56.425289154052734],[-62.10432052612299,56.29203414916998],[-61.9766845703125,56.21832275390631],[-61.540817260742074,56.190399169921875],[-61.42279815673828,56.04325103759771],[-63.0531005859375,56.0045280456543],[-63.42500686645508,56.147937774658146],[-63.75853729248047,56.14198303222656],[-63.86721420288086,56.211040496826286],[-64.09049224853516,56.27989959716797],[-63.93106460571289,56.53376007080078],[-64.14531707763672,56.69975662231445],[-63.908096313476506,56.92752075195324],
 [-63.89007949829096,57.086082458496094],[-63.74146270751953,57.24076461791998],[-63.85581970214844,57.33430099487299],[-63.64994812011713,57.62006378173834],[-63.99725341796869,57.81208038330084],[-64.11667633056635,57.811138153076115],[-64.4217300415039,58.18667221069347],[-64.17222595214844,58.36187362670904],[-63.88111495971674,58.42943954467779],[-64.10494995117182,58.563228607177734],[-63.95025253295893,58.68524551391613],[-63.50679779052729,58.74257659912121],[-63.59534454345703,58.857177734375114],[-64.22970581054688,58.78364944458019],[-64.3325424194336,58.904563903808594],[-64.82070922851562,58.91689300537121],[-64.77924346923828,59.07495880126959],[-64.4603042602539,58.98151779174805],[-64.54353332519526,59.310436248779354],[-64.89825439453125,59.6417808532716],[-64.76048278808588,59.706558227539176],[-64.84023284912104,59.97031784057617],[-64.59371948242176,60.117031097412166],[-64.86394500732422,60.2281951904298],[-64.53440093994129,60.30833435058588],[-64.441665649414,6
 0.13124847412115]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":5,"NAME_1":"Newfoundland and Labrador","ID_2":87,"NAME_2":"Division No. 11","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-54.08184432983387,47.88055419921881],[-53.974002838134766,47.958545684814396],[-53.810935974121094,47.90232467651367],[-53.81075668334961,47.9022216796875],[-53.81029891967768,47.9019660949707],[-53.809734344482365,47.90164566040045],[-53.8067626953125,47.89996337890625],[-53.854167938232365,47.75583267211914],[-53.6122207641601,47.53805541992199],[-53.50611114501942,47.74944305419922],[-53.28694534301752,48.01610946655285],[-52.96083450317383,48.0658340454101],[-53.284168243408146,47.59777832031244],[-53.10743713378906,47.44396972656256],[-52.92034530639643,47.54173278808594],[-52.711956024169865,47.75734329223633],[-52.63496398925781,47.49256896972662],[-52.90581512451172,47.08378982543957],[-52.93754577636719,46.81480407714838],[-53.09114456176752,46.64553833007818],[-53.38318252563465,46.73872375488281],[-53.652462005615234,46.70602416992193],[-53.602222442626896,46.892776489257926],[-53.781597137451115,47.03148651
 123041],[-54.060508728027344,46.7993545532226],[-54.16708374023432,46.99092102050781],[-53.98500061035156,47.30194473266607],[-53.90487289428711,47.342269897460994],[-53.90050506591797,47.60712051391607],[-54.08184432983387,47.88055419921881]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":5,"NAME_1":"Newfoundland and Labrador","ID_2":88,"NAME_2":"Division No. 1","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-53.974002838134766,47.958545684814396],[-54.08184432983387,47.88055419921881],[-54.205833435058594,47.7958335876466],[-54.4474983215332,47.480834960937614],[-54.59416580200195,47.393611907958984],[-54.83111190795893,47.39527893066406],[-55.06251907348633,47.21245193481445],[-55.08000183105469,47.080001831054744],[-55.381668090820256,46.874721527099666],[-55.552452087402344,46.925342559814396],[-55.7009162902832,46.861618041992244],[-55.93444442749018,46.89361190795904],[-55.978889465331974,46.98749923706066],[-55.766937255859375,47.1027717590332],[-55.59162902832031,47.116889953613395],[-55.33735275268549,47.24545288085949],[-55.289653778076115,47.39201736450207],[-55.086624145507756,47.590091705322266],[-54.85438156127924,47.73954772949219],[-54.68964767456055,48.02587509155268],[-54.74714660644531,48.1100311279298],[-54.53361511230469,48.205997467041016],[-54.3111572265625,48.07061767578125],[-54.11640167236328,48.08
 1672668456974],[-53.974002838134766,47.958545684814396]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":5,"NAME_1":"Newfoundland and Labrador","ID_2":89,"NAME_2":"Division No. 2","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-55.27854919433594,48.268558502197266],[-54.91059112548828,48.24448394775396],[-54.74714660644531,48.1100311279298],[-54.68964767456055,48.02587509155268],[-54.85438156127924,47.73954772949219],[-55.086624145507756,47.590091705322266],[-55.40027236938471,47.61879348754894],[-55.441291809081974,47.46681213378912],[-55.754383087158146,47.457946777343864],[-55.97325134277338,47.76401901245117],[-56.23083496093744,47.628334045410156],[-56.65501022338867,47.60665512084961],[-56.86027908325184,47.54666519165045],[-57.0180549621582,47.59388732910162],[-57.636112213134766,47.604721069335994],[-58.12111282348627,47.69444274902355],[-58.811748504638615,47.5931510925293],[-59.220001220703125,47.577777862548885],[-59.31259536743164,47.66635513305664],[-58.991264343261605,47.82751083374018],[-58.51626968383789,47.91926574707037],[-57.92164993286133,48.22389984130871],[-57.71221923828125,48.23908615112316],[-57.24660110473627,48.4744
 2626953125],[-57.01866149902338,48.30398178100586],[-56.72837066650385,48.34291076660162],[-56.522285461425724,48.525650024414176],[-56.13346862792963,48.53664398193365],[-55.973323822021484,48.43634414672846],[-55.89548110961914,48.24697494506836],[-55.27854919433594,48.268558502197266]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":5,"NAME_1":"Newfoundland and Labrador","ID_2":90,"NAME_2":"Division No. 3","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-58.88805389404291,48.70305633544933],[-58.939998626708984,48.507499694824276],[-59.23427963256836,48.523834228515625],[-58.88805389404291,48.70305633544933]]],[[[-57.40289688110346,48.5317001342774],[-57.67082214355469,48.324920654296875],[-57.92164993286133,48.22389984130871],[-58.51626968383789,47.91926574707037],[-58.991264343261605,47.82751083374018],[-59.31259536743164,47.66635513305664],[-59.40944290161127,47.889167785644645],[-58.97883987426752,48.12948989868164],[-58.67388916015625,48.37416839599615],[-58.477222442626896,48.431667327880916],[-58.68838882446289,48.6798667907716],[-58.50645446777344,48.9446372985841],[-58.20231246948242,48.88451766967785],[-58.15908813476551,48.680374145507926],[-57.56111907958979,48.51041793823248],[-57.40289688110346,48.5317001342774]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":5,"NAME_1":"Newfoundland and Labrador","ID_2":91,"NAME_2":"Division No. 4"
 ,"TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-56.74834442138672,50.133720397949276],[-56.72861099243164,49.952220916748104],[-56.78132629394531,49.625625610351676],[-56.697647094726506,49.548042297363224],[-56.98215484619129,49.238647460937614],[-56.78194427490229,49.21239089965832],[-56.69464874267578,49.035182952880916],[-57.05059814453119,48.84559631347656],[-57.382305145263615,48.83849334716808],[-57.4863166809082,48.69871520996094],[-57.40289688110346,48.5317001342774],[-57.56111907958979,48.51041793823248],[-58.15908813476551,48.680374145507926],[-58.20231246948242,48.88451766967785],[-58.50645446777344,48.9446372985841],[-58.37666702270508,49.06250000000006],[-58.163612365722656,49.06166839599604],[-58.064998626708984,49.20999908447277],[-58.24359893798828,49.32362747192394],[-57.98232650756836,49.28733825683594],[-57.62292861938465,49.30574417114258],[-57.443706512451115,49.37628555297846],[-57.68599319458008,49.595539093017635],[-57.651035308837834,49.778
 16390991205],[-57.51394271850586,49.782226562500114],[-57.45552825927729,49.952785491943416],[-56.74834442138672,50.133720397949276]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":5,"NAME_1":"Newfoundland and Labrador","ID_2":92,"NAME_2":"Division No. 5","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-55.30927658081055,49.22489166259777],[-55.266815185546875,49.17721557617199],[-55.035503387451115,49.203762054443416],[-54.34100341796875,48.993347167968864],[-54.426513671875,48.80355834960949],[-54.68367004394531,48.84735107421881],[-54.89058303833008,48.573009490966854],[-55.27854919433594,48.268558502197266],[-55.89548110961914,48.24697494506836],[-55.973323822021484,48.43634414672846],[-56.13346862792963,48.53664398193365],[-56.522285461425724,48.525650024414176],[-56.72837066650385,48.34291076660162],[-57.01866149902338,48.30398178100586],[-57.24660110473627,48.47442626953125],[-57.71221923828125,48.23908615112316],[-57.92164993286133,48.22389984130871],[-57.67082214355469,48.324920654296875],[-57.40289688110346,48.5317001342774],[-57.4863166809082,48.69871520996094],[-57.382305145263615,48.83849334716808],[-57.05059814453119,48.84559631347656],[-56.69464874267578,49.035182952880916],[-56.78194427490229,49.212390
 89965832],[-56.51068115234375,49.34920120239252],[-56.104202270507756,49.275104522705135],[-55.86997222900385,49.356178283691406],[-55.30927658081055,49.22489166259777]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":5,"NAME_1":"Newfoundland and Labrador","ID_2":93,"NAME_2":"Division No. 6","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-53.810935974121094,47.90232467651367],[-53.974002838134766,47.958545684814396],[-54.11640167236328,48.081672668456974],[-54.3111572265625,48.07061767578125],[-54.53361511230469,48.205997467041016],[-54.74714660644531,48.1100311279298],[-54.91059112548828,48.24448394775396],[-55.27854919433594,48.268558502197266],[-54.89058303833008,48.573009490966854],[-54.68367004394531,48.84735107421881],[-54.426513671875,48.80355834960949],[-54.34100341796875,48.993347167968864],[-54.388706207275334,49.15228271484375],[-53.90116882324219,49.15950775146479],[-53.82320404052729,49.24222183227539],[-53.5318717956543,49.27575302124035],[-53.60483932495117,49.0375862121582],[-53.777500152587834,49.02527618408203],[-53.938694000244084,48.841831207275504],[-53.894443511962834,48.72083282470703],[-53.69524383544922,48.639457702636776],[-53.79332733154291,48.47222900390631],[-53.53444290161133,48.46705627441412],[-53.29611206054676,48.533054
 35180664],[-53.10749816894531,48.67111206054693],[-53.00222396850586,48.54694366455084],[-53.207500457763615,48.349166870117244],[-53.938888549804574,48.08055496215826],[-53.636943817138615,48.030277252197266],[-53.810935974121094,47.90232467651367]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":5,"NAME_1":"Newfoundland and Labrador","ID_2":94,"NAME_2":"Division No. 7","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-53.5318717956543,49.27575302124035],[-53.82320404052729,49.24222183227539],[-53.90116882324219,49.15950775146479],[-54.388706207275334,49.15228271484375],[-54.34100341796875,48.993347167968864],[-55.035503387451115,49.203762054443416],[-55.266815185546875,49.17721557617199],[-55.193244934081974,49.25641632080078],[-54.84422302246094,49.279499053955135],[-54.55638885498041,49.53972244262707],[-54.379722595214844,49.422500610351676],[-54.18055725097656,49.38388824462896],[-54.07749938964844,49.47611236572277],[-53.5318717956543,49.27575302124035]]],[[[-55.30927658081055,49.22489166259777],[-55.86997222900385,49.356178283691406],[-56.104202270507756,49.275104522705135],[-56.51068115234375,49.34920120239252],[-56.78194427490229,49.21239089965832],[-56.98215484619129,49.238647460937614],[-56.697647094726506,49.548042297363224],[-56.78132629394531,49.625625610351676],[-56.617927551269474,49.81550598144531],[-56.4027786
 25488224,49.92722320556635],[-56.166770935058594,50.15550231933605],[-56.01921844482416,50.03071212768555],[-55.77172851562494,49.93050765991222],[-55.93051147460932,49.746421813964844],[-55.712547302246094,49.424289703369254],[-55.1655654907226,49.545528411865234],[-55.14888763427729,49.45360946655279],[-55.30927658081055,49.22489166259777]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":5,"NAME_1":"Newfoundland and Labrador","ID_2":95,"NAME_2":"Division No. 8","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-56.7442626953125,50.13370513916021],[-56.74595260620117,50.13420867919922],[-56.74834442138672,50.133720397949276],[-57.45552825927729,49.952785491943416],[-57.51394271850586,49.782226562500114],[-57.651035308837834,49.77816390991205],[-57.68599319458008,49.595539093017635],[-57.443706512451115,49.37628555297846],[-57.62292861938465,49.30574417114258],[-57.98232650756836,49.28733825683594],[-58.24359893798828,49.32362747192394],[-58.22055435180664,49.41749954223633],[-57.96694564819336,49.66749954223644],[-57.614009857177734,50.187770843505916],[-57.475559234619084,50.47632217407232],[-57.28826141357416,50.61928939819347],[-57.33808898925781,50.721996307373104],[-57.07590103149403,50.79654693603527],[-56.93666839599598,51.0447235107423],[-56.662776947021484,51.353889465332145],[-56.43944549560547,51.4116668701173],[-55.911109924316406,51.62805557250988],[-55.7085227966308,51.501438140869254],[-55.48871612548828,51.5987
 7395629883],[-55.49581527709961,51.37196350097662],[-55.81246566772455,51.34856796264654],[-55.72124099731445,51.18833160400402],[-55.862220764160156,50.893890380859375],[-55.967998504638615,50.85961914062506],[-56.129829406738224,50.637733459472656],[-56.39754104614252,50.405254364013786],[-56.612983703613224,50.12668609619152],[-56.7442626953125,50.13370513916021]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":5,"NAME_1":"Newfoundland and Labrador","ID_2":96,"NAME_2":"Division No. 9","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-111.56942749023438,65.38116455078125],[-111.56803894042969,65.38124847412115],[-110.8423843383789,65.40769958496094],[-109.07715606689447,64.74463653564447],[-106.58404541015625,64.59294128417974],[-105.0177612304687,64.47739410400402],[-103.3287582397461,64.32474517822271],[-103.3224029541015,64.32412719726562],[-102.30763244628906,64.22166442871094],[-102.30739593505854,64.22164154052729],[-102,64.13135528564459],[-101.99999237060547,64.13124847412104],[-102,63.75771713256836],[-102,63.75745773315441],[-102,63.72708129882807],[-101.99999237060547,63.724998474121094],[-102,63.71255874633795],[-101.99999237060547,63.706253051757926],[-102,63.706069946289176],[-102,63.70413208007824],[-102,63.00006103515625],[-101.99999237060547,62.993751525878906],[-102,62.873363494873104],[-102,62.87318420410156],[-102,62.868801116943416],[-102,62.86730575561535],[-102,62.19789505004883],[-102,62.1974716186524],[-102,62.06472015380865
 ],[-102,62.06261825561518],[-102,62.05646514892578],[-102.00000762939453,62.056251525878906],[-101.99999237060547,61.98131179809576],[-102,61.97906875610363],[-102,61.18756866455084],[-102,61.18743515014654],[-102,60.8125],[-102,60.80625152587896],[-102,60.60707092285156],[-101.99999237060547,60.606903076171875],[-102,60.52500152587902],[-102.00000762939453,60.52166748046881],[-102,60.00000000000006],[-104.49999999999994,60.00000000000006],[-106.25000762939447,60.00000000000006],[-108.50263977050781,60.00000000000006],[-110,60.00000000000006],[-111.75,60.00000000000006],[-114,60.00000000000006],[-115.5671615600586,60.00004959106445],[-117.49999999999994,60.00000000000006],[-120,60.00000000000006],[-122,60.00000000000006],[-123.78933715820312,60.00003433227539],[-124.12383270263672,60.20600128173834],[-124.59944915771479,60.687866210937614],[-124.44921875,60.764682769775334],[-124.53938293457026,60.93860626220709],[-124.7661514282226,60.958061218261776],[-125.26406860351557,60.768348
 69384777],[-125.66963958740234,60.803108215331974],[-125.83222961425781,60.881286621093864],[-126.63904571533203,60.730789184570426],[-126.81275177001942,60.75856018066412],[-127.1029586791991,61.45814895629894],[-127.46918487548828,61.48515701293951],[-128.04745483398432,61.72872161865246],[-128.34793090820312,62.014839172363224],[-129.12887573242188,62.09945678710943],[-129.2696685791015,62.2579803466798],[-129.2124633789062,62.50450515747082],[-129.4393463134765,62.57793426513672],[-129.75003051757812,62.8810653686524],[-129.74070739746088,63.06051254272472],[-130.13002014160156,63.26682662963873],[-129.78492736816406,63.44596862792969],[-130.10122680664062,63.754177093505916],[-130.69541931152338,63.95030212402344],[-128.68923950195312,63.924888610839844],[-126.70455169677734,63.931007385253906],[-125.62132263183588,63.933330535888786],[-123.67435455322266,63.94901657104492],[-122.01622009277338,63.949653625488224],[-121.99299621582031,64.70993041992182],[-121.95528411865229,65.
 7559814453125],[-121.94641876220697,67.14009857177734],[-120.4852905273437,67.19081878662104],[-118.59527587890625,67.19918060302746],[-117.06546020507812,66.9291763305664],[-115.34188079833984,66.33062744140625],[-112.73799133300781,65.33104705810553],[-111.56942749023438,65.38116455078125]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":6,"NAME_1":"Northwest Territories","ID_2":97,"NAME_2":"Fort Smith","TYPE_2":"Region","ENGTYPE_2":"Region","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-125.76249694824219,69.370834350586],[-125.3187484741211,69.37500000000006],[-125.2874984741211,69.44791412353544],[-125.26875305175776,69.53333282470709],[-125.2750015258789,69.5687484741211],[-125.43958282470703,69.59999847412126],[-125.06041717529297,69.74375152587902],[-124.91041564941406,69.93333435058622],[-125.1312484741211,70.02708435058594],[-125.01041412353516,70.03333282470697],[-124.47083282470703,69.99791717529297],[-124.50781249999994,69.71510314941412],[-124.1890640258789,69.63697814941418],[-124.496353149414,69.3682327270509],[-124.01041412353516,69.36250305175793],[-123.97291564941406,69.3916702270509],[-123.84583282470703,69.36250305175793],[-123.71458435058594,69.34583282470709],[-123.52083587646479,69.37291717529303],[-123.36666870117188,69.48750305175781],[-123.22499847412104,69.51041412353538],[-123.13541412353516,69.63333129882824],[-123.09583282470703,69.72291564941412],[-122.63541412353516
 ,69.82499694824247],[-121.42082977294922,69.77291870117193],[-120.9375,69.66458129882818],[-120.38711547851562,69.43428039550781],[-121.04924774169922,69.40641021728516],[-120.90374755859375,67.85517120361328],[-118.59527587890625,67.19918060302746],[-120.4852905273437,67.19081878662104],[-121.94641876220697,67.14009857177734],[-121.95528411865229,65.7559814453125],[-121.99299621582031,64.70993041992182],[-122.01622009277338,63.949653625488224],[-123.67435455322266,63.94901657104492],[-125.62132263183588,63.933330535888786],[-126.70455169677734,63.931007385253906],[-128.68923950195312,63.924888610839844],[-130.69541931152338,63.95030212402344],[-130.95541381835932,64.1133193969726],[-131.06817626953125,64.36132049560547],[-131.45103454589838,64.39186096191412],[-131.85537719726557,64.537826538086],[-132.03771972656244,64.69642639160156],[-132.58689880371094,64.83458709716803],[-132.3361053466797,65.06072235107422],[-132.772720336914,65.1830444335938],[-132.27537536621088,65.45770263
 67188],[-132.16831970214844,65.60242462158203],[-132.5963592529297,65.85670471191412],[-132.65660095214844,66.01583099365263],[-133.1280670166015,66.03093719482433],[-133.6583251953124,65.95967864990234],[-133.5535430908203,66.25700378417969],[-133.7857666015625,66.29537963867188],[-133.6934356689453,66.50348663330084],[-133.75965881347656,66.80102539062523],[-134.3125,67.00000000000006],[-136.16441345214844,67.00000000000006],[-136.23509216308594,67.17253875732422],[-136.0865631103515,67.30070495605469],[-136.19998168945312,67.56166076660156],[-136.44877624511707,67.64947509765653],[-136.46859741210932,68.86666870117188],[-136.35624694824213,68.87291717529314],[-136.05833435058588,68.78958129882812],[-135.97291564941406,68.83125305175787],[-135.7937469482422,68.80000305175793],[-135.84374999999994,68.74791717529325],[-135.8125,68.77291870117199],[-135.62290954589844,68.73332977294922],[-135.49583435058588,68.6812515258789],[-135.6416625976562,68.65416717529297],[-135.64375305175776
 ,68.64791870117193],[-135.4374999999999,68.64791870117193],[-135.45208740234364,68.63333129882824],[-135.23333740234375,68.51457977294922],[-135.21249389648432,68.50624847412115],[-135.1666717529297,68.48542022705084],[-135.11874389648432,68.49166870117188],[-135.0729217529297,68.47916412353521],[-135.0416717529297,68.49583435058611],[-135.27291870117188,68.55625152587902],[-135.16250610351562,68.6041641235351],[-135.11874389648432,68.55625152587902],[-135.0479125976562,68.6041641235351],[-135.36250305175776,68.76041412353516],[-135.3458404541015,68.90625000000011],[-135.4250030517577,68.97291564941406],[-135.39791870117176,68.97708129882812],[-135.50209045410156,69.0166702270509],[-135.60208129882807,69.00833129882807],[-135.7395782470703,69.14167022705078],[-135.53125,69.08541870117188],[-135.5812530517578,69.12083435058605],[-135.52499389648438,69.12500000000028],[-135.47291564941406,69.17500305175793],[-135.3020782470702,69.2750015258789],[-135.23750305175776,69.42500305175787],
 [-135.10000610351562,69.33125305175798],[-134.90467834472645,69.47239685058611],[-134.602081298828,69.402084350586],[-134.62290954589844,69.4375],[-134.602081298828,69.43333435058594],[-134.4895782470703,69.67292022705101],[-134.254165649414,69.57499694824213],[-133.80416870117188,69.56041717529303],[-133.97084045410145,69.37291717529303],[-134.0833282470703,69.30625152587885],[-134.03541564941406,69.25000000000017],[-133.7083282470703,69.33333587646479],[-133.0104217529297,69.40416717529297],[-132.97500610351557,69.56041717529303],[-132.96041870117182,69.6145858764649],[-132.95416259765625,69.625],[-132.50833129882812,69.60832977294933],[-131.97708129882807,69.75208282470709],[-130.95625305175776,70.02916717529297],[-130.93333435058594,70.06041717529291],[-130.4791717529297,70.09999847412115],[-130.347915649414,70.09375000000011],[-130.2624969482422,70.07707977294922],[-129.9375,70.06041717529291],[-129.50625610351562,70.13333129882812],[-129.56459045410156,70.12708282470709],[-129
 .41250610351562,70.07917022705078],[-129.52499389648432,70.01667022705084],[-129.53541564941406,69.99583435058616],[-130.3463592529297,69.81510162353527],[-130.92343139648438,69.5609359741211],[-131.15415954589838,69.60832977294933],[-132.1182250976562,69.47447967529291],[-132.36041259765625,69.1999969482423],[-132.00625610351557,69.2312469482423],[-131.69166564941406,69.40000152587896],[-131.2354125976562,69.52291870117199],[-131.0359344482422,69.48384857177734],[-130.9791717529297,69.11666870117182],[-130.7312469482422,69.3916702270509],[-130.33541870117182,69.68333435058588],[-129.59374999999994,69.81041717529297],[-129.17916870117182,69.8333358764649],[-129.13749694824213,69.68333435058588],[-128.91458129882812,69.66249847412121],[-128.63281249999994,69.85781097412121],[-128.28958129882807,69.92292022705078],[-128.25416564941406,69.90625000000028],[-128.23124694824207,69.91249847412115],[-128.26042175292963,69.94791412353516],[-128.33541870117188,70.12500000000006],[-127.9416656
 4941406,70.1729202270509],[-127.48124694824213,70.15000152587896],[-127.50833129882807,70.15833282470703],[-128.19375610351557,70.36666870117193],[-128.00209045410156,70.5625],[-127.41301727294922,70.3682327270509],[-127.16041564941406,70.22708129882824],[-126.69947814941406,69.73593902587902],[-126.33073425292963,69.5421829223634],[-125.76249694824219,69.370834350586]]],[[[-109.8405532836914,72.94583129882824],[-109.83836364746094,72.94392395019543],[-109.84735870361322,72.93333435058594],[-109.84101867675781,72.5335464477539],[-110.21041870117182,72.67082977294939],[-110.13593292236322,72.76509857177734],[-110.72239685058594,72.93593597412104],[-110.45573425292969,73.01197814941412],[-109.8405532836914,72.94583129882824]]],[[[-109.8453521728515,72.443588256836],[-109.85298919677729,71.18614196777338],[-109.85302734375,71.1746978759765],[-109.86248016357422,69.92113494873058],[-113.2304458618164,69.923568725586],[-115.12065887451172,69.90512084960949],[-117.32119750976557,69.898040
 77148443],[-117.35416412353516,70.03541564941418],[-116.972915649414,70.12291717529303],[-115.95833587646484,70.23124694824224],[-114.51667022705078,70.32291412353516],[-113.63957977294922,70.26875305175781],[-113.25,70.28125000000011],[-112.52291870117188,70.19791412353527],[-111.96875,70.38333129882807],[-112.1026000976562,70.50156402587902],[-113.55833435058594,70.64583587646484],[-113.82707977294922,70.71666717529303],[-115.29166412353516,70.59583282470703],[-116.25,70.63957977294928],[-116.69791412353516,70.60624694824247],[-117.37291717529297,70.63124847412121],[-118.04792022705067,70.80000305175787],[-118.41197967529297,70.9776000976563],[-117.8109359741211,71.16510009765653],[-116.82707977294922,71.25208282470714],[-116.24375152587885,71.36875152587896],[-115.70207977294922,71.5625],[-117.51667022705078,71.38333129882824],[-118.24948120117188,71.39843750000017],[-118.2890625,71.48490142822288],[-117.761978149414,71.58177185058594],[-117.99791717529291,71.67292022705078],[-11
 9.07447814941406,71.66718292236345],[-119.1125030517577,71.85832977294922],[-118.5765609741211,72.17240142822277],[-118.08802032470703,72.23384857177729],[-118.50572967529297,72.503646850586],[-117.58802032470697,72.78801727294928],[-117.3187484741211,72.92500305175787],[-114.45625305175776,73.37291717529291],[-113.94218444824219,73.16406249999994],[-113.98802185058588,72.81301879882818],[-114.67082977294916,72.59791564941418],[-114.34583282470697,72.5562515258789],[-113.98958587646484,72.65833282470709],[-113.40208435058588,72.67500305175793],[-113.53541564941395,72.80833435058588],[-113.07083129882812,73.01249694824241],[-112.01667022705072,72.88957977294933],[-111.19166564941395,72.72708129882807],[-111.3776016235351,72.42760467529308],[-111.05468749999994,72.32865142822283],[-110.78125,72.53541564941406],[-110.31458282470703,72.55000305175787],[-109.8453521728515,72.443588256836]]],[[[-121.52239990234375,74.55677032470714],[-120.07707977294922,74.27291870117193],[-119.5161514282
 2266,74.21198272705078],[-118.76249694824213,74.21250152587902],[-118.05416870117188,74.2791671752932],[-117.29792022705072,74.20417022705078],[-115.35051727294916,73.5536499023438],[-115.3062515258789,73.46875000000006],[-115.76823425292963,73.35364532470697],[-116.67082977294922,73.21666717529308],[-117.45989990234375,73.04948425292969],[-118.52083587646479,72.75624847412121],[-119.25364685058582,72.65468597412115],[-119.30260467529297,72.37135314941418],[-120.14427185058588,72.09843444824236],[-120.43489837646484,71.95781707763683],[-120.33593749999994,71.83177185058588],[-120.46718597412104,71.56510162353527],[-120.70625305175776,71.47083282470709],[-121.32707977294922,71.38124847412121],[-121.70885467529291,71.48698425292969],[-122.035415649414,71.29792022705095],[-123.1312484741211,71.07917022705078],[-123.42448425292969,71.21718597412121],[-123.61927032470697,71.49323272705095],[-124.17500305175781,71.73332977294933],[-125.13957977294922,71.92082977294933],[-125.7458343505859
 4,71.95625305175787],[-125.67864990234375,72.23384857177729],[-124.98384857177734,72.60051727294928],[-124.97708129882812,72.82083129882818],[-124.44218444824213,72.94322967529297],[-124.86250305175781,73.1062469482423],[-124.50676727294916,73.2588500976562],[-124.34323120117188,73.46406555175793],[-124.0296859741211,73.54634857177734],[-123.81510162353516,73.82239532470709],[-124.15781402587885,73.86927032470703],[-124.35364532470703,74.01718902587902],[-124.41458129882812,74.37708282470714],[-122.26249694824219,74.47916412353527],[-121.52239990234375,74.55677032470714]]],[[[-117.64739990234375,76.11927032470714],[-117.45051574707026,76.0953140258789],[-118.39375305175781,75.55000305175781],[-119.4015655517577,75.60884857177746],[-118.69583129882807,75.89583587646507],[-117.64739990234375,76.11927032470714]]],[[[-109.83528900146484,76.48958587646484],[-109.83451080322266,76.24791717529297],[-110.30416870117182,76.30416870117188],[-110.3854141235351,76.43125152587896],[-109.83528900
 146484,76.48958587646484]]],[[[-109.855728149414,75.53246307373047],[-109.83056640624994,74.87870025634771],[-110.35156249999994,74.847396850586],[-110.78125,74.6645812988283],[-111.6421890258789,74.50260162353527],[-112.72708129882801,74.40416717529308],[-113.72916412353516,74.45833587646496],[-114.20207977294922,74.56874847412115],[-114.08958435058588,74.78541564941412],[-113.48750305175781,74.82707977294916],[-112.84999847412104,74.98124694824219],[-111.88749694824219,75.00416564941412],[-112.16666412353516,75.13333129882818],[-112.82447814941406,75.20156097412132],[-113.22708129882807,75.08541870117193],[-114.41926574707026,75.07343292236334],[-115.04792022705072,74.96458435058605],[-116.22916412353504,75.058334350586],[-117.52916717529297,75.21041870117199],[-117.63906097412104,75.2994842529298],[-117.15416717529297,75.48542022705084],[-117.20573425292969,75.59010314941412],[-116.46041870117182,76.15625000000028],[-115.84583282470703,76.25208282470703],[-115.77500152587885,76.3
 7500000000006],[-115.09791564941395,76.48542022705084],[-114.06301879882812,76.4276046752932],[-114.10624694824219,76.28333282470697],[-113.65833282470697,76.19583129882812],[-113.24791717529297,76.2729187011721],[-112.47916412353516,76.17708587646496],[-111.43958282470703,75.79166412353516],[-111.28281402587885,75.53073120117188],[-109.855728149414,75.53246307373047]]],[[[-114.08073425292969,76.8921890258789],[-113.50833129882801,76.73332977294922],[-114.82239532470697,76.77135467529303],[-114.08073425292969,76.8921890258789]]],[[[-116.4453125,77.53801727294922],[-115.46250152587885,77.34999847412132],[-116.23542022705078,77.20207977294933],[-116.27916717529297,77.03541564941423],[-115.84374999999994,76.9854202270509],[-115.89791870117182,76.69166564941418],[-116.29374694824219,76.58750152587919],[-117.04582977294922,76.56666564941412],[-116.96302032470692,76.34426879882818],[-117.59791564941406,76.28333282470697],[-118.03333282470703,76.4124984741211],[-118.65416717529286,76.45417
 022705084],[-118.6395797729491,76.28958129882824],[-119.715103149414,75.89009857177734],[-120.472915649414,75.83125305175793],[-120.42552185058582,75.99948120117199],[-122.11823272705078,76.02239990234386],[-122.65208435058594,76.18333435058622],[-122.61823272705078,76.34323120117182],[-121.4562530517577,76.44166564941406],[-121.2578125,76.62031555175793],[-120.58333587646479,76.74375152587902],[-120.4124984741211,76.8645858764649],[-119.57499694824219,77.14791870117199],[-118.59375,77.36250305175793],[-118.00416564941406,77.370834350586],[-117.23958587646473,77.28958129882818],[-116.97708129882812,77.44791412353527],[-116.4453125,77.53801727294922]]],[[[-114.33281707763672,78.07551574707031],[-113.62135314941406,77.79218292236357],[-114.29792022705078,77.71041870117182],[-115.1099014282226,77.95259857177746],[-114.33281707763672,78.07551574707031]]],[[[-109.80781555175781,78.10672760009777],[-109.83113098144526,77.93657684326183],[-110.07291412353504,77.78125000000023],[-110.069267
 27294916,77.56510162353516],[-110.87708282470703,77.40833282470703],[-111.32291412353516,77.42916870117193],[-111.9479141235351,77.33750152587902],[-113.20417022705072,77.52916717529308],[-113.30416870117188,77.85624694824224],[-113.10208129882812,77.92292022705078],[-111.27916717529297,78.09166717529308],[-109.80781555175781,78.10672760009777]]],[[[-109.81652069091797,78.6349792480471],[-109.8312149047851,78.3138046264649],[-109.8312149047851,78.30416870117182],[-111.41874694824219,78.27500152587908],[-112.17292022705078,78.37916564941406],[-112.24166870117188,78.54582977294916],[-111.47551727294922,78.5703125],[-111.09531402587885,78.70156097412115],[-110.3854141235351,78.75833129882812],[-109.81652069091797,78.6349792480471]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":6,"NAME_1":"Northwest Territories","ID_2":98,"NAME_2":"Inuvik","TYPE_2":"Region","ENGTYPE_2":"Region","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.77323913574219,44.66358566284191],[-64.94503021240229,44.53711700439453],[-65.33162689208984,44.31157684326183],[-65.65316772460938,44.5906715393067],[-65.74277496337885,44.711112976074276],[-65.01950073242182,45.06729125976557],[-64.77323913574219,44.66358566284191]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":99,"NAME_2":"Annapolis","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-61.436214447021484,45.648368835449276],[-61.943607330322266,45.3998641967774],[-62.09143447875971,45.383659362793026],[-62.235935211181584,45.72208786010748],[-61.96880722045893,45.878498077392635],[-61.73749923706055,45.63083267211914],[-61.436214447021484,45.648368835449276]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":100,"NAME_2":"Antigonish","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-60.23332595825184,45.72589492797857],[-60.2533340454101,45.72749328613281],[-60.271339416503906,45.73366546630871],[-60.678340911865234,45.82146072387701],[-60.701602935791016,46.007499694824276],[-60.31771469116205,46.21111297607433],[-60.12160110473633,46.26333236694336],[-59.92638397216797,46.172813415527344],[-59.83086776733393,45.956157684326286],[-60.1508331298827,45.878055572509766],[-60.23332595825184,45.72589492797857]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":101,"NAME_2":"Cape Breton","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-63.15477752685541,45.74930191040039],[-63.008594512939396,45.486183166503906],[-62.714572906494084,45.27603912353521],[-63.335979461669865,45.036586761474666],[-63.39389801025379,45.05517578125006],[-63.48329162597656,45.290306091308594],[-63.516273498535156,45.369758605957145],[-64.0982437133789,45.40777587890625],[-64.13374328613276,45.548305511474666],[-63.54817962646479,45.55131149291992],[-63.379104614257756,45.76160430908203],[-63.15477752685541,45.74930191040039]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":102,"NAME_2":"Colchester","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-63.379104614257756,45.76160430908203],[-63.54817962646479,45.55131149291992],[-64.13374328613276,45.548305511474666],[-64.0982437133789,45.40777587890625],[-64.56658935546875,45.40626525878906],[-64.8499984741211,45.35444259643549],[-64.91305541992188,45.43055725097662],[-64.68638610839838,45.5366668701173],[-64.27828216552734,45.83412170410162],[-64.04694366455072,45.981712341308594],[-63.72833251953119,45.87305450439459],[-63.46888732910156,45.878334045410156],[-63.379104614257756,45.76160430908203]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":103,"NAME_2":"Cumberland","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-65.65316772460938,44.5906715393067],[-65.33162689208984,44.31157684326183],[-65.39582061767572,44.23231887817394],[-65.88878631591791,44.1381187438966],[-66.1544189453125,44.001323699951286],[-66.2138061523437,44.10817337036144],[-66.1275024414062,44.332778930664006],[-65.8486099243164,44.56333160400402],[-65.65316772460938,44.5906715393067]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":104,"NAME_2":"Digby","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-62.17195892333973,44.98257827758789],[-62.71447753906244,45.27600479125988],[-62.09143447875971,45.383659362793026],[-61.943607330322266,45.3998641967774],[-61.436214447021484,45.648368835449276],[-61.26305389404297,45.45416641235363],[-61.373054504394474,45.34671401977545],[-60.99611282348633,45.33944320678711],[-61.05194473266596,45.235832214355526],[-61.34749984741205,45.24166488647472],[-62.17195892333973,44.98257827758789]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":105,"NAME_2":"Guysborough","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-62.17195892333973,44.98257827758789],[-62.16667938232416,44.97903060913097],[-62.16663360595703,44.97871017456055],[-62.166416168212834,44.97694396972656],[-62.166110992431584,44.97649383544933],[-62.86507797241205,44.73108291625988],[-63.34292984008789,44.65704727172857],[-63.55917739868164,44.55838012695324],[-63.619915008544865,44.4485321044923],[-63.91884231567383,44.4911460876466],[-64.06243133544922,44.63583374023449],[-64.2371978759765,44.760856628418026],[-63.865005493164006,44.79638671875006],[-63.39389801025379,45.05517578125006],[-63.335979461669865,45.036586761474666],[-62.714572906494084,45.27603912353521],[-62.71447753906244,45.27600479125988],[-62.17195892333973,44.98257827758789]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":106,"NAME_2":"Halifax","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-63.48329162597656,45.290306091308594],[-63.39389801025379,45.05517578125006],[-63.865005493164006,44.79638671875006],[-64.2371978759765,44.760856628418026],[-64.43220520019531,44.89931106567394],[-64.17703247070307,45.073471069335994],[-64.1729965209961,45.18622970581055],[-63.70333480834955,45.324440002441406],[-63.48329162597656,45.290306091308594]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":107,"NAME_2":"Hants","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-60.558937072753906,47.02758789062506],[-60.74725341796869,46.505184173583984],[-61.05112075805664,46.114761352539176],[-60.98736572265619,46.008995056152344],[-61.00034332275385,45.957664489746094],[-60.996921539306584,45.9436302185058],[-60.92954635620117,45.858486175537166],[-61.16638565063471,45.709392547607536],[-61.35361099243153,45.606872558593864],[-61.46611022949213,45.716945648193416],[-61.55166625976557,46.04138946533203],[-61.107521057128906,46.43905639648432],[-60.89472198486328,46.78499984741211],[-60.558937072753906,47.02758789062506]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":108,"NAME_2":"Inverness","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.17703247070307,45.073471069335994],[-64.43220520019531,44.89931106567394],[-64.77323913574219,44.66358566284191],[-65.01950073242182,45.06729125976557],[-64.47252655029297,45.23974227905279],[-64.17703247070307,45.073471069335994]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":109,"NAME_2":"Kings","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.2371978759765,44.760856628418026],[-64.06243133544922,44.63583374023449],[-64.31029510498047,44.53585815429699],[-64.28360748291016,44.380001068115234],[-64.48114776611322,44.15069580078131],[-64.56493377685547,44.1565055847168],[-64.87364196777344,44.41791534423834],[-64.94503021240229,44.53711700439453],[-64.77323913574219,44.66358566284191],[-64.43220520019531,44.89931106567394],[-64.2371978759765,44.760856628418026]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":110,"NAME_2":"Lunenburg","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-62.235935211181584,45.72208786010748],[-62.09143447875971,45.383659362793026],[-62.71447753906244,45.27600479125988],[-62.714572906494084,45.27603912353521],[-63.008594512939396,45.486183166503906],[-63.15477752685541,45.74930191040039],[-62.99333190917963,45.79388809204113],[-62.705833435058594,45.76250076293951],[-62.49722290039057,45.61027908325195],[-62.235935211181584,45.72208786010748]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":111,"NAME_2":"Pictou","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.56493377685547,44.1565055847168],[-64.57936096191406,44.0610084533692],[-64.78194427490229,43.864444732666016],[-64.97090148925781,43.87048721313488],[-65.39582061767572,44.23231887817394],[-65.33162689208984,44.31157684326183],[-64.94503021240229,44.53711700439453],[-64.87364196777344,44.41791534423834],[-64.56493377685547,44.1565055847168]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":112,"NAME_2":"Queens","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-60.271339416503906,45.73366546630871],[-60.44166564941406,45.63916778564453],[-60.92222213745117,45.6216659545899],[-61.16277694702137,45.5649986267091],[-61.35361099243153,45.606872558593864],[-61.16638565063471,45.709392547607536],[-60.678340911865234,45.82146072387701],[-60.271339416503906,45.73366546630871]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":113,"NAME_2":"Richmond","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-65.39582061767572,44.23231887817394],[-64.97090148925781,43.87048721313488],[-64.95610809326166,43.74722290039057],[-65.21448516845703,43.75308609008789],[-65.3890533447265,43.546142578125114],[-65.73067474365229,43.492389678955135],[-65.78031158447266,43.595523834228516],[-65.64875030517572,43.74715042114258],[-65.39582061767572,44.23231887817394]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":114,"NAME_2":"Shelburne","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-60.98180389404297,45.999221801757756],[-60.98573684692383,46.006225585937614],[-60.98736572265619,46.008995056152344],[-61.05112075805664,46.114761352539176],[-60.74725341796869,46.505184173583984],[-60.558937072753906,47.02758789062506],[-60.49229049682617,46.913505554199276],[-60.30410385131836,46.851387023925895],[-60.351291656494084,46.628334045410156],[-60.52243423461914,46.37388992309582],[-60.437992095947266,46.290832519531364],[-60.649723052978516,46.11583328247082],[-60.98180389404297,45.999221801757756]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":115,"NAME_2":"Victoria","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-65.78031158447266,43.595523834228516],[-65.84361267089844,43.7627792358399],[-66.06805419921875,43.72222137451183],[-66.16916656494135,43.805278778076286],[-66.1544189453125,44.001323699951286],[-65.88878631591791,44.1381187438966],[-65.39582061767572,44.23231887817394],[-65.64875030517572,43.74715042114258],[-65.78031158447266,43.595523834228516]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":7,"NAME_1":"Nova Scotia","ID_2":116,"NAME_2":"Yarmouth","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-65.00289154052734,61.687770843505916],[-64.62499999999989,61.589584350585994],[-64.7604141235351,61.41666793823242],[-64.95625305175781,61.34791564941406],[-65.45573425292963,61.63906478881836],[-65.00289154052734,61.687770843505916]]],[[[-71.12864685058588,62.89010620117199],[-70.36042022705078,62.724998474121094],[-70.17552185058594,62.595310211181754],[-70.35832977294922,62.52500152587896],[-70.71823120117188,62.5546875],[-70.80416870117188,62.77291488647455],[-71.12864685058588,62.89010620117199]]],[[[-83.84843444824219,66.31100463867188],[-83.96334075927734,66.3788833618164],[-83.99999999999994,66.39985656738281],[-84.24327850341791,66.53793334960932],[-84.29592895507807,66.56757354736334],[-84.31319427490229,66.5772705078125],[-84.3270416259765,66.58504486083979],[-84.87832641601562,66.88916778564459],[-84.9791641235351,66.91874694824224],[-84.95455932617182,66.91367340087885],[-84.92999267578125,66.9156951
 9042974],[-84.9242935180664,66.91561889648438],[-84.92170715332031,66.9155883789062],[-84.94010162353516,66.92708587646484],[-84.69166564941406,66.95417022705078],[-84.3687515258789,66.70625305175787],[-83.88749694824207,66.4541702270509],[-83.84843444824219,66.31100463867188]]],[[[-74.32239532470703,68.17968750000006],[-73.82707977294916,68.01249694824213],[-73.52031707763672,68.03801727294933],[-73.3541641235351,67.84375],[-73.52916717529286,67.76875305175798],[-74.48750305175776,67.78958129882812],[-74.74166870117176,67.94999694824219],[-74.32239532470703,68.17968750000006]]],[[[-86.64115142822266,68.30260467529291],[-86.45468902587885,68.24948120117193],[-86.34843444824213,67.90468597412121],[-86.58541870117182,67.72291564941418],[-86.80208587646479,67.76667022705078],[-86.95989990234375,67.93906402587885],[-86.80468749999994,68.01615142822266],[-86.84114837646484,68.21823120117193],[-86.64115142822266,68.30260467529291]]],[[[-75.92864990234375,68.34635162353516],[-75.1999969482
 4213,68.24791717529297],[-75.01093292236328,68.15781402587902],[-75.14531707763672,67.94947814941412],[-74.99635314941406,67.88801574707031],[-75.0796890258789,67.53593444824224],[-75.30885314941406,67.39010620117199],[-75.8973999023437,67.24948120117193],[-76.66041564941406,67.26457977294933],[-77.08489990234375,67.31301879882841],[-77.30156707763672,67.71823120117188],[-77.1473999023437,67.91197967529291],[-76.66614532470703,68.2598953247072],[-75.92864990234375,68.34635162353516]]],[[[-75.24323272705078,68.72760009765625],[-74.7578125,68.49948120117188],[-75.2291641235351,68.43541717529297],[-75.3973999023437,68.51301574707031],[-75.24323272705078,68.72760009765625]]],[[[-78.47864532470703,69.394271850586],[-78.20677185058594,69.29740142822271],[-78.54114532470703,69.14948272705095],[-78.83541870117188,68.91249847412115],[-79.38489532470697,68.88593292236328],[-79.20417022705072,69.09583282470714],[-78.9296875,69.11302185058605],[-78.47864532470703,69.394271850586]]],[[[-77.10990
 14282226,69.45051574707031],[-76.76041412353516,69.2750015258789],[-77.21875,69.13333129882835],[-77.4140625,69.28697967529308],[-77.1099014282226,69.45051574707031]]],[[[-78.14323425292957,69.75676727294916],[-77.93801879882812,69.6432342529298],[-78.44166564941406,69.52291870117199],[-78.53541564941406,69.64583587646507],[-78.14323425292957,69.75676727294916]]],[[[-79.62239837646484,69.81510162353527],[-79.54792022705078,69.63749694824224],[-80.47343444824213,69.67240142822271],[-80.44374847412104,69.80000305175787],[-79.88541412353516,69.74166870117199],[-79.62239837646484,69.81510162353527]]],[[[-81.8187484741211,68.89791870117188],[-81.22343444824219,68.71718597412115],[-81.49791717529297,68.57499694824219],[-81.96823120117176,68.42760467529297],[-82.51249694824219,68.43958282470703],[-82.2171859741211,68.25156402587913],[-82.16822814941406,68.00989532470703],[-82.02239990234364,67.87343597412121],[-81.36302185058588,67.58698272705095],[-81.1901016235351,67.4525985717774],[-81.
 45677185058582,66.99843597412132],[-81.98958587646479,66.93958282470714],[-82.16822814941406,66.75260162353521],[-82.36042022705078,66.71041870117188],[-82.57707977294922,66.56458282470714],[-83.47968292236322,66.34739685058611],[-83.65000152587885,66.52083587646507],[-83.95781707763672,66.59010314941412],[-84.52500152587885,66.96458435058605],[-85.03898620605469,66.95252227783209],[-85.0400390625,66.95254516601574],[-85.03653717041016,66.95789337158214],[-85.00237274169922,66.96592712402355],[-85.0571823120116,67.00000000000006],[-87.66250610351557,67.00000000000006],[-88.98509216308594,67.00000000000006],[-89.01644897460932,68.25813293457043],[-89.01324462890625,69.1830825805664],[-88.07343292236322,68.8453140258789],[-88.02448272705078,68.64531707763683],[-87.81249999999994,68.43333435058616],[-87.8687515258789,68.2354202270509],[-88.38333129882812,68.26041412353527],[-88.26301574707026,68.11198425292974],[-88.39115142822266,67.98593902587902],[-88.11093902587879,67.6744842529298
 ],[-87.92292022705078,67.61458587646496],[-87.42708587646484,67.30000305175787],[-86.52864837646484,67.42968750000023],[-86.511978149414,67.67760467529297],[-86.293228149414,67.85781097412104],[-85.86302185058588,68.05677032470703],[-85.62968444824219,68.72551727294922],[-85.09791564941406,68.74583435058605],[-84.89375305175781,68.81666564941406],[-85.07083129882812,68.96041870117199],[-84.73750305175776,69.07917022705084],[-85.31406402587885,69.15885162353516],[-85.51823425292969,69.48490142822271],[-85.45573425292969,69.68698120117188],[-84.98124694824213,69.78958129882807],[-84.3125,69.85208129882841],[-83.61250305175781,69.69166564941412],[-82.62083435058594,69.70207977294922],[-82.57291412353516,69.57083129882812],[-82.02656555175776,69.26197814941418],[-81.65208435058582,69.26249694824224],[-81.30416870117182,69.10624694824241],[-81.8187484741211,68.89791870117188]]],[[[-71.86198425292969,71.06301879882818],[-71.58125305175776,70.9124984741211],[-72.13333129882812,70.816665649
 41418],[-71.86198425292969,71.06301879882818]]],[[[-97.05259704589844,72.77308654785156],[-98.28870391845703,72.9492645263673],[-98.3828125,72.9068298339846],[-97.93281555175776,73.04114532470709],[-97.28958129882801,72.97291564941418],[-97.05259704589844,72.77308654785156]]],[[[-96.82447814941406,73.18801879882818],[-96.54634857177729,73.02656555175781],[-96.93125152587885,72.92500305175787],[-97.11458587646484,73.09375000000023],[-96.82447814941406,73.18801879882818]]],[[[-81.9598999023437,73.73384857177734],[-81.55833435058588,73.722915649414],[-81.2942657470702,73.59947967529308],[-81.16822814941406,73.25468444824219],[-80.5713500976562,73.1484375],[-80.65208435058594,73.00000000000011],[-80.22760009765625,72.73176574707037],[-80.53697967529297,72.63072967529308],[-80.46093749999994,72.45781707763672],[-80.92916870117182,72.19166564941418],[-80.74948120117188,71.98176574707054],[-80.3151016235351,72.07865142822266],[-80.17656707763672,72.33281707763683],[-79.75208282470692,72.49
 791717529303],[-79.29374694824207,72.4000015258789],[-78.51875305175781,72.35416412353527],[-78.4203109741211,72.58698272705084],[-77.36875152587885,72.77291870117188],[-76.72708129882812,72.71875],[-76.47708129882812,72.61250305175781],[-75.8229141235351,72.5875015258789],[-75.25208282470703,72.5104141235351],[-74.96875,72.27708435058622],[-75.21093749999994,72.11927032470703],[-74.21926879882812,72.06406402587902],[-74.21666717529291,71.84375000000011],[-74.886978149414,71.7015609741211],[-74.61302185058594,71.63593292236328],[-74.2015609741211,71.73698425292963],[-73.6312484741211,71.7708358764649],[-73.86250305175781,71.5166702270509],[-72.99531555175781,71.40260314941418],[-72.60624694824219,71.58125305175787],[-71.92916870117182,71.57083129882824],[-71.54166412353516,71.48958587646496],[-71.152603149414,71.24635314941435],[-71.465103149414,71.07551574707026],[-72.06458282470697,71.08125305175781],[-72.19583129882807,70.84166717529291],[-71.88333129882812,70.78541564941423],[-7
 1.31458282470703,70.88124847412115],[-71.18281555175776,71.02031707763678],[-70.8229141235351,71.10624694824219],[-70.25208282470703,70.78333282470703],[-69.72291564941406,70.69583129882835],[-69.24583435058582,70.77291870117193],[-68.43958282470697,70.60208129882824],[-68.44010162353516,70.4078140258789],[-69.23124694824207,70.21041870117193],[-68.6421890258789,70.1713485717774],[-68.07499694824213,70.32083129882812],[-67.40833282470703,70.10832977294922],[-67.13906097412104,69.7484359741211],[-67.40625,69.71875000000006],[-68.05781555175776,69.7744827270509],[-68.5250015258789,69.57291412353533],[-67.94374847412104,69.4625015258789],[-67.21666717529291,69.46666717529291],[-66.68801879882812,69.2828140258789],[-67.00364685058588,69.18801879882812],[-68.20207977294922,69.15000152587902],[-67.72916412353516,69.02708435058594],[-68.17916870117188,68.8333358764649],[-68.21458435058594,68.58750152587896],[-67.86250305175776,68.52708435058605],[-66.85364532470703,68.46406555175787],[-67.
 09791564941406,68.33125305175781],[-66.40573120117188,68.05260467529297],[-65.98542022705078,67.93958282470732],[-65.65208435058588,67.99791717529303],[-65.1312484741211,67.8229141235351],[-64.2916641235351,67.72499847412115],[-63.94635391235346,67.34010314941435],[-63.97916793823231,67.17292022705078],[-63.26823043823242,67.30781555175787],[-62.97552108764637,67.27656555175787],[-62.97708511352539,67.06041717529297],[-62.8536491394043,66.94739532470714],[-62.422916412353516,66.92708587646484],[-62.049480438232365,67.0088500976562],[-61.61302185058594,66.84010314941406],[-61.2869758605957,66.60781097412132],[-61.88541793823242,66.277084350586],[-62.19791793823242,66.40416717529325],[-62.34791564941406,66.17708587646484],[-61.9630241394043,66.03176879882812],[-62.41666793823231,65.9625015258789],[-62.29791641235346,65.79374694824219],[-62.79322814941406,65.7109375],[-62.88906478881836,65.56093597412121],[-63.380725860595646,65.68177032470703],[-63.51874923706055,65.37083435058588],[-
 63.33124923706055,65.22083282470709],[-63.53489303588867,64.95677185058594],[-63.843749999999886,64.98124694824224],[-64.3661499023437,65.17552185058588],[-64.8984375,65.2744827270509],[-64.79374694824219,65.38333129882818],[-65.15989685058588,65.43177032470709],[-65.20207977294922,65.59583282470732],[-65.47864532470703,65.77864837646484],[-65.34583282470703,65.98332977294922],[-65.86666870117182,65.94166564941418],[-66.18593597412104,66.18698120117182],[-66.5390625,66.24218750000006],[-66.88541412353516,66.55625152587908],[-67.1515655517577,66.48593902587896],[-67.15625,66.27291870117193],[-67.754165649414,66.25208282470703],[-67.15416717529297,66.0374984741211],[-67.17500305175776,65.910415649414],[-67.80208587646484,65.87708282470703],[-68.08698272705078,66.08802032470703],[-68.31198120117182,66.00676727294922],[-67.847915649414,65.63749694824219],[-67.3151016235351,65.66614532470703],[-67.40416717529291,65.49791717529297],[-67.04843902587885,65.41718292236322],[-67.1598968505859
 4,65.2744827270509],[-66.45207977294922,64.92916870117193],[-66.05156707763666,64.83073425292969],[-65.66926574707026,64.83281707763672],[-65.31614685058594,64.70573425292963],[-65.09583282470703,64.50208282470703],[-65.17552185058588,64.300521850586],[-65.01875305175776,63.99791717529291],[-64.69999694824219,64.01875305175781],[-64.53489685058594,63.820312500000114],[-64.21041870117182,63.58333206176769],[-64.10364532470703,63.333854675293026],[-64.57499694824213,63.258335113525334],[-64.93749999999994,63.368751525878906],[-64.7515640258789,62.95885467529297],[-65.13281249999994,62.84426879882818],[-64.94739532470703,62.608856201171875],[-64.30989837646479,62.460937500000114],[-64.6390609741211,62.34531021118164],[-64.918228149414,62.42760086059576],[-65.88593292236322,63.00677108764643],[-66.34791564941406,62.99791717529297],[-67.28073120117188,63.36093902587896],[-67.65989685058594,63.64114379882818],[-67.91926574707026,63.52760696411144],[-68.62343597412104,63.7578125],[-68.8723
 9837646484,63.669269561767635],[-68.09426879882807,63.17656326293945],[-67.61875152587885,63.09375000000006],[-66.94999694824219,62.714584350585994],[-66.5625,62.55416488647461],[-66.36250305175781,62.37291717529297],[-66.04582977294922,62.220832824706974],[-66.08177185058594,62.059898376464844],[-65.95207977294922,61.875000000000114],[-66.27916717529297,61.864582061767635],[-66.82707977294922,62.02708435058594],[-67.35364532470697,62.13385391235357],[-68.58958435058588,62.25624847412115],[-69.13541412353516,62.41666793823242],[-69.58698272705078,62.65676879882818],[-69.71666717529286,62.78958511352539],[-70.16041564941406,62.74375152587896],[-71.14375305175781,63.06041717529308],[-71.40364837646484,63.044269561767635],[-71.74739837646479,63.223438262939396],[-71.77291870117188,63.36458206176752],[-71.55781555175776,63.576564788818416],[-71.660415649414,63.724998474121094],[-72.18541717529291,63.666667938232536],[-72.39531707763666,63.811981201171875],[-72.86458587646484,64.01457977
 294922],[-72.93333435058594,64.16249847412121],[-73.34374999999994,64.25833129882812],[-73.66510009765625,64.44843292236322],[-74.45207977294922,64.56666564941418],[-74.49323272705072,64.39323425292974],[-74.86666870117182,64.39375305175781],[-75.80156707763666,64.60051727294922],[-75.87031555175776,64.37968444824224],[-76.28333282470703,64.27916717529303],[-76.82291412353516,64.23542022705078],[-77.35832977294916,64.23750305175781],[-78,64.42082977294922],[-78.17708587646479,64.57083129882824],[-78.1473999023437,64.94947814941418],[-77.96875,65.04582977294922],[-77.3125,65.20207977294922],[-77.51457977294922,65.32083129882824],[-77.41458129882812,65.46041870117199],[-76.5562515258789,65.38124847412115],[-76.02239990234375,65.26718902587896],[-75.88333129882812,65.3333358764649],[-75.19218444824207,65.25676727294916],[-75.00208282470697,65.3687515258789],[-74.3671875,65.40052032470709],[-74.14167022705078,65.54582977294928],[-73.55416870117188,65.47708129882812],[-73.70259857177734,
 65.74531555175787],[-73.98281097412104,65.82135009765642],[-74.45156097412098,66.1109390258789],[-74.42240142822266,66.20365142822271],[-73.95989990234375,66.35781097412115],[-73.04166412353516,66.72291564941418],[-72.22499847412104,66.67916870117193],[-71.39791870117188,66.55625152587908],[-71.11302185058588,66.22031402587902],[-71.29114532470697,66.08802032470703],[-71.17864990234364,65.94010162353521],[-70.74166870117182,66.14375305175804],[-70.33698272705078,66.16301727294945],[-70.09635162353516,66.25260162353533],[-69.75208282470703,66.19999694824219],[-69.34166717529291,66.3125],[-69.35260009765625,66.39739990234375],[-69.96406555175781,66.70156097412121],[-70.61198425292969,66.65260314941406],[-70.60832977294916,66.8520812988283],[-70.9937515258789,67.01875305175793],[-71.40416717529291,66.62500000000006],[-71.73332977294922,66.68958282470703],[-72.58541870117188,66.6875],[-73.02916717529297,66.80416870117199],[-72.82499694824219,67.03541564941406],[-72.41249847412104,67.087
 5015258789],[-72.2437515258789,67.27500152587913],[-72.56510162353504,67.74010467529308],[-72.84374999999994,67.84583282470703],[-73.07759857177729,68.2234344482423],[-73.86823272705078,68.34947967529308],[-73.88906097412104,68.55573272705078],[-74.3062515258789,68.53749847412115],[-74.81463623046875,68.78126525878912],[-74.7984390258789,69.08593750000011],[-75.62708282470703,68.92916870117182],[-75.51509857177723,69.12031555175781],[-75.75260162353516,69.31198120117182],[-76.65364837646484,69.55677032470709],[-77.14531707763672,69.62551879882824],[-76.81406402587885,69.73384857177746],[-77.2890625,69.86823272705101],[-77.67708587646484,69.82499694824247],[-77.63801574707031,70.1671829223634],[-78.1640625,70.2057342529298],[-79.05833435058594,70.47291564941412],[-79.58281707763672,70.43281555175787],[-78.75416564941406,70.19374847412104],[-78.65676879882807,69.9734344482423],[-78.83177185058588,69.89531707763695],[-79.75572967529297,69.87760162353521],[-79.93541717529297,70.02291870
 11721],[-81.29792022705078,70.03749847412121],[-80.75051879882812,69.76301574707043],[-80.89375305175781,69.72708129882812],[-81.58750152587885,69.9770812988283],[-82.15625,69.79582977294933],[-82.61927032470697,69.8348999023438],[-83.074478149414,70.01093292236334],[-83.63749694824219,69.95833587646496],[-84.64167022705078,70.00624847412104],[-85.31041717529297,70.10832977294922],[-85.7437515258789,70],[-86.45417022705078,70.19791412353527],[-86.66249847412098,70.32707977294939],[-87.2526016235351,70.37448120117193],[-87.74166870117182,70.33333587646496],[-88.62916564941395,70.46041870117188],[-88.92292022705078,70.57083129882807],[-89.418228149414,70.91301727294939],[-89.16874694824213,71.02916717529291],[-88.5104141235351,71.03541564941418],[-88.24583435058594,70.933334350586],[-87.2734375,70.99114990234403],[-86.50833129882812,70.97916412353527],[-85.78125,71.1416702270509],[-84.84635162353516,71.16926574707037],[-84.76197814941406,71.41406249999994],[-84.5484390258789,71.551567
 07763683],[-85.31822967529297,71.68593597412132],[-85.54634857177734,71.89739990234392],[-85.375,72.25208282470709],[-84.94999694824219,72.24791717529308],[-84.86458587646484,72.40208435058611],[-85.50416564941395,72.45625305175798],[-85.6953125,72.64427185058605],[-85.64009857177734,72.9213485717774],[-85.41249847412104,73.13957977294928],[-84.98750305175781,73.35208129882824],[-84.26041412353516,73.45417022705072],[-82.72083282470697,73.72499847412121],[-81.9598999023437,73.73384857177734]]],[[[-104.79650115966791,73.64791870117199],[-106.0026016235351,73.73186492919933],[-105.08333587646484,73.74791717529297],[-104.79650115966791,73.64791870117199]]],[[[-80.7036514282226,73.77552032470714],[-79.59166717529291,73.65416717529303],[-78.12499999999994,73.66874694824213],[-77.21041870117182,73.51041412353527],[-77.01457977294922,73.3375015258789],[-76.73490142822266,73.3078155517581],[-76.0713500976562,72.93281555175787],[-76.41249847412104,72.81458282470714],[-77.60832977294922,72.90
 000152587896],[-78.24583435058588,72.89583587646496],[-79.26041412353516,72.74375152587913],[-79.98332977294916,72.86458587646496],[-80.17240142822266,73.04843902587902],[-80.10468292236328,73.17968750000011],[-80.81666564941395,73.2874984741211],[-80.89531707763666,73.61198425292974],[-80.7036514282226,73.77552032470714]]],[[[-86.15573120117188,73.86093902587896],[-84.98542022705078,73.79166412353521],[-85.05989837646484,73.64115142822266],[-85.86458587646484,73.39375305175781],[-86.43541717529291,72.97291564941418],[-86.6828155517577,72.85781097412132],[-86.71198272705072,72.66093444824219],[-86.26093292236328,72.44947814941412],[-86.45573425292963,72.20781707763678],[-86.15676879882801,71.83073425292974],[-85.37291717529291,71.48750305175776],[-85.03958129882812,71.44583129882818],[-85.27083587646484,71.24791717529308],[-85.70833587646479,71.21041870117188],[-86.33333587646484,71.04582977294945],[-86.97916412353516,71.00416564941418],[-87.81666564941406,71.18125152587913],[-89.85
 416412353504,71.34583282470703],[-90.0078125,71.59843444824224],[-89.72551727294922,71.75260162353527],[-90.01301574707026,71.90364837646496],[-89.76667022705078,72.1312484741211],[-90.01457977294922,72.33541870117193],[-89.31926727294922,72.87760162353516],[-89.222915649414,73.12916564941423],[-88.97083282470697,73.2916641235351],[-88.21250152587885,73.59583282470714],[-87.22864532470703,73.79114532470714],[-86.15573120117188,73.86093902587896]]],[[[-98.42839813232422,72.96900939941429],[-100.43671417236328,73.2562484741211],[-100.74510192871088,73.27316284179682],[-100.7515640258789,73.2739486694336],[-100.76041412353516,73.27502441406261],[-100.76382446289062,73.27544403076166],[-100.77729797363281,73.277084350586],[-101.00970458984375,73.30000305175793],[-101.5328140258789,73.4671859741211],[-101.02448272705078,73.79426574707031],[-99.89791870117188,73.94999694824224],[-99.19583129882812,73.72916412353527],[-98.15208435058594,73.81250000000028],[-97.88333129882807,73.89791870117
 193],[-97.19583129882801,73.85832977294916],[-96.95259857177734,73.63593292236322],[-97.52708435058594,73.4854202270509],[-97.13333129882807,73.39791870117188],[-97.84114837646479,73.28073120117216],[-98.42839813232422,72.96900939941429]]],[[[-97.70989990234375,74.12343597412121],[-97.64167022705072,74.04374694824219],[-98.09166717529297,73.8937530517581],[-99.09999847412104,73.81458282470709],[-99.38906097412104,73.87551879882812],[-98.77031707763666,74.03697967529303],[-97.70989990234375,74.12343597412121]]],[[[-93.87079620361328,72.25733184814453],[-95.11718749999994,72.4651565551759],[-95.66874694824219,72.80208587646484],[-95.55052185058588,73.29322814941406],[-95.69531249999994,73.65676879882812],[-95.29114532470697,73.88176727294933],[-95.2953109741211,73.98906707763678],[-94.68541717529297,74.09166717529297],[-93.57499694824213,74.17708587646484],[-92.5875015258789,74.11042022705084],[-92.30416870117188,74.0374984741211],[-91.20417022705072,74.01875305175798],[-90.3833312988
 2807,73.91458129882824],[-90.34635162353504,73.79218292236328],[-91.19531249999989,73.32656097412104],[-91.78958129882812,72.87708282470709],[-92.34375,72.70833587646513],[-93.27916717529291,72.82083129882818],[-93.93541717529297,72.77916717529314],[-93.4463500976562,72.44426727294922],[-93.87079620361328,72.25733184814453]]],[[[-104.1161499023437,75.456771850586],[-103.57707977294922,75.16249847412115],[-103.85208129882807,75.0604171752932],[-104.6812515258789,75.06874847412126],[-104.68541717529286,75.34166717529308],[-104.1161499023437,75.456771850586]]],[[[-94.89948272705067,75.6400985717774],[-94.29426574707026,75.58489990234375],[-93.47551727294916,75.253646850586],[-93.3854141235351,74.87916564941406],[-93.48332977294922,74.6729202270509],[-94.50833129882812,74.62708282470709],[-95.08958435058594,74.6875],[-95.33750152587879,74.80833435058605],[-95.79792022705072,74.82291412353516],[-96.59739685058588,75.06926727294933],[-96.01457977294916,75.33333587646484],[-95.779167175292
 97,75.51667022705084],[-94.89948272705067,75.6400985717774]]],[[[-94.49114990234375,75.98593902587902],[-94.28749847412104,75.75833129882818],[-94.816665649414,75.79582977294939],[-94.49114990234375,75.98593902587902]]],[[[-102.14115142822266,75.99218750000006],[-102.61042022705078,75.76875305175781],[-103.06198120117188,75.90364837646484],[-102.14115142822266,75.99218750000006]]],[[[-102.86823272705078,76.32135009765625],[-102.65416717529291,76.11666870117188],[-103.19583129882812,76.0520858764649],[-104.23750305175781,76.0833358764649],[-104.480728149414,76.15676879882818],[-102.86823272705078,76.32135009765625]]],[[[-104.12031555175781,76.67760467529297],[-103.5223999023437,76.51509857177734],[-102.99791717529297,76.4499969482423],[-103.50051879882812,76.31510162353521],[-104.28958129882812,76.36042022705078],[-104.67292022705067,76.56250000000006],[-104.12031555175781,76.67760467529297]]],[[[-98.68073272705078,76.68801879882841],[-97.68333435058588,76.49166870117188],[-97.775001
 5258789,76.31250000000011],[-97.49635314941406,76.20051574707043],[-97.73542022705067,75.72916412353521],[-97.35884857177734,75.67864990234403],[-97.48124694824213,75.50000000000017],[-98.0687484741211,75.33125305175781],[-97.57707977294916,75.17082977294922],[-97.95833587646484,75.027084350586],[-99.55416870117182,74.97499847412115],[-100.37239837646479,75.0296859741211],[-100.5625,75.42708587646496],[-100.06458282470703,75.47499847412104],[-99.76875305175781,75.68333435058594],[-101.11250305175781,75.59583282470709],[-102.6624984741211,75.53958129882818],[-102.28541564941406,75.86250305175787],[-101.60781097412104,75.92552185058588],[-101.76823425292969,76.14739990234375],[-102.10572814941395,76.30260467529291],[-101.90208435058588,76.4499969482423],[-101.48542022705078,76.44374847412104],[-100.9625015258789,76.2395858764649],[-100.7265625,76.55052185058605],[-100.19166564941406,76.64375305175787],[-99.26457977294922,76.4937515258789],[-98.68073272705078,76.68801879882841]]],[[[-8
 9.99948120117182,76.84010314941423],[-89.68801879882807,76.69635009765648],[-90.06666564941406,76.47916412353544],[-90.59947967529297,76.72968292236328],[-89.99948120117182,76.84010314941423]]],[[[-109.83056640624994,74.87870025634771],[-109.855728149414,75.53246307373047],[-108.86666870117182,75.4937515258789],[-108.86458587646479,75.68541717529297],[-109.83241271972656,75.86666870117193],[-109.83290100097656,75.92723083496088],[-109.2588500976562,76.10468292236328],[-109.83451080322266,76.24791717529297],[-109.83528900146484,76.48958587646484],[-109.83529663085938,76.4925842285158],[-109.848403930664,76.5005569458009],[-109.160415649414,76.8187484741211],[-108.61927032470703,76.8203125],[-108.57917022705067,76.4229202270509],[-108.14583587646484,76.34999847412115],[-108.43177032470703,76.09843444824224],[-107.7984390258789,76.06198120117193],[-107.15625,75.91249847412121],[-106.58750152587885,76.07083129882824],[-105.85832977294916,76.00416564941406],[-105.42134857177729,75.857810
 97412104],[-105.35468292236322,75.6848983764649],[-105.71614837646473,75.48906707763683],[-105.99635314941406,75.07551574707037],[-107.2604141235351,74.91666412353544],[-107.96614837646473,75.02239990234392],[-108.10208129882812,74.93333435058594],[-108.965103149414,75.00051879882812],[-109.83056640624994,74.87870025634771]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":8,"NAME_1":"Nunavut","ID_2":117,"NAME_2":"Baffin","TYPE_2":"Region","ENGTYPE_2":"Region","NL_NAME_2":"","VARNAME_2":"Qikiqtaaluk"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-95.7015609741211,77.06926727294928],[-93.61458587646479,76.90416717529308],[-93.09583282470703,76.620834350586],[-92.63124847412104,76.59375000000006],[-91.46458435058594,76.69166564941418],[-90.59583282470692,76.56666564941412],[-90.56041717529291,76.45417022705084],[-89.90833282470692,76.33750152587885],[-89.2874984741211,76.30000305175804],[-89.30833435058594,76.1937484741211],[-90.62916564941406,76.18750000000006],[-90.62083435058594,76.03125],[-89.87916564941406,75.96250152587902],[-89.79374694824219,75.79374694824219],[-89.30625152587885,75.80416870117199],[-89.1703109741211,75.49635314941418],[-88.72031402587885,75.48384857177757],[-87.3895797729491,75.61250305175793],[-86.43698120117188,75.42134857177763],[-85.83281707763672,75.42240142822266],[-85.58281707763666,75.58073425292969],[-84.31822967529297,75.71510314941418],[-83.95259857177729,75.80260467529303],[-82.75885009765625,75.77343750000006],[-82.487
 5030517577,75.82499694824213],[-81.11666870117182,75.76457977294922],[-81.31041717529297,75.63957977294933],[-80.2437515258789,75.62500000000006],[-79.652603149414,75.45989990234386],[-79.48124694824219,75.23958587646496],[-80.23332977294922,74.99166870117199],[-79.55000305175781,75.01875305175793],[-79.35624694824219,74.88124847412104],[-80.17448425292969,74.81510162353516],[-80.27708435058594,74.58125305175781],[-81.3499984741211,74.56874847412115],[-81.7484359741211,74.4692687988283],[-82.37708282470703,74.5562515258789],[-82.79166412353516,74.52916717529297],[-83.31926727294916,74.75468444824224],[-83.56458282470692,74.55833435058588],[-84.25,74.50624847412121],[-86.61250305175776,74.46666717529303],[-87.73750305175781,74.45625305175793],[-88.53749847412104,74.49583435058594],[-88.4192657470702,74.74010467529291],[-89.08541870117188,74.71458435058594],[-89.17916870117188,74.58958435058605],[-89.816665649414,74.52708435058594],[-90.62916564941406,74.61875152587902],[-91.289581298
 82812,74.62708282470709],[-92.08281707763672,74.79634857177746],[-92.03801727294922,74.95677185058588],[-92.50364685058588,75.21823120117199],[-92.4453125,75.41822814941406],[-92.01667022705078,75.58958435058605],[-92.14323425292963,75.88176727294928],[-92.62551879882807,76.0338516235351],[-93.10208129882807,76.36666870117199],[-93.6500015258789,76.26041412353527],[-94.72708129882812,76.29582977294928],[-95.83281707763666,76.39635467529303],[-96.87291717529286,76.92292022705078],[-95.7015609741211,77.06926727294928]]],[[[-90.84531402587879,77.66093444824224],[-89.90000152587885,77.52916717529308],[-89.63801574707031,77.33385467529308],[-90.26875305175781,77.1999969482423],[-91.20573425292969,77.39115142822266],[-91.24948120117176,77.566146850586],[-90.84531402587879,77.66093444824224]]],[[[-105.87031555175781,77.76718902587896],[-105.36406707763672,77.68073272705101],[-104.37551879882812,77.27031707763678],[-104.44583129882807,77.12708282470709],[-105.26301574707031,77.2088546752932
 ],[-106.10624694824219,77.72291564941412],[-105.87031555175781,77.76718902587896]]],[[[-95.46614837646479,77.80677032470703],[-93.66666412353504,77.78333282470703],[-93.23332977294922,77.73542022705078],[-93.73698425292969,77.45051574707054],[-94.44791412353504,77.48958587646484],[-95.89583587646484,77.47083282470714],[-96.23332977294922,77.69791412353521],[-95.46614837646479,77.80677032470703]]],[[[-101.74948120117188,77.90885162353538],[-100.96406555175776,77.73698425292969],[-102.08125305175781,77.68750000000011],[-102.44999694824213,77.88124847412115],[-101.74948120117188,77.90885162353538]]],[[[-109.8312149047851,78.30416870117182],[-109.8312149047851,78.3138046264649],[-109.81652069091797,78.6349792480471],[-109.27708435058594,78.48958587646484],[-109.3359375,78.33802032470709],[-109.8312149047851,78.30416870117182]]],[[[-97.78697967529291,78.82551574707031],[-96.52083587646484,78.68333435058605],[-96.29374694824213,78.52708435058622],[-95.51875305175781,78.51457977294922],[-9
 4.82291412353516,78.36875152587896],[-95.22083282470697,78.21458435058594],[-94.88593292236322,78.10676574707026],[-95.11042022705072,77.94583129882812],[-95.93333435058588,77.88541412353521],[-97.13176727294922,77.91822814941412],[-97.941665649414,78.24583435058594],[-98.05416870117188,78.53541564941429],[-98.402603149414,78.77239990234386],[-97.78697967529291,78.82551574707031]]],[[[-103.95156097412098,79.37343597412104],[-103.09375,79.28749847412115],[-102.41197967529297,79.00051879882824],[-101.6041641235351,79.07707977294922],[-100.34010314941406,78.83073425292997],[-99.50833129882812,78.59583282470703],[-99.785415649414,78.29792022705078],[-99.00989532470697,78.07343292236328],[-99.18125152587885,77.84375000000017],[-100.2578125,77.81614685058594],[-100.57239532470697,77.88176727294945],[-100.9859390258789,78.18906402587896],[-102.1666641235351,78.29374694824219],[-102.61458587646479,78.2437515258789],[-103.12916564941406,78.375],[-104.34583282470703,78.26041412353521],[-104.8
 2447814941406,78.36614990234386],[-104.79792022705072,78.5812530517581],[-103.46250152587885,78.51041412353516],[-103.39583587646479,78.7708358764649],[-103.87031555175781,78.91197967529303],[-104.7249984741211,79.03749847412121],[-105.51457977294922,79.01875305175787],[-105.65989685058594,79.1619796752932],[-105.19999694824213,79.29582977294922],[-103.95156097412098,79.37343597412104]]],[[[-99.5786514282226,80.15052032470703],[-98.8109359741211,80.07551574707043],[-98.6234359741211,79.79218292236334],[-99.30208587646479,79.75],[-99.54792022705078,79.89167022705095],[-100.16249847412104,79.89791870117199],[-100.09426879882812,80.06718444824219],[-99.5786514282226,80.15052032470703]]],[[[-93.49739837646484,81.37760162353521],[-92.06458282470697,81.22916412353521],[-90.74375152587879,80.56458282470703],[-89.22083282470703,80.527084350586],[-87.60208129882812,80.40833282470714],[-87.71875,80.08333587646496],[-87.2687530517577,80.08125305175776],[-86.9375,79.88541412353516],[-87.1359329
 2236328,79.64427185058588],[-86.30208587646479,79.64583587646484],[-85.37291717529291,79.44999694824224],[-84.88333129882812,79.26249694824241],[-86.49583435058594,79.06041717529308],[-87.33125305175781,78.7958297729495],[-88.03125,78.47708129882818],[-88.53176879882807,78.41718292236334],[-88.80625152587885,78.152084350586],[-90.3578109741211,78.23072814941418],[-91.02708435058582,78.14167022705072],[-92.1411514282226,78.21823120117193],[-92.99531555175781,78.46718597412115],[-94.32239532470697,78.9849014282226],[-92.56249999999989,79.24166870117188],[-93.08541870117188,79.35832977294933],[-95.1312484741211,79.27500152587902],[-95.75989532470703,79.41614532470714],[-95.61458587646484,79.55416870117193],[-96.26093292236322,79.80573272705084],[-96.75,80.08750152587902],[-94.8541641235351,80.05208587646484],[-96.40208435058588,80.27500152587902],[-95.86458587646479,80.45833587646479],[-95.97083282470697,80.5833358764649],[-94.53801727294916,80.6026000976563],[-94.65833282470703,80.722
 91564941406],[-95.49166870117188,80.80833435058588],[-95.24531555175781,81.0015640258789],[-94.11302185058594,81.09426879882812],[-93.3375015258789,81.07499694824219],[-93.49739837646484,81.37760162353521]]],[[[-69.8925170898437,83.10861206054688],[-69.71666717529286,83.0374984741211],[-66.39167022705072,82.91666412353527],[-64.8062515258789,82.90625],[-63.452606201171875,82.79426574707026],[-62.95000076293945,82.57917022705078],[-61.527084350585824,82.4749984741211],[-61.21718978881836,82.21302032470709],[-62.164585113525334,82.02916717529308],[-64.44999694824207,81.7083358764649],[-64.8499984741211,81.75],[-68.16041564941406,81.277084350586],[-65.08958435058594,81.52916717529297],[-64.68541717529297,81.37083435058594],[-66.15208435058588,81.19166564941418],[-66.51927185058588,81.06093597412115],[-67.81874847412104,80.84166717529308],[-69.20677185058594,80.503646850586],[-70.45833587646473,80.09166717529303],[-71.0921859741211,79.78385162353527],[-72.20417022705078,79.6604156494141
 2],[-73.38124847412104,79.7354202270509],[-73.09999847412104,79.5416641235351],[-74.93541717529297,79.37291717529297],[-76.86042022705072,79.34791564941406],[-75.99166870117188,79.23332977294928],[-74.566665649414,79.23124694824224],[-74.55625152587885,79.01249694824224],[-75.83750152587885,79.09999847412115],[-76.0875015258789,79.19999694824247],[-77.28333282470703,79.06041717529308],[-75.99166870117188,78.99583435058594],[-75.89791870117188,78.92292022705072],[-74.78333282470697,78.82707977294928],[-74.69322967529297,78.59218597412104],[-75.68958282470703,78.50208282470709],[-75.10832977294916,78.36875152587896],[-75.8578109741211,77.972396850586],[-76.2562484741211,78.0208358764649],[-76.85832977294916,77.86042022705084],[-76.83125305175776,77.69583129882818],[-77.74166870117188,77.63541412353527],[-78.28801727294922,77.3859329223634],[-79.67292022705072,77.24166870117193],[-79.090103149414,77.15364837646496],[-79.40416717529291,76.93125152587902],[-77.99843597412104,76.990104675
 29303],[-77.82917022705072,76.63124847412126],[-78.52291870117188,76.4520797729495],[-78.99166870117188,76.4166641235351],[-80.07291412353516,76.2270812988283],[-80.9312515258789,76.14583587646484],[-80.79582977294922,76.4270858764649],[-82.09999847412104,76.51667022705078],[-82.24166870117188,76.39791870117199],[-82.8062515258789,76.38333129882812],[-84.20207977294916,76.4520797729495],[-84.91666412353516,76.27916717529297],[-85.92448425292969,76.33385467529308],[-86.4390640258789,76.42656707763683],[-87.44583129882807,76.41458129882812],[-87.71198272705072,76.35051727294922],[-88.90833282470703,76.40625000000006],[-89.65624999999994,76.56666564941412],[-89.40260314941406,76.67760467529297],[-89.51406097412104,76.83177185058616],[-88.4375,77.06250000000017],[-87.45207977294922,77.12500000000011],[-87.18073272705078,77.2276000976563],[-87.72083282470703,77.36042022705072],[-87.67552185058594,77.52135467529308],[-88.19166564941406,77.63124847412121],[-88.160415649414,77.7979202270509
 ],[-87.26041412353516,77.89791870117205],[-86.19791412353516,77.79582977294933],[-85.80156707763672,77.51093292236328],[-85.41666412353516,77.38749694824213],[-84.75208282470697,77.31874847412115],[-83.40624999999994,77.50624847412115],[-84.7750015258789,77.52291870117182],[-85.22916412353516,77.65208435058594],[-85.69166564941406,77.92916870117199],[-85.12864685058594,78.05052185058594],[-86.20833587646479,78.16458129882812],[-87.52656555175781,78.13176727294922],[-87.48906707763672,78.44114685058594],[-86.81041717529286,78.65625000000011],[-86.65000152587885,78.78958129882824],[-85.24427032470697,78.91301727294922],[-84.59166717529291,78.85208129882818],[-83.21041870117188,78.8020858764649],[-82.9937515258789,78.93958282470726],[-84.30000305175781,78.96875],[-84.7828140258789,79.07135009765625],[-84.31301879882807,79.23176574707031],[-84.5104141235351,79.42082977294928],[-85.05000305175776,79.62291717529291],[-86.39167022705078,79.76041412353527],[-86.63489532470703,80.11302185058
 6],[-86.47916412353516,80.308334350586],[-84.0875015258789,80.27291870117199],[-81.51041412353516,79.71666717529303],[-81.42500305175776,79.92708587646496],[-82.30416870117188,80.04792022705078],[-83.20417022705072,80.3291702270509],[-80.36042022705072,80.46458435058605],[-79.05625152587885,80.61458587646484],[-78.94166564941406,80.84999847412115],[-81.54582977294916,80.59999847412121],[-82.81041717529286,80.5374984741211],[-83.64009857177729,80.62551879882818],[-84.33333587646479,80.51041412353516],[-86.07083129882807,80.527084350586],[-88.29582977294916,80.6937484741211],[-89.26457977294916,80.84583282470709],[-90.29531097412104,81.1640625],[-89.86458587646484,81.30000305175793],[-91.88072967529297,81.61198425292974],[-90.58958435058594,81.87708282470703],[-89.37083435058588,81.92082977294933],[-87.9124984741211,82.10208129882807],[-86.8541641235351,82.05000305175793],[-86.79582977294922,82.22083282470709],[-85.33958435058594,82.22708129882812],[-84.62448120117182,82.3442687988282
 4],[-83.65416717529297,82.34999847412121],[-83.02291870117188,82.22499847412115],[-82.35208129882801,82.50208282470703],[-81.58333587646484,82.48750305175793],[-79.79582977294916,82.73958587646484],[-79.20573425292969,82.92552185058594],[-77.86042022705078,82.92500305175787],[-76.08125305175781,83.05416870117193],[-74.49583435058594,83.03125000000006],[-73.58698272705078,82.94010162353521],[-72.32291412353516,83.09375],[-69.8925170898437,83.10861206054688]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":8,"NAME_1":"Nunavut","ID_2":117,"NAME_2":"Baffin","TYPE_2":"Region","ENGTYPE_2":"Region","NL_NAME_2":"","VARNAME_2":"Qikiqtaaluk"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-89.49583435058588,64.03125000000011],[-89.816665649414,63.94166564941406],[-90.02135467529297,63.8807258605957],[-90.2249984741211,63.62291717529308],[-91.31458282470697,63.5625],[-90.74166870117188,63.360416412353516],[-90.62551879882812,63.0723991394043],[-90.75051879882801,62.9453125],[-91.07291412353516,62.90833282470709],[-91.4046859741211,62.790103912353516],[-92.0625,62.852085113525334],[-92.26823425292969,62.68385696411127],[-92.03958129882807,62.65208435058588],[-92.58125305175776,62.479167938232536],[-92.57239532470697,62.28489303588867],[-92.95417022705072,62.299999237060604],[-93.16666412353516,62.21041488647472],[-93.13124847412104,62.08750152587902],[-93.31666564941395,61.95000076293951],[-93.63176727294922,61.864063262939396],[-93.55260467529286,61.65468978881836],[-94.05000305175781,61.39791488647455],[-94.1500015258789,61.39791488647455],[-94.05885314941406,61.280731201171875],[-94.23958587646484
 ,60.88124847412115],[-94.35468292236328,60.8359375],[-94.55260467529291,60.5296897888183],[-94.69739532470692,60.45051956176769],[-94.73750305175781,60.08958435058594],[-94.82127380371088,60.00001525878912],[-96.25,60.00000000000006],[-97.75000762939447,60.00000000000006],[-99.49999999999994,60.00000000000006],[-102,60.00000000000006],[-102.00000762939453,60.52166748046881],[-102,60.52500152587902],[-101.99999237060547,60.606903076171875],[-102,60.60707092285156],[-102,60.80625152587896],[-102,60.8125],[-102,61.18743515014654],[-102,61.18756866455084],[-102,61.97906875610363],[-101.99999237060547,61.98131179809576],[-102.00000762939453,62.056251525878906],[-102,62.05646514892578],[-102,62.06261825561518],[-102,62.06472015380865],[-102,62.1974716186524],[-102,62.19789505004883],[-102,62.86730575561535],[-102,62.868801116943416],[-102,62.87318420410156],[-102,62.873363494873104],[-101.99999237060547,62.993751525878906],[-102,63.00006103515625],[-102,63.70413208007824],[-102,63.7060699
 46289176],[-101.99999237060547,63.706253051757926],[-102,63.71255874633795],[-101.99999237060547,63.724998474121094],[-102,63.72708129882807],[-102,63.75745773315441],[-102,63.75771713256836],[-101.99999237060547,64.13124847412104],[-102,64.13135528564459],[-102.30739593505854,64.22164154052729],[-102.30763244628906,64.22166442871094],[-103.3224029541015,64.32412719726562],[-103.3287582397461,64.32474517822271],[-105.0177612304687,64.47739410400402],[-105.00167846679688,65.41905212402355],[-105.00099182128906,65.49609375000011],[-105.0013580322265,65.49629211425793],[-105.00057983398432,65.4976272583009],[-104.99706268310541,65.7448196411134],[-104.99633026123047,65.7958602905274],[-104.99576568603516,65.83441925048834],[-104.99572753906244,65.83734130859386],[-104.995132446289,65.86479949951183],[-104.9920425415039,66.00668334960949],[-104.9916152954101,66.06840515136719],[-104.99131774902338,66.1119232177735],[-104.99047851562494,66.2798843383789],[-104.99040222167957,66.292289733
 88672],[-104.98989105224604,66.42217254638672],[-104.98989105224604,66.4225845336914],[-104.98877716064442,66.79343414306646],[-104.98860931396484,66.85517120361328],[-104.99188232421875,67.00000000000006],[-103.63749694824213,67.00000000000006],[-101.74999999999994,67.00000000000006],[-100.26068115234375,67.00000000000006],[-98.5,67.00000000000006],[-96.38749694824207,67.00000000000006],[-96.35624694824219,67.00000000000006],[-96.34999847412104,67.00000000000006],[-95.7291641235351,66.90208435058594],[-95.29374694824219,66.89791870117193],[-95.20417022705072,67.00000000000006],[-92.51250457763666,67.00000000000006],[-90.24053192138672,67.00000000000006],[-88.98509216308594,67.00000000000006],[-87.66250610351557,67.00000000000006],[-85.0571823120116,67.00000000000006],[-85.00237274169922,66.96592712402355],[-85.03653717041016,66.95789337158214],[-85.0400390625,66.95254516601574],[-85.03898620605469,66.95252227783209],[-84.87832641601562,66.88916778564459],[-84.3270416259765,66.58504
 486083979],[-84.31319427490229,66.5772705078125],[-84.29592895507807,66.56757354736334],[-84.24327850341791,66.53793334960932],[-83.99999999999994,66.39985656738281],[-83.96334075927734,66.3788833618164],[-83.84843444824219,66.31100463867188],[-83.83419036865223,66.30458068847662],[-83.7218399047851,66.23958587646496],[-83.70205688476562,66.22809600830084],[-83.70072174072266,66.22732543945318],[-83.66048431396484,66.20395660400385],[-83.9375,66.19166564941412],[-84.20833587646484,66.31874847412121],[-84.67708587646484,66.19166564941412],[-85.23332977294922,66.2666702270509],[-85.44426727294916,66.58177185058605],[-85.74791717529291,66.51457977294928],[-86.26301574707031,66.52864837646484],[-86.72656249999994,66.48802185058594],[-86.6083297729491,66.3125],[-85.86093902587879,66.15989685058588],[-85.96250152587879,66.03125000000006],[-86.47708129882807,65.80000305175781],[-86.5250015258789,65.7083358764649],[-86.93958282470703,65.54166412353527],[-87.191665649414,65.34999847412121],[
 -88.00833129882812,65.34166717529297],[-88.23124694824219,65.42292022705078],[-88.42708587646473,65.54166412353527],[-88.98958587646484,65.69166564941406],[-89.61406707763672,65.9140625],[-89.68801879882807,65.7161483764649],[-89.03333282470692,65.32291412353527],[-88.06510162353516,65.2744827270509],[-87.55416870117182,65.2916641235351],[-87.0374984741211,65.23542022705078],[-86.96718597412104,65.04634857177746],[-87.18749999999989,64.91249847412104],[-87.57759857177734,64.5546875],[-87.8015670776366,64.5078125],[-87.8921890258789,64.33698272705084],[-88.21406555175781,64.15989685058594],[-88.5562515258789,64.05000305175781],[-88.754165649414,63.98333358764643],[-89.49583435058588,64.03125000000011]]],[[[-95.30729675292969,67.00000000000006],[-95.49583435058594,66.94374847412115],[-95.92813110351562,67.00000000000006],[-95.30729675292969,67.00000000000006]]],[[[-84.9791641235351,66.91874694824224],[-84.94010162353516,66.92708587646484],[-84.92170715332031,66.9155883789062],[-84.924
 2935180664,66.91561889648438],[-84.92999267578125,66.91569519042974],[-84.95455932617182,66.91367340087885],[-84.9791641235351,66.91874694824224]]],[[[-83.79322814941406,65.73906707763678],[-84.11875152587885,65.76875305175781],[-84.15468597412104,65.9703140258789],[-83.67968749999994,65.9348983764649],[-83.79322814941406,65.73906707763678]]],[[[-84.60624694824213,65.58541870117188],[-85.09114837646484,65.7359390258789],[-85.1500015258789,66.00208282470709],[-84.91041564941406,66.01667022705078],[-84.55260467529297,65.63281250000006],[-84.60624694824213,65.58541870117188]]],[[[-83.6328125,65.15468597412121],[-83.3062515258789,65.00833129882818],[-82.51041412353516,64.72916412353527],[-82.05052185058588,64.66822814941406],[-81.81093597412104,64.53801727294928],[-81.58958435058588,64.12916564941406],[-82.53124999999994,63.952083587646484],[-83.0875015258789,64.03125000000011],[-83.12499999999994,64.16458129882824],[-83.52916717529291,64.0999984741211],[-83.62708282470703,63.8604164123
 5357],[-83.90624999999994,63.67083358764654],[-84.36458587646479,63.56041717529297],[-84.58125305175781,63.291667938232536],[-85.19583129882807,63.11041641235357],[-85.47031402587879,63.10676956176758],[-85.65989685058588,63.32551956176758],[-85.58802032470703,63.62968826293957],[-85.69999694824219,63.91041564941406],[-85.99531555175781,63.94844055175787],[-85.90416717529297,63.68958282470709],[-86.29582977294922,63.63124847412115],[-86.55208587646484,63.66249847412115],[-86.91874694824213,63.545833587646484],[-87.22447967529291,63.658851623535156],[-86.81666564941406,63.94166564941406],[-86.13801574707031,64.097396850586],[-86.36406707763666,64.3057327270509],[-86.38072967529297,64.60781097412115],[-86.1390609741211,64.9213485717774],[-86.1624984741211,65.3020858764649],[-85.9849014282226,65.72239685058594],[-85.59323120117182,65.90989685058594],[-85.19166564941406,65.80833435058605],[-85.05468749999994,65.45781707763672],[-84.86250305175776,65.20417022705078],[-84.51875305175781,6
 5.4812469482423],[-84.20625305175781,65.36250305175781],[-84.02708435058588,65.18333435058588],[-83.6328125,65.15468597412121]]],[[[-82.0609359741211,63.87135696411127],[-82.09583282470692,63.92499923706055],[-80.91041564941395,64.11666870117193],[-80.53801727294922,63.978649139404354],[-80.38749694824213,63.83958435058605],[-80.527603149414,63.66510391235357],[-81.02656555175776,63.4546852111817],[-81.61042022705078,63.55833435058594],[-82.42708587646484,63.81041717529291],[-82.0609359741211,63.87135696411127]]],[[[-83.1187515258789,62.84166717529308],[-82.7020797729491,62.94166564941406],[-82.24427032470703,62.991146087646484],[-81.8671875,62.91406250000006],[-81.94010162353516,62.721351623535156],[-82.34739685058588,62.5598983764649],[-82.4875030517577,62.44583511352539],[-83.03125,62.19791793823242],[-83.72760009765625,62.265106201171875],[-83.95781707763672,62.4598960876466],[-83.660415649414,62.587501525878906],[-83.54322814941406,62.82656478881836],[-83.3062515258789,62.92916
 488647461],[-83.1187515258789,62.84166717529308]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":8,"NAME_1":"Nunavut","ID_2":118,"NAME_2":"Keewatin","TYPE_2":"Region","ENGTYPE_2":"Region","NL_NAME_2":"","VARNAME_2":"Kivalliq"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-101.88072967529291,68.82135009765653],[-101.67134857177734,68.74427032470709],[-101.83333587646479,68.57917022705072],[-102.28958129882807,68.70625305175781],[-101.88072967529291,68.82135009765653]]],[[[-100.4703140258789,69.0484390258789],[-100.19531249999994,68.92448425292974],[-100.22291564941406,68.78333282470726],[-100.60572814941406,68.77552032470709],[-100.4703140258789,69.0484390258789]]],[[[-115.92082977294916,68.93958282470709],[-115.79582977294922,68.96666717529303],[-114.97239685058588,68.86406707763678],[-114.50208282470703,68.70625305175781],[-114.4250030517577,68.6374969482423],[-113.89218902587879,68.40364837646496],[-114.11666870117182,68.2354202270509],[-114.41041564941395,68.29374694824224],[-115.14583587646484,68.18541717529303],[-115.19166564941395,67.97916412353516],[-115.51249694824219,67.89791870117188],[-114.99166870117182,67.79166412353516],[-114.70259857177729,67.81822967529303],[-113.8
 5208129882812,67.69583129882824],[-112.63333129882807,67.67082977294928],[-111.82707977294916,67.76041412353516],[-110.97083282470703,67.77083587646479],[-110.1624984741211,67.98542022705072],[-109.75833129882812,67.83541870117193],[-109.5,67.69166564941418],[-109.0500030517577,67.72916412353521],[-108.76927185058594,67.35884857177729],[-108.52031707763666,67.45989990234386],[-107.93333435058588,67.24166870117193],[-107.86406707763672,67.14115142822271],[-108.2750015258789,67.027084350586],[-107.92760467529291,66.80573272705095],[-107.75676727294922,66.95468902587885],[-107.36250305175781,67.027084350586],[-107.5786514282226,67.2650985717774],[-107.56718444824219,67.50364685058594],[-108.02864837646484,67.74635314941412],[-107.84323120117188,68.10364532470714],[-107.3671875,68.04218292236334],[-106.83333587646484,68.12500000000011],[-106.77500152587885,68.22083282470703],[-106.42292022705078,68.33958435058605],[-105.67134857177734,68.48072814941418],[-105.91041564941406,68.635414123
 53527],[-106.33958435058594,68.589584350586],[-106.54740142822266,68.35468292236322],[-106.95207977294916,68.31041717529308],[-107.02708435058594,68.33125305175781],[-107.62083435058594,68.34999847412115],[-107.57707977294922,68.18125152587902],[-108.21198272705072,68.16197967529325],[-108.3599014282226,68.29426574707031],[-108.70625305175781,68.35208129882835],[-108.35781097412104,68.60156250000023],[-107.90208435058594,68.64167022705084],[-107.75208282470703,68.65208435058594],[-107.27448272705078,68.70365142822271],[-106.15208435058594,68.94166564941412],[-105.78124999999994,68.88333129882818],[-105.4296875,68.71718597412115],[-105.44374847412104,68.4583358764649],[-105.30833435058588,68.37916564941429],[-104.56926727294922,68.21406555175793],[-104.64583587646473,68.16041564941412],[-104.18698120117188,67.99323272705072],[-103.34323120117188,68.00468444824213],[-102.84114837646484,67.8390655517581],[-102.2109375,67.71614837646484],[-101.69739532470703,67.69843292236351],[-100.991
 66870117188,67.75000000000011],[-100.70259857177734,67.8234329223634],[-100.18749999999994,67.84999847412104],[-99.36510467529297,67.78906250000006],[-98.94218444824213,67.7203140258789],[-98.36823272705078,67.81718444824213],[-98.7036514282226,67.95259857177746],[-98.55208587646484,68.10208129882818],[-98.19635009765625,67.91614532470714],[-98.09166717529297,67.77500152587902],[-97.64375305175776,67.65208435058616],[-97.08802032470703,67.81406402587896],[-97.60781097412104,67.99010467529303],[-98.17343902587885,67.91614532470714],[-98.3911514282226,68.02552032470703],[-98.28801727294922,68.18281555175793],[-97.83541870117188,68.40625000000023],[-97.80208587646484,68.55208587646479],[-97.32917022705078,68.51667022705078],[-96.89791870117188,68.24791717529297],[-96.65416717529297,68.28749847412121],[-95.99948120117188,68.0953140258789],[-96.1890640258789,67.80781555175793],[-96.08385467529297,67.64218902587896],[-96.4124984741211,67.56041717529308],[-96.19999694824213,67.429168701171
 93],[-96.09426879882812,67.22135162353516],[-95.72551727294916,67.36093902587902],[-95.52343749999994,67.32656097412138],[-95.30729675292969,67.00000000000006],[-95.92813110351562,67.00000000000006],[-96.01145172119135,67.00000000000006],[-96.22187042236328,67.00000000000006],[-96.23332977294922,67.00000000000006],[-96.24063110351551,67.00000000000006],[-96.38749694824207,67.00000000000006],[-98.5,67.00000000000006],[-100.26068115234375,67.00000000000006],[-101.74999999999994,67.00000000000006],[-103.63749694824213,67.00000000000006],[-104.99188232421875,67.00000000000006],[-104.98860931396484,66.85517120361328],[-104.98877716064442,66.79343414306646],[-104.98989105224604,66.4225845336914],[-104.98989105224604,66.42217254638672],[-104.99040222167957,66.29228973388672],[-104.99047851562494,66.2798843383789],[-104.99131774902338,66.1119232177735],[-104.9916152954101,66.06840515136719],[-104.9920425415039,66.00668334960949],[-104.995132446289,65.86479949951183],[-104.99572753906244,65.
 83734130859386],[-104.99576568603516,65.83441925048834],[-104.99633026123047,65.7958602905274],[-104.99706268310541,65.7448196411134],[-105.00057983398432,65.4976272583009],[-105.0013580322265,65.49629211425793],[-105.00099182128906,65.49609375000011],[-105.00167846679688,65.41905212402355],[-105.0177612304687,64.47739410400402],[-106.58404541015625,64.59294128417974],[-109.07715606689447,64.74463653564447],[-110.8423843383789,65.40769958496094],[-111.56803894042969,65.38124847412115],[-111.56942749023438,65.38116455078125],[-112.73799133300781,65.33104705810553],[-115.34188079833984,66.33062744140625],[-117.06546020507812,66.9291763305664],[-118.59527587890625,67.19918060302746],[-120.90374755859375,67.85517120361328],[-121.04924774169922,69.40641021728516],[-120.38711547851562,69.43428039550781],[-119.94999694824213,69.34375000000006],[-119.23542022705072,69.30208587646484],[-118.65416717529286,69.22499847412104],[-118.36666870117188,69.10416412353521],[-117.87083435058594,68.9958
 34350586],[-116.92082977294916,68.93750000000006],[-116.19999694824219,68.8333358764649],[-115.92082977294916,68.93958282470709]]],[[[-95.75676727294922,69.63176727294928],[-95.34739685058588,69.52864837646479],[-95.67500305175776,69.3499984741211],[-95.9479141235351,69.51457977294922],[-95.75676727294922,69.63176727294928]]],[[[-98.011978149414,69.87968444824224],[-97.41249847412104,69.77500152587896],[-97.00416564941406,69.55000305175793],[-96.5500030517577,69.44374847412121],[-95.91718292236328,69.14739990234375],[-95.81718444824213,68.89427185058588],[-96.14739990234375,68.54531097412115],[-96.54582977294922,68.45207977294928],[-96.85624694824219,68.52708435058605],[-97.48332977294916,68.55625152587902],[-98.24999999999994,68.78541564941406],[-98.71458435058594,68.7979202270509],[-99.39583587646479,68.89375305175781],[-99.46250152587885,69.11875152587902],[-98.7171859741211,69.18177032470703],[-98.59323120117182,69.44843292236334],[-98.3213500976562,69.54948425292969],[-98.01197
 8149414,69.87968444824224]]],[[[-89.01324462890625,69.1830825805664],[-89.01644897460932,68.25813293457043],[-88.98509216308594,67.00000000000006],[-90.24053192138672,67.00000000000006],[-92.51250457763666,67.00000000000006],[-95.20417022705072,67.00000000000006],[-95.32031249999994,67.07865142822277],[-95.13176727294916,67.29218292236334],[-95.29114532470697,67.34218597412115],[-95.2984390258789,67.54948425292974],[-95.66458129882807,67.69999694824224],[-95.31666564941406,68.07499694824224],[-94.79948425292969,68.0130157470706],[-94.15573120117188,68.28489685058594],[-94.17448425292963,68.38489532470709],[-93.58177185058588,68.54843902587902],[-93.71875,68.61875152587896],[-93.5609359741211,68.83906555175787],[-93.89531707763672,68.9932327270509],[-94.0729141235351,68.76041412353516],[-94.5953140258789,68.77343750000006],[-94.47083282470703,68.96250152587902],[-94.01093292236322,69.10468292236328],[-94.27656555175781,69.18801879882812],[-94.24999999999994,69.44374847412121],[-94.62
 65640258789,69.67240142822271],[-94.93333435058582,69.58541870117193],[-95.691665649414,69.79166412353527],[-95.95573425292963,69.79010009765636],[-96.47708129882812,70.08958435058605],[-96.47864532470697,70.38593292236334],[-96.11875152587879,70.53125000000006],[-96.53697967529297,70.88176727294922],[-96.28801727294916,71.05573272705078],[-96.4536514282226,71.27656555175781],[-96.16614532470697,71.395317077637],[-95.51041412353516,71.49375152587902],[-95.88281249999989,71.61406707763678],[-95.21406555175776,71.83698272705078],[-95.17552185058594,71.9557342529298],[-94.59323120117182,72.0015640258789],[-94.38489532470703,71.75572967529297],[-93.68177032470703,71.7546844482423],[-93.82083129882812,71.64583587646484],[-92.92292022705078,71.28958129882812],[-92.85208129882812,71.01457977294928],[-92.93541717529297,70.82707977294928],[-92.27708435058594,70.63333129882841],[-92.03801727294922,70.42760467529297],[-91.683853149414,70.35572814941406],[-91.5374984741211,70.14791870117199],[-
 92.72031402587885,69.73593902587902],[-92.25208282470692,69.66249847412121],[-91.78385162353516,69.48490142822271],[-91.39167022705072,69.66249847412121],[-91.10832977294916,69.51249694824219],[-90.64375305175781,69.54166412353516],[-90.36510467529291,69.46406555175804],[-90.8187484741211,69.34375000000006],[-91.00572967529297,69.22031402587896],[-90.64427185058588,69.08281707763678],[-90.44635009765625,68.89323425292974],[-90.53906249999994,68.4213485717774],[-90.1312484741211,68.3062515258789],[-89.70468902587885,68.71510314941412],[-89.75989532470703,68.96302032470709],[-89.63541412353516,69.05833435058594],[-89.01324462890625,69.1830825805664]]],[[[-93.87079620361328,72.25733184814453],[-94.02135467529297,72.09426879882812],[-95.15625,71.972915649414],[-95.22291564941406,72.42500305175781],[-95.11718749999994,72.4651565551759],[-93.87079620361328,72.25733184814453]]],[[[-98.42839813232422,72.96900939941429],[-98.3828125,72.9068298339846],[-98.28870391845703,72.9492645263673],[-9
 7.05259704589844,72.77308654785156],[-96.63836669921875,72.70862579345703],[-96.57341003417969,72.69583129882812],[-96.29792022705072,72.42708587646484],[-96.69999694824213,72.308334350586],[-96.4671859741211,72.02864837646484],[-96.60364532470703,71.82135009765625],[-96.94583129882812,71.8062515258789],[-97.5,71.61666870117188],[-97.94791412353516,71.70625305175793],[-98.37239837646484,71.65260314941412],[-98.04634857177734,71.52864837646496],[-98.4921875,71.30885314941429],[-98.93541717529291,71.29374694824219],[-99.26406097412104,71.39009857177734],[-99.76667022705078,71.84375000000011],[-100.06874847412104,71.86875152587902],[-100.65208435058594,72.19583129882841],[-101.80573272705078,72.31926727294933],[-101.75468444824219,72.40573120117188],[-102.29114532470703,72.58698272705084],[-102.66041564941406,72.85208129882812],[-102.38749694824219,73.09375000000023],[-101.90208435058588,73.04582977294922],[-101.1651000976562,72.7171859741211],[-100.30000305175781,72.80833435058588],[-
 100.2265625,73.05885314941412],[-100.43671417236328,73.2562484741211],[-98.42839813232422,72.96900939941429]]],[[[-117.32119750976557,69.89804077148443],[-115.12065887451172,69.90512084960949],[-113.2304458618164,69.923568725586],[-109.86248016357422,69.92113494873058],[-109.85302734375,71.1746978759765],[-109.85298919677729,71.18614196777338],[-109.8453521728515,72.443588256836],[-109.84513854980463,72.45833587646479],[-109.86965179443354,72.48293304443371],[-109.84101867675781,72.5335464477539],[-109.84735870361322,72.93333435058594],[-108.67292022705067,72.58333587646484],[-108.28073120117182,71.79426574707031],[-107.97239685058594,71.64948272705078],[-107.65781402587885,71.7098999023437],[-107.30208587646479,71.88957977294939],[-107.78697967529297,72.17760467529297],[-107.70259857177734,72.29322814941406],[-107.9286499023437,72.47551727294939],[-107.84010314941406,72.57656097412121],[-108.10156249999994,72.83177185058605],[-108.22343444824213,73.18698120117188],[-107.80208587646
 479,73.34166717529297],[-107.18333435058594,73.19583129882818],[-106.875,73.3125],[-106.4437484741211,73.21875000000011],[-106.08073425292957,73.05260467529303],[-105.5,72.89791870117193],[-105.24323272705078,72.42552185058605],[-104.9453125,72.1661453247072],[-104.84739685058594,71.91406250000006],[-104.51718902587879,71.7682342529298],[-104.31926727294916,71.39009857177734],[-104.47447967529297,71.01093292236334],[-104.0374984741211,70.90000152587902],[-103.49791717529297,70.5791702270509],[-102.74999999999994,70.51667022705095],[-102.17134857177734,70.3588485717774],[-102.21823120117182,70.20468902587913],[-101.98332977294922,70.12083435058605],[-100.9828109741211,70.17343902587896],[-100.91718292236328,69.69114685058605],[-101.65416717529297,69.71250152587902],[-102.26875305175781,69.88749694824241],[-102.58125305175781,69.74375152587902],[-102.50260162353516,69.5609359741211],[-102.18073272705078,69.50260162353521],[-101.98906707763666,69.25468444824224],[-101.73958587646479,69
 .18750000000023],[-101.7916641235351,68.995834350586],[-102.44999694824213,68.87499999999994],[-103.38749694824219,68.78333282470726],[-104.33906555175781,68.91510009765625],[-104.52916717529291,68.86250305175787],[-105.12291717529297,68.89583587646484],[-105.04374694824219,69.05833435058594],[-105.83958435058594,69.18541717529303],[-106.16458129882812,69.14375305175776],[-106.316665649414,69.41041564941406],[-106.56041717529291,69.49791717529308],[-106.96406555175781,69.3546829223634],[-106.91093444824219,69.23281097412121],[-107.49166870117182,68.98332977294933],[-108.50260162353516,68.89843750000011],[-108.93593597412104,68.74427032470709],[-109.63541412353516,68.64375305175787],[-110.54792022705072,68.62916564941406],[-111.19999694824219,68.52500152587885],[-112.0875015258789,68.53749847412115],[-112.74791717529297,68.46875000000017],[-113.32083129882807,68.59166717529303],[-113.66406249999994,68.8286514282226],[-113.54426574707026,68.95051574707043],[-113.6437530517577,69.19583
 12988283],[-114.38333129882801,69.29374694824224],[-114.85208129882812,69.26667022705084],[-115.9437484741211,69.29582977294922],[-116.6140670776366,69.45885467529314],[-117.19322967529291,69.74427032470709],[-117.32119750976557,69.89804077148443]]],[[[-106.0026016235351,73.73186492919933],[-104.79650115966791,73.64791870117199],[-104.47135162353516,73.52239990234386],[-104.53801727294922,73.30677032470703],[-104.93801879882807,73.02760314941412],[-105.39375305175781,72.91041564941406],[-106.06041717529291,73.18541717529291],[-106.06249999999994,73.28333282470703],[-106.89323425292963,73.503646850586],[-106.59114837646484,73.69947814941406],[-106.0026016235351,73.73186492919933]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":8,"NAME_1":"Nunavut","ID_2":119,"NAME_2":"Kitikmeot","TYPE_2":"Region","ENGTYPE_2":"Region","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-82.05477905273438,46.100566864013786],[-82.05559539794922,46.10059738159174],[-82.31405639648438,46.1835289001466],[-82.05477905273438,46.100566864013786]]],[[[-84.0957641601562,46.23023986816406],[-84.09853363037104,46.251178741455135],[-83.97600555419922,46.310310363769474],[-83.78509521484375,46.18441772460949],[-83.8963851928711,46.10006332397461],[-84.0957641601562,46.23023986816406]]],[[[-82.6413803100586,48.45061111450207],[-84.01457977294922,48.449623107910156],[-83.97374725341797,47.93410110473644],[-83.97492980957026,47.23616027832031],[-82.57723236083979,47.235637664795036],[-82.57867431640614,46.9771461486817],[-81.94990539550776,46.97610473632818],[-81.94475555419916,46.625179290771484],[-82.06925201416016,46.62511825561518],[-82.06796264648432,46.36664581298828],[-82.31294250488281,46.277549743652344],[-82.31260681152344,46.18418884277355],[-83.044677734375,46.1736946105957],[-84.01205444335938,46.3
 1689453125006],[-84.13395690917969,46.36801910400396],[-84.134033203125,46.3681373596192],[-84.13441467285156,46.36950302124035],[-84.11254882812494,46.51302337646496],[-84.48760223388672,46.454284667968864],[-84.58895874023438,46.5703125],[-84.42387390136719,46.67623901367193],[-84.53536224365234,46.82618713378912],[-84.3999252319336,46.9099006652832],[-84.79060363769526,46.99421691894537],[-84.58862304687494,47.28070831298834],[-84.78749084472656,47.47306442260748],[-85.01270294189447,47.602378845214844],[-84.86088562011713,47.95265960693365],[-85.32950592041016,47.941482543945256],[-85.33299255371094,48.88674926757824],[-85.33157348632812,49.70986175537115],[-84.48525238037104,49.70857238769537],[-84.48535919189442,49.44926452636719],[-83.6433486938476,49.449851989746094],[-83.64225769042969,49.18958282470709],[-82.6392593383789,49.190372467041016],[-82.6413803100586,48.45061111450207]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":12
 0,"NAME_2":"Algoma","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.9841537475586,43.13203430175787],[-80.08082580566406,42.97274398803705],[-80.24371337890625,43.03214645385748],[-80.54342651367182,42.98487091064453],[-80.60868072509766,43.15166091918945],[-80.47151947021479,43.26685714721674],[-80.23860931396479,43.30646514892578],[-80.20054626464844,43.210693359375],[-79.9841537475586,43.13203430175787]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":121,"NAME_2":"Brant","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.11923217773432,44.739845275878906],[-81.12702941894531,44.5445823669433],[-80.98904418945312,43.986770629882926],[-80.99166870117176,43.9864501953125],[-81.36800384521484,43.927513122558594],[-81.7436752319336,44.05337905883795],[-81.49386596679682,44.40273284912121],[-81.27091217041016,44.60774612426758],[-81.27257537841797,44.75265121459972],[-81.63350677490234,45.261695861816406],[-81.45745086669922,45.2265357971192],[-81.26963806152338,45.016826629638786],[-81.02203369140625,44.83629608154308],[-81.11923217773432,44.739845275878906]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":122,"NAME_2":"Bruce","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.83507537841791,42.65094757080084],[-81.83077239990229,42.604671478271484],[-81.66393280029297,42.468788146972656],[-81.9220962524414,42.28180313110357],[-82.3964233398437,42.10870361328131],[-82.4662857055664,42.04435348510748],[-82.4732437133789,42.33488845825207],[-82.4195709228515,42.566719055175895],[-81.83507537841791,42.65094757080084]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":123,"NAME_2":"Chatham-Kent","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.462173461914,52.28668594360363],[-81.41500091552723,52.14110946655279],[-80.99333190917969,52.01416778564459],[-80.88388824462885,51.89222335815441],[-80.56277465820307,51.688331604003906],[-80.44444274902338,51.38111114501959],[-80.11944580078125,51.291942596435604],[-79.89555358886719,51.16777801513672],[-79.51565551757807,51.459987640380916],[-79.51795959472656,50.19472122192377],[-79.51798248291016,49.008884429931754],[-79.5173721313476,48.43159103393555],[-79.51762390136719,48.2762451171875],[-80.81279754638672,48.277160644531364],[-81.85594940185541,48.27743530273443],[-81.85658264160156,48.44988632202143],[-82.6413803100586,48.45061111450207],[-82.6392593383789,49.190372467041016],[-83.64225769042969,49.18958282470709],[-83.6433486938476,49.449851989746094],[-84.48535919189442,49.44926452636719],[-84.48525238037104,49.70857238769537],[-85.33157348632812,49.70986175537115],[-85.3329086303711,49.96954727172857]
 ,[-86.54909515380854,49.97011566162121],[-86.54795074462885,51.518321990966854],[-86.27781677246094,51.76942825317377],[-85.89766693115234,51.6205291748048],[-85.5013809204101,51.657535552978516],[-85.08290863037104,51.405864715576286],[-85.04439544677729,51.31013488769537],[-84.80011749267578,51.18809127807617],[-84.48748016357422,51.10927963256847],[-84.32510375976557,51.23257446289074],[-83.822525024414,51.34027862548834],[-83.31094360351562,51.54828643798828],[-82.95555114746088,51.87767791748041],[-82.62125396728516,51.92979812622082],[-82.33692169189442,52.08054733276367],[-82.09982299804682,52.10932922363287],[-81.79107666015625,52.23615264892584],[-81.462173461914,52.28668594360363]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":124,"NAME_2":"Cochrane","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.95116424560547,43.95149993896479],[-80.1398468017577,43.86157989501959],[-80.38841247558594,43.85819625854492],[-80.4383773803711,44.025974273681584],[-80.40999603271479,44.21490859985357],[-80.22907257080072,44.25338363647461],[-80.03395843505854,44.29485321044922],[-79.95116424560547,43.95149993896479]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":125,"NAME_2":"Dufferin","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.08186340332031,44.51581954956055],[-78.90313720703125,44.203426361083984],[-78.76949310302729,44.2256698608399],[-78.69268798828125,44.05844116210949],[-78.51630401611322,44.098773956298885],[-78.50965118408203,44.08349227905279],[-78.43602752685547,43.909923553466854],[-78.80567932128906,43.868370056152344],[-79.10551452636719,43.79283142089844],[-79.17031860351557,43.855449676513786],[-79.32799530029297,44.22331619262701],[-79.15609741210932,44.26316452026373],[-79.24244689941406,44.45978164672857],[-79.08186340332031,44.51581954956055]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":126,"NAME_2":"Durham","TYPE_2":"Regional Municipality","ENGTYPE_2":"Regional Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.89876556396479,42.912651062011776],[-80.744644165039,42.82400512695324],[-80.72109985351557,42.61719894409191],[-81.23983001708984,42.66089248657221],[-81.66393280029297,42.468788146972656],[-81.83077239990229,42.604671478271484],[-81.4185180664062,42.794704437255916],[-80.89876556396479,42.912651062011776]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":127,"NAME_2":"Elgin","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-82.4732437133789,42.33488845825207],[-82.4662857055664,42.04435348510748],[-82.93285369873041,41.977909088134766],[-83.14418792724604,42.040470123291016],[-83.05030059814453,42.31770706176769],[-82.80345153808588,42.398147583007756],[-82.4732437133789,42.33488845825207]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":128,"NAME_2":"Essex","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-76.2522964477539,44.204620361328125],[-76.26280975341797,44.20481872558594],[-76.26741790771479,44.204967498779354],[-76.28238677978516,44.2052841186524],[-76.29146575927729,44.20462417602545],[-76.18815612792969,44.22677230834972],[-76.18978118896484,44.22575759887701],[-76.2052612304687,44.21714019775402],[-76.2332534790039,44.20792388916021],[-76.24835968017572,44.20481872558594],[-76.2522964477539,44.204620361328125]]],[[[-76.76980590820312,45.14228820800781],[-76.52566528320312,44.72119522094738],[-76.27803039550776,44.50142288208019],[-76.23440551757812,44.316719055175895],[-76.61856079101557,44.20827102661144],[-76.62256622314447,44.21515274047863],[-76.62419128417963,44.21794509887701],[-76.6290283203125,44.22610855102539],[-76.92464447021484,44.63847732543945],[-77.03219604492182,44.61196136474621],[-77.22135925292969,44.91954421997082],[-77.06570434570312,44.9625129699707],[-77.13748168945307,45.0992584
 2285162],[-76.8147354125976,45.221401214599666],[-76.76980590820312,45.14228820800781]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":129,"NAME_2":"Frontenac","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.306884765625,46.19977951049799],[-81.4359512329101,46.19530868530279],[-81.56625366210926,46.27942276000982],[-81.56824493408197,46.49748229980469],[-81.4390869140625,46.49607849121105],[-81.44462585449213,46.71510314941406],[-81.18344879150379,46.71545791625982],[-80.94888305664062,46.8866920471192],[-80.94814300537104,46.973266601562614],[-80.56079864501942,46.97088623046875],[-80.56436920166016,46.62453460693365],[-80.69409179687494,46.62478256225586],[-80.69296264648432,46.36099243164074],[-81.14427185058594,46.40723419189453],[-81.35722351074219,46.30588150024414],[-81.306884765625,46.19977951049799]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":130,"NAME_2":"Greater Sudbury","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.2917709350586,44.52654647827154],[-80.22907257080072,44.25338363647461],[-80.40999603271479,44.21490859985357],[-80.4383773803711,44.025974273681584],[-80.82693481445307,43.967914581298885],[-80.98904418945312,43.986770629882926],[-81.12702941894531,44.5445823669433],[-81.11923217773432,44.739845275878906],[-80.90087890624989,44.789112091064396],[-80.6446304321289,44.71861267089855],[-80.59514617919922,44.61439132690424],[-80.2917709350586,44.52654647827154]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":131,"NAME_2":"Grey","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.15351867675781,42.584400177001896],[-80.61450958251953,42.57513046264654],[-80.72109985351557,42.61719894409191],[-80.744644165039,42.82400512695324],[-80.50546264648432,42.88407135009771],[-80.54342651367182,42.98487091064453],[-80.24371337890625,43.03214645385748],[-80.08082580566406,42.97274398803705],[-79.9841537475586,43.13203430175787],[-79.75399017333973,43.05057144165039],[-79.51142883300781,42.96472549438471],[-79.4352035522461,42.8730087280274],[-80.20667266845697,42.7791366577149],[-80.44451141357416,42.60783386230469],[-80.15351867675781,42.584400177001896]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":132,"NAME_2":"Haldimand-Norfolk","TYPE_2":"Regional Municipality","ENGTYPE_2":"Regional Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.9609756469726,44.91150283813488],[-78.13822937011719,44.91461944580084],[-78.65482330322266,44.793972015380916],[-78.81984710693354,44.754089355468864],[-78.93439483642572,44.9856414794923],[-78.842544555664,45.14504241943365],[-78.97139739990229,45.38443374633789],[-78.85942840576166,45.4144859313966],[-78.3148193359375,45.56107711791992],[-78.17829895019526,45.309883117675895],[-77.9609756469726,44.91150283813488]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":133,"NAME_2":"Haliburton","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.6184310913086,43.47646331787115],[-79.78987884521484,43.30045318603521],[-80.03428649902344,43.47107315063488],[-80.16036224365234,43.56111145019531],[-79.96907806396484,43.73443984985357],[-79.6184310913086,43.47646331787115]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":134,"NAME_2":"Halton","TYPE_2":"Regional Municipality","ENGTYPE_2":"Regional Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.23860931396479,43.30646514892578],[-80.20475769042963,43.39758682250982],[-80.03428649902344,43.47107315063488],[-79.78987884521484,43.30045318603521],[-79.62327575683594,43.22339630126959],[-79.75399017333973,43.05057144165039],[-79.9841537475586,43.13203430175787],[-80.20054626464844,43.210693359375],[-80.23860931396479,43.30646514892578]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":135,"NAME_2":"Hamilton","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-77.57982635498047,44.05227661132818],[-77.5995254516601,44.03105545043951],[-77.65260314941406,44.017658233642635],[-77.74999237060547,44.2288055419923],[-77.59261322021484,44.207832336425895],[-77.57982635498047,44.05227661132818]]],[[[-77.54143524169916,45.14424514770519],[-77.31383514404297,44.7256813049317],[-77.05544281005854,44.419857025146484],[-77.03548431396484,44.192764282226676],[-77.53875732421875,44.09942626953131],[-77.64083099365229,44.25053787231445],[-77.72737884521484,44.43648529052746],[-77.9609756469726,44.91150283813488],[-78.17829895019526,45.309883117675895],[-77.84758758544916,45.39564132690424],[-77.69095611572266,45.43811798095703],[-77.54143524169916,45.14424514770519]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":136,"NAME_2":"Hastings","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.99166870117176,43.9864501953125],[-80.9533081054687,43.822250366210994],[-81.14735412597656,43.613994598388615],[-81.44303894042957,43.424079895019645],[-81.36365509033203,43.26389312744135],[-81.7708511352539,43.236942291259766],[-81.75501251220703,43.31598281860357],[-81.70610046386719,43.39067459106445],[-81.7436752319336,44.05337905883795],[-81.36800384521484,43.927513122558594],[-80.99166870117176,43.9864501953125]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":137,"NAME_2":"Huron","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-78.51630401611322,44.098773956298885],[-78.69268798828125,44.05844116210949],[-78.76949310302729,44.2256698608399],[-78.90313720703125,44.203426361083984],[-79.08186340332031,44.51581954956055],[-79.20856475830072,44.79644012451183],[-79.09355163574213,44.94294738769531],[-78.93439483642572,44.9856414794923],[-78.81984710693354,44.754089355468864],[-78.65482330322266,44.793972015380916],[-78.42554473876953,44.29048156738281],[-78.584716796875,44.25260543823242],[-78.51630401611322,44.098773956298885]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":138,"NAME_2":"Kawartha Lakes","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":"Victoria"}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-81.364990234375,53.219482421875114],[-81.11828613281244,53.193908691406364],[-80.8215942382812,53.00750732421881],[-80.67053985595697,52.73802947998058],[-81.05500030517578,52.749443054199276],[-81.2650146484375,52.82891845703125],[-81.94889068603516,52.96111297607422],[-82.0488891601562,53.02532958984369],[-81.8200073242187,53.17590332031256],[-81.364990234375,53.219482421875114]]],[[[-81.462173461914,52.28668594360363],[-81.79107666015625,52.23615264892584],[-82.09982299804682,52.10932922363287],[-82.33692169189442,52.08054733276367],[-82.62125396728516,51.92979812622082],[-82.95555114746088,51.87767791748041],[-83.31094360351562,51.54828643798828],[-83.822525024414,51.34027862548834],[-84.32510375976557,51.23257446289074],[-84.48748016357422,51.10927963256847],[-84.80011749267578,51.18809127807617],[-85.04439544677729,51.31013488769537],[-85.08290863037104,51.405864715576286],[-85.5013809204101,51.657535552978
 516],[-85.89766693115234,51.6205291748048],[-86.27781677246094,51.76942825317377],[-86.54795074462885,51.518321990966854],[-87.24625396728516,51.282440185546875],[-87.5177993774414,51.24048614501953],[-87.9720611572265,51.48647308349604],[-88.38541412353516,51.4761962890625],[-88.56448364257807,51.550296783447266],[-89.07510375976551,51.524074554443416],[-89.67530059814453,51.221138000488395],[-90.39427185058594,51.07692337036133],[-90.48971557617188,51.11663818359369],[-90.89153289794916,51.04275894165039],[-90.96450042724604,50.95826721191412],[-90.9655990600586,49.880332946777344],[-90.96536254882807,49.019649505615234],[-92.93700408935541,49.01935577392578],[-92.93409729003906,49.10578536987316],[-94.09485626220697,49.108154296875114],[-94.20381927490234,49.272331237793026],[-94.82109832763672,49.28782653808605],[-95.14968872070307,49.3804550170899],[-95.15291595458984,50.395820617675895],[-95.15300750732422,51.33757781982422],[-95.15314483642572,52.84057235717785],[-94.26972961
 425781,53.37722015380871],[-93.6298828125,53.75007247924805],[-92.6586074829101,54.453392028808594],[-91.64778900146484,55.15848541259777],[-90.23148345947266,56.08443832397461],[-88.96736907958984,56.8569450378418],[-88.31223297119135,56.551391601562614],[-87.98444366455078,56.474998474121094],[-87.62390136718739,56.102294921875],[-87.19611358642578,55.93500137329107],[-86.9116821289062,55.918609619140625],[-86.27500152587885,55.712776184081974],[-85.9544448852539,55.67111206054693],[-85.63833618164057,55.55333328247076],[-85.33831024169916,55.37726211547857],[-84.69773864746082,55.23329162597656],[-83.88777923583979,55.293884277343864],[-83.46888732910156,55.211666107177734],[-82.9711074829101,55.221389770507926],[-82.27722167968739,55.11861038208008],[-82.19390869140625,54.84139633178705],[-82.43636322021479,54.287452697753906],[-82.24670410156239,54.059082031250114],[-82.11444091796875,53.775276184082145],[-82.19610595703125,53.523681640625114],[-82.10220336914057,53.26747512817
 383],[-82.21888732910156,53.2047233581543],[-82.2677001953125,52.96972656250006],[-81.53332519531244,52.44416809082031],[-81.462173461914,52.28668594360363]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":139,"NAME_2":"Kenora","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.15351867675781,42.584400177001896],[-80.44451141357416,42.60783386230469],[-80.20667266845697,42.7791366577149],[-79.4352035522461,42.8730087280274],[-79.10649108886719,42.85394287109381],[-78.91025543212885,42.89312744140625],[-78.93692016601562,42.83100128173834],[-80.07332611083984,42.39255905151367],[-81.26055145263672,42.20552062988281],[-81.63878631591797,42.02144622802729],[-82.4076919555664,41.6769256591798],[-82.68122100830078,41.677291870117244],[-83.0678100585937,41.86261367797863],[-83.14418792724604,42.040470123291016],[-82.93285369873041,41.977909088134766],[-82.4662857055664,42.04435348510748],[-82.3964233398437,42.10870361328131],[-81.9220962524414,42.28180313110357],[-81.66393280029297,42.468788146972656],[-81.23983001708984,42.66089248657221],[-80.72109985351557,42.61719894409191],[-80.61450958251953,42.57513046264654],[-80.15351867675781,42.584400177001896]]]},"properties":{"ID_0":42,"ISO":"CAN","
 NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":140,"NAME_2":"Lake Erie","TYPE_2":"Water body","ENGTYPE_2":"Water body","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.61226654052734,46.102016448974666],[-81.52665710449213,45.947250366210994],[-81.01110076904291,45.94462966918945],[-80.72999572753906,45.87170028686535],[-80.49453735351562,45.55379104614258],[-80.22365570068354,45.28136444091797],[-79.95734405517578,45.11901473999029],[-79.9673233032226,45.116271972656364],[-80.05455017089838,45.093017578125114],[-79.68791961669922,44.8289909362793],[-79.86962127685547,44.76942443847656],[-80.09867095947266,44.4630508422851],[-80.2917709350586,44.52654647827154],[-80.59514617919922,44.61439132690424],[-80.6446304321289,44.71861267089855],[-80.90087890624989,44.789112091064396],[-81.11923217773432,44.739845275878906],[-81.02203369140625,44.83629608154308],[-81.26963806152338,45.016826629638786],[-81.45745086669922,45.2265357971192],[-81.63350677490234,45.261695861816406],[-81.27257537841797,44.75265121459972],[-81.27091217041016,44.60774612426758],[-81.49386596679682,44.402732849121
 21],[-81.7436752319336,44.05337905883795],[-81.70610046386719,43.39067459106445],[-81.75501251220703,43.31598281860357],[-82.01718139648438,43.20274734497082],[-82.15249633789062,43.065216064453125],[-82.4201889038086,42.99785232543951],[-82.12290191650385,43.58837127685547],[-82.41751861572266,44.90666961669933],[-82.52536773681629,45.34091949462896],[-83.59211730957026,45.81868362426769],[-83.43562316894526,45.996528625488395],[-83.57113647460932,46.10256958007824],[-83.8258285522461,46.11650466918951],[-83.95479583740229,46.056240081787166],[-84.0957641601562,46.23023986816406],[-83.8963851928711,46.10006332397461],[-83.78509521484375,46.18441772460949],[-83.97600555419922,46.310310363769474],[-84.09853363037104,46.251178741455135],[-84.13395690917969,46.36801910400396],[-84.01205444335938,46.31689453125006],[-83.044677734375,46.1736946105957],[-82.31260681152344,46.18418884277355],[-82.31405639648438,46.1835289001466],[-82.05559539794922,46.10059738159174],[-82.052505493164,46.0
 9915924072277],[-82.03418731689447,46.099399566650504],[-82.02223205566406,46.0979270935058],[-81.89067077636713,46.09444046020519],[-81.88936614990234,46.094085693359375],[-81.79637908935536,46.09879684448248],[-81.795654296875,46.0987434387207],[-81.79219055175781,46.098491668701286],[-81.66314697265614,46.09263229370117],[-81.61226654052734,46.102016448974666]],[[-81.9954605102539,45.96977615356445],[-82.28332519531239,45.987361907958984],[-82.75086975097656,45.831462860107536],[-82.9448013305664,45.957477569580135],[-83.10815429687489,45.87100982666027],[-82.53730010986328,45.75320816040045],[-82.07743835449219,45.5562095642091],[-81.84400177001953,45.51494979858404],[-81.57854461669916,45.7877197265625],[-81.9112319946289,45.884140014648494],[-81.9954605102539,45.96977615356445]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":141,"NAME_2":"Lake Hurron","TYPE_2":"Water body","ENGTYPE_2":"Water body","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.65260314941406,44.017658233642635],[-77.5995254516601,44.03105545043951],[-77.43048095703125,43.9261474609375],[-77.28701019287104,43.95558929443365],[-77.1457290649414,43.83756256103521],[-76.94282531738276,43.93532943725597],[-77.07373809814453,44.040966033935604],[-77.05229187011713,44.15363693237305],[-77.49251556396479,44.09883499145502],[-77.57982635498047,44.05227661132818],[-77.59261322021484,44.207832336425895],[-77.74999237060547,44.2288055419923],[-77.64083099365229,44.25053787231445],[-77.53875732421875,44.09942626953131],[-77.03548431396484,44.192764282226676],[-77.03608703613276,44.04328918457031],[-76.6290283203125,44.22610855102539],[-76.62419128417963,44.21794509887701],[-76.62256622314447,44.21515274047863],[-76.61856079101557,44.20827102661144],[-76.23440551757812,44.316719055175895],[-75.9409790039062,44.38425827026373],[-75.81101989746088,44.46872711181652],[-75.96947479248047,44.344261169433594
 ],[-76.00795745849598,44.343830108642635],[-76.18815612792969,44.22677230834972],[-76.29146575927729,44.20462417602545],[-76.44113159179688,44.09443664550787],[-76.79833221435541,43.631408691406364],[-78.68121337890625,43.63359069824219],[-79.20278930664062,43.45099258422857],[-79.06349182128906,43.25671005249035],[-79.31147766113276,43.182983398437614],[-79.62327575683594,43.22339630126959],[-79.78987884521484,43.30045318603521],[-79.6184310913086,43.47646331787115],[-79.53954315185547,43.577121734619254],[-79.31358337402332,43.65275192260742],[-79.10551452636719,43.79283142089844],[-78.80567932128906,43.868370056152344],[-78.43602752685547,43.909923553466854],[-77.65260314941406,44.017658233642635]],[[-76.25747680664062,44.20471954345709],[-76.26280975341797,44.20481872558594],[-76.2522964477539,44.204620361328125],[-76.25747680664062,44.20471954345709]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":142,"NAME_2":"Lake Ontario","TYPE_2":
 "Water body","ENGTYPE_2":"Water body","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-85.32950592041016,47.941482543945256],[-84.86088562011713,47.95265960693365],[-85.01270294189447,47.602378845214844],[-84.78749084472656,47.47306442260748],[-84.58862304687494,47.28070831298834],[-84.79060363769526,46.99421691894537],[-84.3999252319336,46.9099006652832],[-84.53536224365234,46.82618713378912],[-84.42387390136719,46.67623901367193],[-84.58895874023438,46.5703125],[-84.48760223388672,46.454284667968864],[-84.7637710571289,46.634880065918026],[-84.84339904785156,46.887283325195256],[-86.54266357421875,47.58848571777344],[-88.37091064453114,48.30424880981451],[-88.68901062011719,48.24150848388666],[-89.3390502929687,47.96989822387701],[-89.56343841552734,48.003421783447266],[-89.35064697265625,48.09034729003912],[-89.14452362060541,48.47675704956066],[-88.7967910766601,48.57225418090826],[-88.85787963867188,48.39690399169933],[-88.74526977539062,48.35118865966797],[-88.47541809082026,48.842849731445426],[-8
 8.10655975341797,48.694641113281364],[-88.2295532226562,48.9185676574707],[-87.94973754882807,48.928737640380916],[-87.44567108154297,48.832321166992244],[-87.20655059814447,48.75482940673828],[-86.7058715820312,48.80750274658209],[-86.43611145019531,48.762767791748104],[-86.27072143554682,48.57621002197277],[-86.0877227783202,48.15876007080078],[-85.85192108154297,47.970932006835994],[-85.66680908203125,47.92053604125988],[-85.32950592041016,47.941482543945256]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":143,"NAME_2":"Lake Superior","TYPE_2":"Water body","ENGTYPE_2":"Water body","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.7708511352539,43.236942291259766],[-81.79017639160145,42.81619644165039],[-81.83507537841791,42.65094757080084],[-82.4195709228515,42.566719055175895],[-82.4732437133789,42.33488845825207],[-82.80345153808588,42.398147583007756],[-82.52133941650385,42.610420227050895],[-82.4201889038086,42.99785232543951],[-82.15249633789062,43.065216064453125],[-82.01718139648438,43.20274734497082],[-81.75501251220703,43.31598281860357],[-81.7708511352539,43.236942291259766]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":144,"NAME_2":"Lambton","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.82369995117182,44.96563339233404],[-76.08443450927729,44.89562225341808],[-76.29305267333984,44.70557403564459],[-76.52566528320312,44.72119522094738],[-76.76980590820312,45.14228820800781],[-76.35395812988281,45.410594940185604],[-75.82369995117182,44.96563339233404]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":145,"NAME_2":"Lanark","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.59504699707031,45.084396362304744],[-75.36289978027344,44.804901123046875],[-75.81101989746088,44.46872711181652],[-75.9409790039062,44.38425827026373],[-76.23440551757812,44.316719055175895],[-76.27803039550776,44.50142288208019],[-76.52566528320312,44.72119522094738],[-76.29305267333984,44.70557403564459],[-76.08443450927729,44.89562225341808],[-75.82369995117182,44.96563339233404],[-75.59504699707031,45.084396362304744]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":146,"NAME_2":"Leeds and Grenville","TYPE_2":"United County","ENGTYPE_2":"United County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-76.6290283203125,44.22610855102539],[-77.03608703613276,44.04328918457031],[-77.03548431396484,44.192764282226676],[-77.05544281005854,44.419857025146484],[-77.31383514404297,44.7256813049317],[-77.54143524169916,45.14424514770519],[-77.21580505371094,45.23703765869152],[-77.13748168945307,45.09925842285162],[-77.06570434570312,44.9625129699707],[-77.22135925292969,44.91954421997082],[-77.03219604492182,44.61196136474621],[-76.92464447021484,44.63847732543945],[-76.6290283203125,44.22610855102539]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":147,"NAME_2":"Lennox and Addington","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-81.9954605102539,45.96977615356445],[-81.9112319946289,45.884140014648494],[-81.57854461669916,45.7877197265625],[-81.84400177001953,45.51494979858404],[-82.07743835449219,45.5562095642091],[-82.53730010986328,45.75320816040045],[-83.10815429687489,45.87100982666027],[-82.9448013305664,45.957477569580135],[-82.75086975097656,45.831462860107536],[-82.28332519531239,45.987361907958984],[-81.9954605102539,45.96977615356445]]],[[[-82.05477905273438,46.100566864013786],[-82.052505493164,46.09915924072277],[-82.05559539794922,46.10059738159174],[-82.05477905273438,46.100566864013786]]],[[[-80.58184051513666,46.01425170898449],[-80.72999572753906,45.87170028686535],[-81.01110076904291,45.94462966918945],[-81.52665710449213,45.947250366210994],[-81.61226654052734,46.102016448974666],[-81.4359512329101,46.19530868530279],[-81.306884765625,46.19977951049799],[-80.95057678222656,46.19021224975597],[-80.6661529541015,46.1048
 202514649],[-80.58184051513666,46.01425170898449]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":148,"NAME_2":"Manitoulin","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.36365509033203,43.26389312744135],[-81.1322174072265,43.23147583007807],[-80.89876556396479,42.912651062011776],[-81.4185180664062,42.794704437255916],[-81.83077239990229,42.604671478271484],[-81.83507537841791,42.65094757080084],[-81.79017639160145,42.81619644165039],[-81.7708511352539,43.236942291259766],[-81.36365509033203,43.26389312744135]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":149,"NAME_2":"Middlesex","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-78.85942840576166,45.4144859313966],[-78.97139739990229,45.38443374633789],[-78.842544555664,45.14504241943365],[-78.93439483642572,44.9856414794923],[-79.09355163574213,44.94294738769531],[-79.20856475830072,44.79644012451183],[-79.62577819824219,44.89443969726574],[-79.68791961669922,44.8289909362793],[-80.05455017089838,45.093017578125114],[-79.9673233032226,45.116271972656364],[-79.95734405517578,45.11901473999029],[-79.60629272460938,45.2148895263673],[-79.67251586914057,45.334396362304744],[-78.92816925048822,45.53271484375],[-78.85942840576166,45.4144859313966]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":150,"NAME_2":"Muskoka","TYPE_2":"District Municipality","ENGTYPE_2":"District Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.06349182128906,43.25671005249035],[-79.00718688964844,42.983379364013786],[-78.91025543212885,42.89312744140625],[-79.10649108886719,42.85394287109381],[-79.4352035522461,42.8730087280274],[-79.51142883300781,42.96472549438471],[-79.75399017333973,43.05057144165039],[-79.62327575683594,43.22339630126959],[-79.31147766113276,43.182983398437614],[-79.06349182128906,43.25671005249035]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":151,"NAME_2":"Niagara","TYPE_2":"Regional Municipality","ENGTYPE_2":"Regional Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.41019439697266,47.05984497070324],[-79.1708145141601,46.82523345947271],[-78.9898681640625,46.54885482788086],[-78.6758422851562,46.318241119384766],[-78.403579711914,46.292743682861385],[-78.31864166259766,46.10362243652344],[-77.89041900634766,46.06019592285162],[-77.69203948974604,46.11324691772461],[-77.4982681274414,45.76427459716797],[-77.84117126464838,45.67254638671875],[-77.90985870361322,45.515777587890625],[-77.84758758544916,45.39564132690424],[-78.17829895019526,45.309883117675895],[-78.3148193359375,45.56107711791992],[-78.85942840576166,45.4144859313966],[-78.92816925048822,45.53271484375],[-79.13035583496088,45.751399993896484],[-79.3661041259765,46.24181747436529],[-79.83694458007807,46.20561218261719],[-80.17579650878895,46.105220794677734],[-80.30595397949213,46.10542678833008],[-80.28919982910156,47.0560417175293],[-80.2701797485351,47.234825134277344],[-79.63224029541016,47.23255538940441],[-79.
 63078308105469,47.05939102172863],[-79.41019439697266,47.05984497070324]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":152,"NAME_2":"Nipissing","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.64083099365229,44.25053787231445],[-77.74999237060547,44.2288055419923],[-77.65260314941406,44.017658233642635],[-78.43602752685547,43.909923553466854],[-78.50965118408203,44.08349227905279],[-78.2264175415039,44.132366180420036],[-77.72737884521484,44.43648529052746],[-77.64083099365229,44.25053787231445]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":153,"NAME_2":"Northumberland","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-76.35395812988281,45.410594940185604],[-76.29621887207026,45.464530944824276],[-76.20100402832031,45.51887893676758],[-75.8952407836914,45.40194702148443],[-75.34526824951172,45.53680419921881],[-75.34251403808594,45.53698348999018],[-75.24663543701166,45.36450576782238],[-75.42597198486328,45.31252288818371],[-75.35316467285145,45.182159423828125],[-75.59504699707031,45.084396362304744],[-75.82369995117182,44.96563339233404],[-76.35395812988281,45.410594940185604]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":154,"NAME_2":"Ottawa","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.47151947021479,43.26685714721674],[-80.60868072509766,43.15166091918945],[-80.54342651367182,42.98487091064453],[-80.50546264648432,42.88407135009771],[-80.744644165039,42.82400512695324],[-80.89876556396479,42.912651062011776],[-81.1322174072265,43.23147583007807],[-80.7357406616211,43.353359222412166],[-80.47151947021479,43.26685714721674]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":155,"NAME_2":"Oxford","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-78.92816925048822,45.53271484375],[-79.67251586914057,45.334396362304744],[-79.60629272460938,45.2148895263673],[-79.95734405517578,45.11901473999029],[-80.22365570068354,45.28136444091797],[-80.49453735351562,45.55379104614258],[-80.72999572753906,45.87170028686535],[-80.58184051513666,46.01425170898449],[-80.29659271240229,46.028038024902344],[-80.17579650878895,46.105220794677734],[-79.83694458007807,46.20561218261719],[-79.3661041259765,46.24181747436529],[-79.13035583496088,45.751399993896484],[-78.92816925048822,45.53271484375]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":156,"NAME_2":"Parry Sound","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.63922119140625,43.749900817871094],[-79.53954315185547,43.577121734619254],[-79.6184310913086,43.47646331787115],[-79.96907806396484,43.73443984985357],[-80.1398468017577,43.86157989501959],[-79.95116424560547,43.95149993896479],[-79.77551269531244,43.98978424072277],[-79.63922119140625,43.749900817871094]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":157,"NAME_2":"Peel","TYPE_2":"Regional Municipality","ENGTYPE_2":"Regional Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.7545547485351,43.64846420288097],[-80.86899566650385,43.4980926513673],[-80.7357406616211,43.353359222412166],[-81.1322174072265,43.23147583007807],[-81.36365509033203,43.26389312744135],[-81.44303894042957,43.424079895019645],[-81.14735412597656,43.613994598388615],[-80.9533081054687,43.822250366210994],[-80.7545547485351,43.64846420288097]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":158,"NAME_2":"Perth","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.9609756469726,44.91150283813488],[-77.72737884521484,44.43648529052746],[-78.2264175415039,44.132366180420036],[-78.50965118408203,44.08349227905279],[-78.51630401611322,44.098773956298885],[-78.584716796875,44.25260543823242],[-78.42554473876953,44.29048156738281],[-78.65482330322266,44.793972015380916],[-78.13822937011719,44.91461944580084],[-77.9609756469726,44.91150283813488]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":159,"NAME_2":"Peterborough","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-74.80789947509766,45.638389587402344],[-74.38127136230463,45.56610870361328],[-74.43836212158203,45.393798828125114],[-74.58139038085938,45.50944900512701],[-74.99349975585932,45.27698135375988],[-75.35316467285145,45.182159423828125],[-75.42597198486328,45.31252288818371],[-75.24663543701166,45.36450576782238],[-75.34251403808594,45.53698348999018],[-74.94300842285156,45.643405914306584],[-74.80789947509766,45.638389587402344]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":160,"NAME_2":"Prescott and Russell","TYPE_2":"United Counties","ENGTYPE_2":"United Counties","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.5995254516601,44.03105545043951],[-77.57982635498047,44.05227661132818],[-77.49251556396479,44.09883499145502],[-77.05229187011713,44.15363693237305],[-77.07373809814453,44.040966033935604],[-76.94282531738276,43.93532943725597],[-77.1457290649414,43.83756256103521],[-77.28701019287104,43.95558929443365],[-77.43048095703125,43.9261474609375],[-77.5995254516601,44.03105545043951]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":161,"NAME_2":"Prince Edward","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-90.96536254882807,49.019649505615234],[-90.96525573730463,48.222236633300724],[-91.39911651611317,48.057098388671875],[-91.6910629272461,48.12732315063488],[-91.98326110839844,48.260986328125],[-92.05484008789057,48.35908889770502],[-92.26251220703125,48.35475921630871],[-92.9472427368164,48.621395111083984],[-93.25643920898438,48.642494201660156],[-93.46788024902344,48.546634674072266],[-93.75177001953125,48.51976013183605],[-93.85050964355463,48.631637573242244],[-94.53514099121088,48.70233535766607],[-94.67808532714844,48.87779617309576],[-94.82109832763672,49.28782653808605],[-94.20381927490234,49.272331237793026],[-94.09485626220697,49.108154296875114],[-92.93409729003906,49.10578536987316],[-92.93700408935541,49.01935577392578],[-90.96536254882807,49.019649505615234]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":162,"NAME_2":"Rainy River","TYPE_2":"District","ENGTYPE_
 2":"District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.84087371826172,46.209167480468864],[-77.56607818603516,46.15922164916992],[-77.27633666992182,46.008541107177734],[-77.1903305053711,45.863861083984375],[-76.76689147949207,45.73269653320318],[-76.6600112915039,45.56063461303705],[-76.29621887207026,45.464530944824276],[-76.35395812988281,45.410594940185604],[-76.76980590820312,45.14228820800781],[-76.8147354125976,45.221401214599666],[-77.13748168945307,45.09925842285162],[-77.21580505371094,45.23703765869152],[-77.54143524169916,45.14424514770519],[-77.69095611572266,45.43811798095703],[-77.84758758544916,45.39564132690424],[-77.90985870361322,45.515777587890625],[-77.84117126464838,45.67254638671875],[-77.4982681274414,45.76427459716797],[-77.69203948974604,46.11324691772461],[-77.89041900634766,46.06019592285162],[-78.31864166259766,46.10362243652344],[-78.403579711914,46.292743682861385],[-77.84087371826172,46.209167480468864]]]},"properties":{"ID_0":42,"ISO":"
 CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":163,"NAME_2":"Renfrew","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.20856475830072,44.79644012451183],[-79.08186340332031,44.51581954956055],[-79.24244689941406,44.45978164672857],[-79.50897979736322,44.422367095947266],[-79.51019287109375,44.167900085449276],[-79.62562561035145,44.022029876708984],[-79.77551269531244,43.98978424072277],[-79.95116424560547,43.95149993896479],[-80.03395843505854,44.29485321044922],[-80.22907257080072,44.25338363647461],[-80.2917709350586,44.52654647827154],[-80.09867095947266,44.4630508422851],[-79.86962127685547,44.76942443847656],[-79.68791961669922,44.8289909362793],[-79.62577819824219,44.89443969726574],[-79.20856475830072,44.79644012451183]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":164,"NAME_2":"Simcoe","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-74.43836212158203,45.393798828125114],[-74.3460464477539,45.2066535949707],[-74.54844665527338,45.06237030029297],[-74.99223327636719,44.977695465088004],[-75.36289978027344,44.804901123046875],[-75.59504699707031,45.084396362304744],[-75.35316467285145,45.182159423828125],[-74.99349975585932,45.27698135375988],[-74.58139038085938,45.50944900512701],[-74.43836212158203,45.393798828125114]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":165,"NAME_2":"Stormont, Dundas and Glengarry","TYPE_2":"United Counties","ENGTYPE_2":"United Counties","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.85594940185541,48.27743530273443],[-81.85689544677734,48.10390090942383],[-81.07363891601562,48.1034507751466],[-81.07344055175781,47.32176208496105],[-80.2720718383789,47.32021331787121],[-80.2701797485351,47.234825134277344],[-80.28919982910156,47.0560417175293],[-80.30595397949213,46.10542678833008],[-80.17579650878895,46.105220794677734],[-80.29659271240229,46.028038024902344],[-80.58184051513666,46.01425170898449],[-80.6661529541015,46.1048202514649],[-80.95057678222656,46.19021224975597],[-81.306884765625,46.19977951049799],[-81.35722351074219,46.30588150024414],[-81.14427185058594,46.40723419189453],[-80.69296264648432,46.36099243164074],[-80.69409179687494,46.62478256225586],[-80.56436920166016,46.62453460693365],[-80.56079864501942,46.97088623046875],[-80.94814300537104,46.973266601562614],[-80.94888305664062,46.8866920471192],[-81.18344879150379,46.71545791625982],[-81.44462585449213,46.71510314941406],[-8
 1.4390869140625,46.49607849121105],[-81.56824493408197,46.49748229980469],[-81.56625366210926,46.27942276000982],[-81.4359512329101,46.19530868530279],[-81.61226654052734,46.102016448974666],[-81.66314697265614,46.09263229370117],[-81.79219055175781,46.098491668701286],[-81.795654296875,46.0987434387207],[-81.79637908935536,46.09879684448248],[-81.88936614990234,46.094085693359375],[-81.89067077636713,46.09444046020519],[-82.02223205566406,46.0979270935058],[-82.03418731689447,46.099399566650504],[-82.052505493164,46.09915924072277],[-82.05477905273438,46.100566864013786],[-82.31405639648438,46.1835289001466],[-82.31260681152344,46.18418884277355],[-82.31294250488281,46.277549743652344],[-82.06796264648432,46.36664581298828],[-82.06925201416016,46.62511825561518],[-81.94475555419916,46.625179290771484],[-81.94990539550776,46.97610473632818],[-82.57867431640614,46.9771461486817],[-82.57723236083979,47.235637664795036],[-83.97492980957026,47.23616027832031],[-83.97374725341797,47.9341
 0110473644],[-84.01457977294922,48.449623107910156],[-82.6413803100586,48.45061111450207],[-81.85658264160156,48.44988632202143],[-81.85594940185541,48.27743530273443]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":166,"NAME_2":"Sudbury","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-86.54795074462885,51.518321990966854],[-86.54909515380854,49.97011566162121],[-85.3329086303711,49.96954727172857],[-85.33157348632812,49.70986175537115],[-85.33299255371094,48.88674926757824],[-85.32950592041016,47.941482543945256],[-85.66680908203125,47.92053604125988],[-85.85192108154297,47.970932006835994],[-86.0877227783202,48.15876007080078],[-86.27072143554682,48.57621002197277],[-86.43611145019531,48.762767791748104],[-86.7058715820312,48.80750274658209],[-87.20655059814447,48.75482940673828],[-87.44567108154297,48.832321166992244],[-87.94973754882807,48.928737640380916],[-88.2295532226562,48.9185676574707],[-88.10655975341797,48.694641113281364],[-88.47541809082026,48.842849731445426],[-88.74526977539062,48.35118865966797],[-88.85787963867188,48.39690399169933],[-88.7967910766601,48.57225418090826],[-89.14452362060541,48.47675704956066],[-89.35064697265625,48.09034729003912],[-89.56343841552734,48.003421783447
 266],[-89.86762237548828,47.9980087280274],[-90.03350830078125,48.09634780883795],[-90.74224090576172,48.113662719726676],[-90.96525573730463,48.222236633300724],[-90.96536254882807,49.019649505615234],[-90.9655990600586,49.880332946777344],[-90.96450042724604,50.95826721191412],[-90.89153289794916,51.04275894165039],[-90.48971557617188,51.11663818359369],[-90.39427185058594,51.07692337036133],[-89.67530059814453,51.221138000488395],[-89.07510375976551,51.524074554443416],[-88.56448364257807,51.550296783447266],[-88.38541412353516,51.4761962890625],[-87.9720611572265,51.48647308349604],[-87.5177993774414,51.24048614501953],[-87.24625396728516,51.282440185546875],[-86.54795074462885,51.518321990966854]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":167,"NAME_2":"Thunder Bay","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.51762390136719,48.2762451171875],[-79.5174713134765,47.908275604248104],[-79.51707458496088,47.533164978027344],[-79.58103942871094,47.41511535644531],[-79.42684173583984,47.250068664550724],[-79.41019439697266,47.05984497070324],[-79.63078308105469,47.05939102172863],[-79.63224029541016,47.23255538940441],[-80.2701797485351,47.234825134277344],[-80.2720718383789,47.32021331787121],[-81.07344055175781,47.32176208496105],[-81.07363891601562,48.1034507751466],[-81.85689544677734,48.10390090942383],[-81.85594940185541,48.27743530273443],[-80.81279754638672,48.277160644531364],[-79.51762390136719,48.2762451171875]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":168,"NAME_2":"Timiskaming","TYPE_2":"District","ENGTYPE_2":"District","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.63922119140625,43.749900817871094],[-79.17031860351557,43.855449676513786],[-79.10551452636719,43.79283142089844],[-79.31358337402332,43.65275192260742],[-79.53954315185547,43.577121734619254],[-79.63922119140625,43.749900817871094]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":169,"NAME_2":"Toronto","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.20475769042963,43.39758682250982],[-80.23860931396479,43.30646514892578],[-80.47151947021479,43.26685714721674],[-80.7357406616211,43.353359222412166],[-80.86899566650385,43.4980926513673],[-80.7545547485351,43.64846420288097],[-80.55754089355463,43.68964004516607],[-80.20475769042963,43.39758682250982]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":170,"NAME_2":"Waterloo","TYPE_2":"Regional Municipality","ENGTYPE_2":"Regional Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-80.1398468017577,43.86157989501959],[-79.96907806396484,43.73443984985357],[-80.16036224365234,43.56111145019531],[-80.03428649902344,43.47107315063488],[-80.20475769042963,43.39758682250982],[-80.55754089355463,43.68964004516607],[-80.7545547485351,43.64846420288097],[-80.9533081054687,43.822250366210994],[-80.99166870117176,43.9864501953125],[-80.98904418945312,43.986770629882926],[-80.82693481445307,43.967914581298885],[-80.4383773803711,44.025974273681584],[-80.38841247558594,43.85819625854492],[-80.1398468017577,43.86157989501959]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":171,"NAME_2":"Wellington","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.17031860351557,43.855449676513786],[-79.63922119140625,43.749900817871094],[-79.77551269531244,43.98978424072277],[-79.62562561035145,44.022029876708984],[-79.51019287109375,44.167900085449276],[-79.50897979736322,44.422367095947266],[-79.24244689941406,44.45978164672857],[-79.15609741210932,44.26316452026373],[-79.32799530029297,44.22331619262701],[-79.17031860351557,43.855449676513786]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":9,"NAME_1":"Ontario","ID_2":172,"NAME_2":"York","TYPE_2":"Regional Municipality","ENGTYPE_2":"Regional Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-62.66874313354492,45.95894622802746],[-62.84169769287104,46.374065399170036],[-62.842090606689396,46.37510681152355],[-62.85387420654297,46.40611648559582],[-62.643890380859375,46.46333312988281],[-62.19499969482416,46.48305511474615],[-62.18305587768555,46.346942901611385],[-62.358333587646484,46.332500457763786],[-62.535556793212834,46.14777755737305],[-62.49972152709955,45.97888946533209],[-62.66874313354492,45.95894622802746]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":10,"NAME_1":"Prince Edward Island","ID_2":173,"NAME_2":"Kings","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-63.623523712158146,46.560276031494084],[-63.58958435058588,46.475555419921875],[-63.58894348144531,46.47383499145519],[-63.49446487426758,46.211666107177734],[-63.61972045898432,46.215000152588004],[-63.80166625976557,46.39555740356451],[-64.12030792236322,46.40226745605469],[-64.1100006103515,46.52611160278332],[-64.39778137207031,46.7241668701173],[-64.16222381591797,46.95111083984381],[-63.98777770996094,46.874168395996094],[-64.07700347900385,46.763679504394645],[-63.878990173339844,46.63922882080084],[-63.86916732788086,46.52333450317383],[-63.623523712158146,46.560276031494084]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":10,"NAME_1":"Prince Edward Island","ID_2":174,"NAME_2":"Prince","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-62.84169769287104,46.374065399170036],[-62.66874313354492,45.95894622802746],[-62.955833435058594,46.054164886474666],[-63.0405540466308,46.28027725219721],[-62.84169769287104,46.374065399170036]]],[[[-62.8638916015625,46.43435287475597],[-62.85581207275385,46.41132354736334],[-62.85387420654297,46.40611648559582],[-62.842090606689396,46.37510681152355],[-63.04944610595703,46.294166564941406],[-63.25111007690424,46.12888717651367],[-63.49446487426758,46.211666107177734],[-63.58894348144531,46.47383499145519],[-63.2691650390625,46.428611755371094],[-62.8638916015625,46.43435287475597]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":10,"NAME_1":"Prince Edward Island","ID_2":175,"NAME_2":"Queens","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-78.64379119873041,49.00024795532232],[-78.64721679687494,48.57452774047857],[-79.0826416015625,48.56120300292969],[-79.08248138427729,48.42966461181646],[-79.5173721313476,48.43159103393555],[-79.51798248291016,49.008884429931754],[-78.64379119873041,49.00024795532232]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":176,"NAME_2":"Abitibi-Ouest","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.06072998046875,49.00005722045904],[-77.14164733886719,48.863651275634766],[-77.138671875,48.574382781982536],[-77.56104278564453,48.50340652465826],[-77.56056213378906,48.287967681884766],[-78.0703125,48.28737640380865],[-78.30075836181635,48.34381103515631],[-78.54344177246094,48.24087524414074],[-78.53915405273438,48.43047332763683],[-78.64721679687494,48.57452774047857],[-78.64379119873041,49.00024795532232],[-77.06072998046875,49.00005722045904]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":177,"NAME_2":"Abitibi","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-72.31439971923828,45.59707260131836],[-72.45467376708984,45.45087051391607],[-72.62052154541016,45.5378990173341],[-72.7311172485351,45.59759521484375],[-72.7044448852539,45.759113311767635],[-72.57781982421875,45.75251388549799],[-72.31439971923828,45.59707260131836]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":178,"NAME_2":"Acton","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.52234649658192,47.76416397094738],[-74.88863372802734,47.76085281372076],[-74.55186462402338,47.51975250244152],[-74.42333984375,47.50307464599615],[-74.65398406982422,47.23275375366222],[-74.41170501708984,47.10399627685547],[-74.575927734375,46.99785614013683],[-74.43066406249994,46.896976470947266],[-74.51155853271484,46.67997741699219],[-74.34484100341791,46.54784774780285],[-74.478271484375,46.45361328125],[-74.64344787597656,46.34857940673834],[-75.03491210937494,46.31074142456066],[-75.07559204101562,46.21612548828125],[-75.17978668212879,46.1033935546875],[-75.40765380859375,46.097137451171875],[-75.40733337402332,45.972404479980526],[-75.7794342041015,45.98814773559576],[-75.74511718749994,46.43825912475586],[-75.75013732910156,46.836845397949276],[-75.86408233642578,46.80899047851568],[-76.13109588623047,46.923824310302734],[-76.09485626220703,47.190208435058594],[-75.79709625244135,47.317142486572266],[-7
 5.47341156005854,47.28083801269531],[-75.30799865722656,47.54507064819336],[-75.52234649658192,47.76416397094738]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":179,"NAME_2":"Antoine-Labelle","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-74.14099884033203,45.81975936889654],[-74.20840454101562,45.68696212768555],[-74.24089813232422,45.55182647705078],[-74.24497985839838,45.50643920898443],[-74.38127136230463,45.56610870361328],[-74.80789947509766,45.638389587402344],[-74.70886993408203,45.92953872680664],[-74.50163269042969,45.91157913208002],[-74.4230728149414,45.84624862670904],[-74.14099884033203,45.81975936889654]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":180,"NAME_2":"Argenteuil","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.62629699707026,46.024703979492244],[-71.46411895751953,45.816741943359375],[-71.76988983154291,45.88553237915045],[-71.86180877685547,45.798969268798885],[-72.09323120117188,45.797096252441406],[-72.32720184326172,45.96863555908209],[-72.30506896972656,46.03299331665045],[-72.21744537353516,46.19742965698248],[-71.89168548583979,46.326660156250114],[-71.81707763671875,46.138877868652344],[-71.62629699707026,46.024703979492244]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":181,"NAME_2":"Arthabaska","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.46411895751953,45.816741943359375],[-71.43667602539057,45.79874420166027],[-71.71594238281244,45.617221832275504],[-71.83218383789057,45.602043151855526],[-72.13275146484375,45.76151657104492],[-72.09323120117188,45.797096252441406],[-71.86180877685547,45.798969268798885],[-71.76988983154291,45.88553237915045],[-71.46411895751953,45.816741943359375]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":182,"NAME_2":"Asbestos","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-65.90628814697266,48.206432342529354],[-66.10138702392578,48.09249877929699],[-66.49668121337879,48.11030578613281],[-66.77474975585932,47.99764633178705],[-67.21704864501947,47.87736129760742],[-67.39452362060547,47.86846160888672],[-67.59805297851557,47.99989318847656],[-67.66793060302734,48.1167945861817],[-67.37501525878895,48.195308685302734],[-67.27786254882812,48.03192138671875],[-66.88363647460938,48.136196136474666],[-66.9754028320312,48.302669525146484],[-66.27983856201172,48.48323059082031],[-66.2251968383789,48.241741180420036],[-65.90628814697266,48.206432342529354]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":183,"NAME_2":"Avignon","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-72.03868103027344,46.55977630615246],[-71.88162231445312,46.450595855712834],[-71.89168548583979,46.326660156250114],[-72.21744537353516,46.19742965698248],[-72.5784912109375,46.259719848632926],[-72.2440795898437,46.40712356567383],[-72.03868103027344,46.55977630615246]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":184,"NAME_2":"B?cancour","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-70.29376220703125,46.05500411987316],[-70.26628875732422,45.88494110107433],[-70.41382598876953,45.796100616455135],[-70.8926010131836,45.7800674438476],[-70.89891815185541,45.8876953125],[-71.10651397705072,45.946002960205135],[-70.97005462646479,46.11584854125988],[-70.85958099365234,46.08426666259777],[-70.67308807373041,46.26269912719738],[-70.40830993652344,46.0321311950683],[-70.29376220703125,46.05500411987316]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":185,"NAME_2":"Beauce-Sartigan","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.69822692871088,45.229015350341854],[-73.75528717041004,45.16821670532232],[-74.18146514892572,45.19522094726574],[-74.09748077392578,45.295528411865234],[-73.83429718017578,45.33876419067394],[-73.69822692871088,45.229015350341854]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":186,"NAME_2":"Beauharnois-Salaberry","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-70.78416442871094,46.906944274902344],[-70.57994842529297,46.83499145507824],[-70.32432556152338,46.65748977661144],[-70.6217269897461,46.394180297851676],[-70.68881225585932,46.407081604003906],[-71.0603256225586,46.62386322021496],[-70.94808197021484,46.69856262207037],[-71.068603515625,46.83194351196289],[-70.78416442871094,46.906944274902344]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":187,"NAME_2":"Bellechasse","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-65.031982421875,48.106460571289006],[-65.33000946044922,48.00205612182617],[-65.81035614013672,48.1206626892091],[-65.90628814697266,48.206432342529354],[-66.2251968383789,48.241741180420036],[-66.27983856201172,48.48323059082031],[-65.94908142089832,48.567810058593864],[-65.50163269042969,48.67923355102545],[-65.50121307373041,48.679042816162166],[-64.95742797851557,48.328361511230526],[-65.13629913330078,48.24552536010748],[-65.031982421875,48.106460571289006]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":188,"NAME_2":"Bonaventure","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-72.87667846679688,45.283054351806754],[-72.64844512939447,45.251167297363224],[-72.46269989013672,45.307643890380916],[-72.48464965820312,45.00879669189453],[-73.16012573242188,45.01409149169922],[-72.9948120117187,45.33756637573248],[-72.87667846679688,45.283054351806754]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":189,"NAME_2":"Brome-Missisquoi","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.39014434814453,45.53736495971674],[-73.38676452636713,45.413116455078125],[-73.50922393798822,45.43526840209972],[-73.46041107177723,45.57696533203125],[-73.39014434814453,45.53736495971674]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":190,"NAME_2":"Champlain","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-69.8774642944336,48.17203521728527],[-69.71623229980469,48.12577819824219],[-69.90542602539062,47.76985168457031],[-70.12361145019531,47.65133285522461],[-70.21274566650385,47.508308410644645],[-70.46736145019526,47.612529754638786],[-70.52948760986328,47.71677780151373],[-70.52557373046864,48.000202178955135],[-70.25939941406239,48.000011444091854],[-70.1723022460937,48.12475967407232],[-69.95674896240234,48.05749130249035],[-69.8774642944336,48.17203521728527]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":191,"NAME_2":"Charlevoix-Est","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-70.52557373046864,48.000202178955135],[-70.52948760986328,47.71677780151373],[-70.46736145019526,47.612529754638786],[-70.21274566650385,47.508308410644645],[-70.4527740478515,47.42605590820324],[-70.61985778808588,47.22758483886719],[-70.71292114257812,47.25885772705078],[-71.40372467041016,47.950084686279354],[-71.40361022949213,48.000003814697266],[-70.52557373046864,48.000202178955135]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":192,"NAME_2":"Charlevoix","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.38961029052734,45.23489761352539],[-71.51103210449219,45.01343536376959],[-72.04026794433588,45.00656127929693],[-72.09800720214844,45.16095733642578],[-71.91927337646473,45.27035903930664],[-71.81569671630854,45.30583572387695],[-71.38961029052734,45.23489761352539]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":193,"NAME_2":"Coaticook","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.35526275634754,45.59717178344732],[-75.34526824951172,45.53680419921881],[-75.8952407836914,45.40194702148443],[-75.72306823730463,45.5475311279298],[-75.35526275634754,45.59717178344732]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":194,"NAME_2":"Communaut?-Urbaine-de-l'Outaouais","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.82506561279291,45.513816833496094],[-73.76752471923828,45.5097541809082],[-73.52646636962885,45.66592407226568],[-73.52641296386719,45.461235046386776],[-73.6278457641601,45.40982055664074],[-73.82506561279291,45.513816833496094]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":195,"NAME_2":"Communaut?-Urbaine-de-Montr?al","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.19453430175781,46.93994903564453],[-71.14083099365234,46.883888244628906],[-71.29314422607422,46.74730300903326],[-71.5213775634765,46.714687347412166],[-71.55327606201172,46.784149169921875],[-71.40497589111328,46.92419052124018],[-71.19453430175781,46.93994903564453]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":196,"NAME_2":"Communaut?-Urbaine-de-Qu?bec","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.06281280517572,46.17385864257818],[-73.1727447509765,46.101211547851676],[-73.32002258300776,45.85356140136719],[-73.39204406738281,45.905235290527344],[-73.27880859374994,46.013935089111385],[-73.4078521728515,46.12027740478521],[-73.4697036743164,46.40246963500982],[-73.33282470703125,46.49792480468756],[-73.16930389404297,46.38215637207037],[-73.21630096435547,46.278472900390625],[-73.06281280517572,46.17385864257818]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":197,"NAME_2":"D'Autray","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.068603515625,46.83194351196289],[-70.94808197021484,46.69856262207037],[-71.0603256225586,46.62386322021496],[-71.11919403076172,46.630043029785156],[-71.23027801513672,46.76361846923834],[-71.068603515625,46.83194351196289]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":198,"NAME_2":"Desjardins","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.8969039916991,45.617408752441406],[-73.84337615966791,45.58303833007807],[-73.9006576538086,45.5251922607423],[-74.00173950195312,45.45243835449219],[-74.24497985839838,45.50643920898443],[-74.24089813232422,45.55182647705078],[-74.115737915039,45.51667785644531],[-73.8969039916991,45.617408752441406]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":199,"NAME_2":"Deux-Montagnes","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-72.30506896972656,46.03299331665045],[-72.32720184326172,45.96863555908209],[-72.09323120117188,45.797096252441406],[-72.13275146484375,45.76151657104492],[-72.31439971923828,45.59707260131836],[-72.57781982421875,45.75251388549799],[-72.7044448852539,45.759113311767635],[-72.85440063476562,45.87800216674816],[-72.79972076416016,46.01392364501953],[-72.30506896972656,46.03299331665045]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":200,"NAME_2":"Drummond","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-72.09049987792969,46.5765762329101],[-72.29595184326166,46.43085098266607],[-72.71916961669922,46.27178955078119],[-72.8521728515625,46.45295333862305],[-72.67908477783203,46.41123962402344],[-72.58491516113276,46.622871398925895],[-72.28668975830072,46.71760940551769],[-72.09049987792969,46.5765762329101]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":201,"NAME_2":"Francheville","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.4078521728515,46.12027740478521],[-73.27880859374994,46.013935089111385],[-73.39204406738281,45.905235290527344],[-73.45636749267572,45.943759918213004],[-73.61055755615234,46.05927658081055],[-73.4078521728515,46.12027740478521]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":202,"NAME_2":"Joliette","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-69.3331298828125,47.645832061767635],[-69.58854675292969,47.431304931640625],[-69.39196014404297,47.298362731933594],[-69.62532043457031,47.06704330444347],[-70.09815979003906,47.341018676757926],[-69.66195678710938,47.727306365966854],[-69.3331298828125,47.645832061767635]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":203,"NAME_2":"Kamouraska","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.41400909423822,46.2900009155274],[-71.62629699707026,46.024703979492244],[-71.81707763671875,46.138877868652344],[-71.89168548583979,46.326660156250114],[-71.88162231445312,46.450595855712834],[-71.61809539794916,46.452571868896484],[-71.41400909423822,46.2900009155274]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":204,"NAME_2":"L'?rable","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.10494995117188,46.3092041015625],[-70.97005462646479,46.11584854125988],[-71.10651397705072,45.946002960205135],[-71.1332778930664,45.857410430908146],[-71.39371490478516,45.76979064941406],[-71.43667602539057,45.79874420166027],[-71.46411895751953,45.816741943359375],[-71.62629699707026,46.024703979492244],[-71.41400909423822,46.2900009155274],[-71.10494995117188,46.3092041015625]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":205,"NAME_2":"L'Amiante","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.39204406738281,45.905235290527344],[-73.32002258300776,45.85356140136719],[-73.4949722290039,45.708774566650504],[-73.57857513427734,45.82128524780279],[-73.45636749267572,45.943759918213004],[-73.39204406738281,45.905235290527344]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":206,"NAME_2":"L'Assomption","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":null,"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":207,"NAME_2":"L'?le-d'Orl?ans","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-70.09815979003906,47.341018676757926],[-69.62532043457031,47.06704330444347],[-69.96186065673828,46.73311614990246],[-70.43310546875,47.07973480224604],[-70.09815979003906,47.341018676757926]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":208,"NAME_2":"L'Islet","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.40372467041016,47.950084686279354],[-70.71292114257812,47.25885772705078],[-70.61985778808588,47.22758483886719],[-70.71583557128906,47.10827636718756],[-71.0570220947265,46.928054809570426],[-71.05722045898432,46.92824554443371],[-71.14083099365234,46.883888244628906],[-71.19453430175781,46.93994903564453],[-71.08596801757812,47.05043792724615],[-71.25114440917969,47.1538352966308],[-71.89256286621088,47.772567749023494],[-72.07392883300776,47.9502410888673],[-71.40372467041016,47.950084686279354]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":209,"NAME_2":"La C?te-de-Beaupr?","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.25702667236328,48.69668579101568],[-65.50121307373041,48.679042816162166],[-65.50163269042969,48.67923355102545],[-65.52666473388666,48.999004364013615],[-65.3091049194336,48.99913024902344],[-65.19541931152344,49.229862213134766],[-64.6007461547851,49.10899734497076],[-64.21247100830078,48.87422180175781],[-64.25702667236328,48.69668579101568]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":210,"NAME_2":"La C?te-de-Gasp?","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-68.68667602539057,48.92826461791992],[-68.6862564086914,48.928203582763786],[-69.06168365478504,48.75009918212896],[-69.4247207641601,48.29967117309576],[-69.71623229980469,48.12577819824219],[-69.8774642944336,48.17203521728527],[-70.06777191162104,48.26432037353521],[-70.00849914550781,48.357955932617244],[-70.02563476562494,50.00003051757824],[-69.51136779785156,50.00001525878912],[-69.39073181152344,49.760864257812614],[-69.14331817626942,49.599826812744084],[-69.14612579345703,49.08289718627941],[-68.87223052978516,49.081222534179744],[-68.68667602539057,48.92826461791992]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":211,"NAME_2":"La Haute-C?te-Nord","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-65.19541931152344,49.229862213134766],[-65.3091049194336,48.99913024902344],[-65.52666473388666,48.999004364013615],[-65.50163269042969,48.67923355102545],[-65.94908142089832,48.567810058593864],[-66.1066665649414,48.673641204833984],[-66.53691864013666,48.95695114135748],[-66.90926361083984,49.03413772583008],[-66.05694580078125,49.22111129760748],[-65.56639099121094,49.25722122192394],[-65.19541931152344,49.229862213134766]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":212,"NAME_2":"La Haute-Gasp?sie","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":"Denis-Riverin"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-72.62052154541016,45.5378990173341],[-72.45467376708984,45.45087051391607],[-72.46302032470697,45.3751792907716],[-72.46269989013672,45.307643890380916],[-72.64844512939447,45.251167297363224],[-72.87667846679688,45.283054351806754],[-72.81719970703125,45.47275543212902],[-72.62052154541016,45.5378990173341]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":213,"NAME_2":"La Haute-Yamaska","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.19453430175781,46.93994903564453],[-71.40497589111328,46.92419052124018],[-71.55327606201172,46.784149169921875],[-71.71531677246094,46.855590820312614],[-71.63270568847656,46.986930847168026],[-71.81462097167963,47.11225891113287],[-71.63153839111322,47.191184997558594],[-71.81466674804688,47.328079223632756],[-72.1659164428711,47.38855743408203],[-72.23667907714844,47.538051605224666],[-71.89256286621088,47.772567749023494],[-71.25114440917969,47.1538352966308],[-71.08596801757812,47.05043792724615],[-71.19453430175781,46.93994903564453]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":214,"NAME_2":"La Jacques-Cartier","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-66.1066665649414,48.673641204833984],[-65.94908142089832,48.567810058593864],[-66.27983856201172,48.48323059082031],[-66.9754028320312,48.302669525146484],[-66.88363647460938,48.136196136474666],[-67.27786254882812,48.03192138671875],[-67.37501525878895,48.195308685302734],[-67.66793060302734,48.1167945861817],[-67.69031524658203,48.32550048828131],[-67.96220397949219,48.53590774536127],[-67.86780548095703,48.6588020324707],[-67.760986328125,48.715385437011776],[-67.53644561767572,48.615730285644474],[-67.42382049560541,48.700210571289176],[-67.13161468505854,48.542232513427734],[-66.84179687499994,48.617557525634766],[-66.5783081054687,48.741786956787166],[-66.29020690917957,48.62738800048828],[-66.1066665649414,48.673641204833984]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":215,"NAME_2":"La Matap?dia","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County 
 Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-67.86780548095703,48.6588020324707],[-67.96220397949219,48.53590774536127],[-67.69031524658203,48.32550048828131],[-67.66793060302734,48.1167945861817],[-67.59805297851557,47.99989318847656],[-67.94956970214838,47.99994277954096],[-67.94792175292969,48.10405349731457],[-68.25704956054682,48.293514251708984],[-68.18319702148438,48.348606109619084],[-68.42562866210938,48.52854156494152],[-67.94833374023432,48.691963195800895],[-67.86780548095703,48.6588020324707]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":216,"NAME_2":"La Mitis","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.0603256225586,46.62386322021496],[-70.68881225585932,46.407081604003906],[-71.1028213500976,46.35831069946289],[-71.21526336669916,46.54086685180664],[-71.11919403076172,46.630043029785156],[-71.0603256225586,46.62386322021496]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":217,"NAME_2":"La Nouvelle-Beauce","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.83267211914057,45.45312881469732],[-71.81569671630854,45.30583572387695],[-71.91927337646473,45.27035903930664],[-71.9199447631836,45.28087615966808],[-71.91461181640625,45.30711364746094],[-72.1439361572265,45.39825439453125],[-71.99097442626947,45.515872955322266],[-71.83267211914057,45.45312881469732]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":218,"NAME_2":"La R?gion-Sherbrookoise","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.8065414428711,45.82091140747076],[-73.82402038574213,45.816913604736385],[-73.91202545166016,45.76605224609381],[-74.20840454101562,45.68696212768555],[-74.14099884033203,45.81975936889654],[-74.00212097167969,45.997764587402344],[-73.97577667236317,45.97910308837896],[-73.8065414428711,45.82091140747076]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":219,"NAME_2":"La Rivi?re-du-Nord","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.52045440673828,47.846332550048885],[-75.52234649658192,47.76416397094738],[-75.30799865722656,47.54507064819336],[-75.47341156005854,47.28083801269531],[-75.79709625244135,47.317142486572266],[-76.09485626220703,47.190208435058594],[-76.13109588623047,46.923824310302734],[-75.86408233642578,46.80899047851568],[-75.75013732910156,46.836845397949276],[-75.74511718749994,46.43825912475586],[-75.7794342041015,45.98814773559576],[-75.73635101318348,45.82443618774414],[-76.15093994140625,45.803558349609375],[-76.15311431884766,46.02262115478521],[-76.31937408447266,46.02476882934576],[-76.31749725341791,46.26446533203131],[-76.48000335693354,46.24168777465832],[-76.54382324218744,46.427913665771484],[-76.7968521118164,46.6402206420899],[-76.7967758178711,47.00004959106457],[-76.99987030029291,47.000000000000114],[-77.00371551513672,47.14545822143555],[-77.00294494628906,47.28918838500982],[-76.5752182006836,47.28801345825
 201],[-76.57344818115234,47.60082626342779],[-76.24459838867188,47.7173309326173],[-76.02371978759766,47.72278594970709],[-75.72488403320307,47.84794998168945],[-75.52045440673828,47.846332550048885]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":220,"NAME_2":"La Vall?e-de-la-Gatineau","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.12359619140625,45.8179817199707],[-73.13878631591797,45.574054718017635],[-73.07263183593744,45.47595214843756],[-73.2525634765625,45.3848876953125],[-73.38676452636713,45.413116455078125],[-73.39014434814453,45.53736495971674],[-73.28892517089838,45.5751838684082],[-73.18470001220692,45.86185836791992],[-73.12359619140625,45.8179817199707]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":221,"NAME_2":"La Vall?e-du-Richelieu","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.46800994873047,48.851821899414176],[-71.37290954589832,48.780635833740234],[-71.63964080810541,48.1869354248048],[-71.40361022949213,48.000003814697266],[-71.40372467041016,47.950084686279354],[-72.07392883300776,47.9502410888673],[-72.12320709228516,47.999279022216854],[-71.92752838134766,48.110862731933594],[-71.88425445556635,48.297573089599666],[-72.10218048095697,48.73078536987316],[-71.6557846069336,48.75696182250971],[-71.46800994873047,48.851821899414176]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":222,"NAME_2":"Lac-Saint-Jean-Est","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.18470001220692,45.86185836791992],[-73.28892517089838,45.5751838684082],[-73.39014434814453,45.53736495971674],[-73.46041107177723,45.57696533203125],[-73.17575073242188,45.976863861083984],[-73.18470001220692,45.86185836791992]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":223,"NAME_2":"Lajemmerais","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.82506561279291,45.513816833496094],[-73.9006576538086,45.5251922607423],[-73.84337615966791,45.58303833007807],[-73.74662017822266,45.67021942138672],[-73.52497100830067,45.701934814453125],[-73.76752471923828,45.5097541809082],[-73.82506561279291,45.513816833496094]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":224,"NAME_2":"Laval","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-72.79972076416016,46.01392364501953],[-72.85440063476562,45.87800216674816],[-73.12359619140625,45.8179817199707],[-73.18470001220692,45.86185836791992],[-73.17575073242188,45.976863861083984],[-72.97468566894526,46.09926223754877],[-72.79972076416016,46.01392364501953]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":225,"NAME_2":"Le Bas-Richelieu","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-72.58491516113276,46.622871398925895],[-72.67908477783203,46.41123962402344],[-72.8521728515625,46.45295333862305],[-73.09513854980463,46.5362167358399],[-73.15320587158197,46.84557723999035],[-72.93334197998047,46.899772644043026],[-72.6878433227539,46.64855957031256],[-72.58491516113276,46.622871398925895]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":226,"NAME_2":"Le Centre-de-la-Mauricie","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-72.10218048095697,48.73078536987316],[-71.88425445556635,48.297573089599666],[-71.92752838134766,48.110862731933594],[-72.12320709228516,47.999279022216854],[-73.01640319824219,47.99872207641607],[-74.44389343261719,48.92928314208996],[-74.3274154663086,48.93649673461914],[-74.25003051757807,49.15081787109381],[-74.43025207519531,49.32558059692383],[-74.39299011230463,49.46914291381847],[-74.00485229492182,49.80595397949219],[-73.81532287597656,50.02605438232422],[-73.56108856201166,49.89554595947277],[-73.57740020751947,49.74688720703131],[-73.46368408203125,49.566085815429744],[-73.33819580078125,49.5313835144043],[-73.36690521240234,49.209838867187614],[-73.14247131347656,49.152336120605526],[-73.10662841796875,49.01062774658209],[-72.87265777587879,48.87390136718756],[-72.69265747070312,48.85068511962902],[-72.31980133056635,48.678302764892635],[-72.10218048095697,48.73078536987316]]]},"properties":{"ID_0":42,"ISO"
 :"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":227,"NAME_2":"Le Domaine-du-Roy","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-70.02481842041016,51.562488555908146],[-70.02563476562494,50.00003051757824],[-70.00849914550781,48.357955932617244],[-70.06777191162104,48.26432037353521],[-69.8774642944336,48.17203521728527],[-69.95674896240234,48.05749130249035],[-70.1723022460937,48.12475967407232],[-70.25939941406239,48.000011444091854],[-70.52557373046864,48.000202178955135],[-71.40361022949213,48.000003814697266],[-71.63964080810541,48.1869354248048],[-71.37290954589832,48.780635833740234],[-71.46800994873047,48.851821899414176],[-71.27753448486322,49.12030792236334],[-71.17064666748047,49.82534027099621],[-71.27208709716791,49.89405822753906],[-71.2500610351562,50.21682357788097],[-71.35974121093744,50.338451385498104],[-71.2897720336914,50.50635528564453],[-71.34362030029291,51.03170394897461],[-71.51458740234375,51.234268188476676],[-71.42770385742188,51.60626220703119],[-71.10307312011719,52.11861801147472],[-70.85824584960938,52.2690811157
 22656],[-70.29183197021484,52.3485221862793],[-70.17528533935536,52.594417572021484],[-70.02391815185541,52.69635772705078],[-70.02481842041016,51.562488555908146]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":228,"NAME_2":"Le Fjord-du-Saguenay","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-70.41382598876953,45.796100616455135],[-70.64588165283203,45.604110717773494],[-70.80664825439453,45.3211402893067],[-71.13153839111317,45.26422882080084],[-71.20723724365229,45.64249420166027],[-71.39371490478516,45.76979064941406],[-71.1332778930664,45.857410430908146],[-71.10651397705072,45.946002960205135],[-70.89891815185541,45.8876953125],[-70.8926010131836,45.7800674438476],[-70.41382598876953,45.796100616455135]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":229,"NAME_2":"Le Granit","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.2525634765625,45.3848876953125],[-72.9948120117187,45.33756637573248],[-73.16012573242188,45.01409149169922],[-73.41180419921875,45.00891494750982],[-73.3518829345702,45.23427581787115],[-73.40989685058594,45.32923889160156],[-73.38676452636713,45.413116455078125],[-73.2525634765625,45.3848876953125]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":230,"NAME_2":"Le Haut-Richelieu","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.13153839111317,45.26422882080084],[-71.38961029052734,45.23489761352539],[-71.81569671630854,45.30583572387695],[-71.83267211914057,45.45312881469732],[-71.71594238281244,45.617221832275504],[-71.43667602539057,45.79874420166027],[-71.39371490478516,45.76979064941406],[-71.20723724365229,45.64249420166027],[-71.13153839111317,45.26422882080084]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":231,"NAME_2":"Le Haut-Saint-Fran?ois","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.75528717041004,45.16821670532232],[-73.69486236572266,45.003635406494254],[-74.15013122558594,44.99119567871088],[-74.48428344726562,45.035945892333984],[-74.18146514892572,45.19522094726574],[-73.75528717041004,45.16821670532232]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":232,"NAME_2":"Le Haut-Saint-Laurent","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-74.44389343261719,48.92928314208996],[-73.01640319824219,47.99872207641607],[-72.12320709228516,47.999279022216854],[-72.07392883300776,47.9502410888673],[-71.89256286621088,47.772567749023494],[-72.23667907714844,47.538051605224666],[-72.1659164428711,47.38855743408203],[-72.2807388305664,47.27481842041027],[-72.54756927490234,47.30966949462896],[-72.537109375,47.18370819091797],[-72.70954895019526,47.0617561340332],[-72.94408416748041,47.21359252929699],[-73.2311401367187,47.16556930541998],[-73.73618316650385,47.496929168701286],[-73.95394134521484,47.38690567016613],[-74.51234436035156,47.76148223876953],[-74.88863372802734,47.76085281372076],[-75.52234649658192,47.76416397094738],[-75.52045440673828,47.846332550048885],[-75.52506256103516,49.00003051757824],[-74.67628479003906,49.00006866455078],[-74.44389343261719,48.92928314208996]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?b
 ec","ID_2":233,"NAME_2":"Le Haut-Saint-Maurice","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.25702667236328,48.69668579101568],[-64.22735595703125,48.501396179199276],[-64.34083557128906,48.41916656494146],[-64.68861389160156,48.334720611572266],[-64.77361297607422,48.205638885498104],[-65.031982421875,48.106460571289006],[-65.13629913330078,48.24552536010748],[-64.95742797851557,48.328361511230526],[-65.50121307373041,48.679042816162166],[-64.25702667236328,48.69668579101568]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":234,"NAME_2":"Le Rocher-Perc?","TYPE_2":"Municipalit? R?gionale de Comt?","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":"Pabok"}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.71594238281244,45.617221832275504],[-71.83267211914057,45.45312881469732],[-71.99097442626947,45.515872955322266],[-72.1439361572265,45.39825439453125],[-72.46302032470697,45.3751792907716],[-72.45467376708984,45.45087051391607],[-72.31439971923828,45.59707260131836],[-72.13275146484375,45.76151657104492],[-71.83218383789057,45.602043151855526],[-71.71594238281244,45.617221832275504]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":235,"NAME_2":"Le Val-Saint-Fran?ois","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":null,"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":236,"NAME_2":"Les ?les-de-la-Madeleine","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-68.65942382812489,48.06577301025396],[-68.91452789306629,47.8908042907716],[-69.18680572509754,47.88509750366222],[-69.2684555053711,48.084735870361385],[-68.97389221191406,48.27222061157232],[-68.65942382812489,48.06577301025396]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":237,"NAME_2":"Les Basques","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.11919403076172,46.630043029785156],[-71.21526336669916,46.54086685180664],[-71.50090026855469,46.68702697753906],[-71.23027801513672,46.76361846923834],[-71.11919403076172,46.630043029785156]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":238,"NAME_2":"Les Chutes-de-la-Chaudi?re","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.35526275634754,45.59717178344732],[-75.72306823730463,45.5475311279298],[-75.8952407836914,45.40194702148443],[-76.20100402832031,45.51887893676758],[-76.29621887207026,45.464530944824276],[-76.32515716552734,45.800315856933594],[-76.15093994140625,45.803558349609375],[-75.73635101318348,45.82443618774414],[-75.51060485839838,45.84596633911127],[-75.4893569946289,45.70664978027344],[-75.35526275634754,45.59717178344732]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":239,"NAME_2":"Les Collines-de-l'Outaouais","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-70.0460586547851,46.46396636962896],[-70.292007446289,46.190940856933594],[-70.29376220703125,46.05500411987316],[-70.40830993652344,46.0321311950683],[-70.67308807373041,46.26269912719738],[-70.6217269897461,46.394180297851676],[-70.32432556152338,46.65748977661144],[-70.0460586547851,46.46396636962896]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":240,"NAME_2":"Les Etchemins","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.41180419921875,45.00891494750982],[-73.69486236572266,45.003635406494254],[-73.75528717041004,45.16821670532232],[-73.69822692871088,45.229015350341854],[-73.63384246826172,45.31490707397472],[-73.40989685058594,45.32923889160156],[-73.3518829345702,45.23427581787115],[-73.41180419921875,45.00891494750982]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":241,"NAME_2":"Les Jardins-de-Napierville","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-74.07615661621094,46.11785888671869],[-74.50163269042969,45.91157913208002],[-74.70886993408203,45.92953872680664],[-74.83135223388672,45.973541259765625],[-75.07559204101562,46.21612548828125],[-75.03491210937494,46.31074142456066],[-74.64344787597656,46.34857940673834],[-74.478271484375,46.45361328125],[-74.41334533691406,46.29662704467785],[-74.07615661621094,46.11785888671869]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":242,"NAME_2":"Les Laurentides","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-72.85440063476562,45.87800216674816],[-72.7044448852539,45.759113311767635],[-72.7311172485351,45.59759521484375],[-72.62052154541016,45.5378990173341],[-72.81719970703125,45.47275543212902],[-73.07263183593744,45.47595214843756],[-73.13878631591797,45.574054718017635],[-73.12359619140625,45.8179817199707],[-72.85440063476562,45.87800216674816]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":243,"NAME_2":"Les Maskoutains","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.57857513427734,45.82128524780279],[-73.4949722290039,45.708774566650504],[-73.52497100830067,45.701934814453125],[-73.74662017822266,45.67021942138672],[-73.82402038574213,45.816913604736385],[-73.8065414428711,45.82091140747076],[-73.57857513427734,45.82128524780279]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":244,"NAME_2":"Les Moulins","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-74.00212097167969,45.997764587402344],[-74.14099884033203,45.81975936889654],[-74.4230728149414,45.84624862670904],[-74.50163269042969,45.91157913208002],[-74.07615661621094,46.11785888671869],[-74.00212097167969,45.997764587402344]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":245,"NAME_2":"Les Pays-d'en-Haut","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.21526336669916,46.54086685180664],[-71.1028213500976,46.35831069946289],[-71.10494995117188,46.3092041015625],[-71.41400909423822,46.2900009155274],[-71.61809539794916,46.452571868896484],[-71.88162231445312,46.450595855712834],[-72.03868103027344,46.55977630615246],[-71.6534194946289,46.61681365966808],[-71.50090026855469,46.68702697753906],[-71.21526336669916,46.54086685180664]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":246,"NAME_2":"Lotbini?re","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-72.537109375,47.18370819091797],[-72.43620300292969,47.057262420654354],[-72.16890716552729,46.87487411499029],[-72.28668975830072,46.71760940551769],[-72.58491516113276,46.622871398925895],[-72.6878433227539,46.64855957031256],[-72.93334197998047,46.899772644043026],[-73.15320587158197,46.84557723999035],[-73.41914367675781,46.886394500732536],[-73.67655944824219,46.97348785400402],[-73.85796356201166,47.14188003540039],[-74.02847290039062,47.176132202148494],[-73.95394134521484,47.38690567016613],[-73.73618316650385,47.496929168701286],[-73.2311401367187,47.16556930541998],[-72.94408416748041,47.21359252929699],[-72.70954895019526,47.0617561340332],[-72.537109375,47.18370819091797]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":247,"NAME_2":"M?kinac","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-68.68667602539057,48.92826461791992],[-68.87223052978516,49.081222534179744],[-69.14612579345703,49.08289718627941],[-69.14331817626942,49.599826812744084],[-69.39073181152344,49.760864257812614],[-69.51136779785156,50.00001525878912],[-70.02563476562494,50.00003051757824],[-70.02481842041016,51.562488555908146],[-67.92475891113281,51.56353378295904],[-67.85391235351557,51.402542114257926],[-67.92362213134766,51.29987716674805],[-67.64384460449213,50.999801635742244],[-67.74201965332031,50.8319931030274],[-67.78538513183594,50.49991607666021],[-67.53009796142578,49.849716186523494],[-67.58374023437494,49.58975601196289],[-67.23361206054688,49.58897018432617],[-67.2308349609375,49.47694396972656],[-67.38416290283197,49.316112518310604],[-68.1263656616211,49.270774841308594],[-68.1905517578125,49.099445343017635],[-68.57522583007812,49.06093978881847],[-68.68667602539057,48.92826461791992]]]},"properties":{"ID_0":42,"ISO
 ":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":248,"NAME_2":"Manicouagan","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.46800994873047,48.851821899414176],[-71.6557846069336,48.75696182250971],[-72.10218048095697,48.73078536987316],[-72.31980133056635,48.678302764892635],[-72.69265747070312,48.85068511962902],[-72.87265777587879,48.87390136718756],[-73.10662841796875,49.01062774658209],[-73.14247131347656,49.152336120605526],[-73.36690521240234,49.209838867187614],[-73.33819580078125,49.5313835144043],[-73.46368408203125,49.566085815429744],[-73.57740020751947,49.74688720703131],[-73.56108856201166,49.89554595947277],[-73.81532287597656,50.02605438232422],[-73.77205657958979,50.21634292602539],[-73.38762664794916,50.48435974121088],[-73.2210464477539,50.70661544799816],[-72.43779754638672,50.782222747802734],[-71.8642807006836,51.349159240722656],[-71.59137725830072,51.49520492553711],[-71.57112121582031,51.81382751464844],[-71.37797546386719,51.854469299316406],[-71.14038848876947,52.16998291015631],[-70.85824584960938,52.2690811157
 22656],[-71.10307312011719,52.11861801147472],[-71.42770385742188,51.60626220703119],[-71.51458740234375,51.234268188476676],[-71.34362030029291,51.03170394897461],[-71.2897720336914,50.50635528564453],[-71.35974121093744,50.338451385498104],[-71.2500610351562,50.21682357788097],[-71.27208709716791,49.89405822753906],[-71.17064666748047,49.82534027099621],[-71.27753448486322,49.12030792236334],[-71.46800994873047,48.851821899414176]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":249,"NAME_2":"Maria-Chapdelaine","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.15320587158197,46.84557723999035],[-73.09513854980463,46.5362167358399],[-72.8521728515625,46.45295333862305],[-72.71916961669922,46.27178955078119],[-73.06281280517572,46.17385864257818],[-73.21630096435547,46.278472900390625],[-73.16930389404297,46.38215637207037],[-73.33282470703125,46.49792480468756],[-73.46273803710938,46.70709991455078],[-73.41914367675781,46.886394500732536],[-73.15320587158197,46.84557723999035]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":250,"NAME_2":"Maskinong?","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-66.90926361083984,49.03413772583008],[-66.53691864013666,48.95695114135748],[-66.1066665649414,48.673641204833984],[-66.29020690917957,48.62738800048828],[-66.5783081054687,48.741786956787166],[-66.84179687499994,48.617557525634766],[-67.13161468505854,48.542232513427734],[-67.42382049560541,48.700210571289176],[-67.53644561767572,48.615730285644474],[-67.760986328125,48.715385437011776],[-67.86780548095703,48.6588020324707],[-67.94833374023432,48.691963195800895],[-67.86666870117188,48.73805618286144],[-66.90926361083984,49.03413772583008]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":251,"NAME_2":"Matane","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.95394134521484,47.38690567016613],[-74.02847290039062,47.176132202148494],[-73.85796356201166,47.14188003540039],[-73.67655944824219,46.97348785400402],[-73.41914367675781,46.886394500732536],[-73.46273803710938,46.70709991455078],[-73.33282470703125,46.49792480468756],[-73.4697036743164,46.40246963500982],[-73.4078521728515,46.12027740478521],[-73.61055755615234,46.05927658081055],[-73.97577667236317,45.97910308837896],[-74.00212097167969,45.997764587402344],[-74.07615661621094,46.11785888671869],[-74.41334533691406,46.29662704467785],[-74.478271484375,46.45361328125],[-74.34484100341791,46.54784774780285],[-74.51155853271484,46.67997741699219],[-74.43066406249994,46.896976470947266],[-74.575927734375,46.99785614013683],[-74.41170501708984,47.10399627685547],[-74.65398406982422,47.23275375366222],[-74.42333984375,47.50307464599615],[-74.55186462402338,47.51975250244152],[-74.88863372802734,47.76085281372076],[-74.5
 1234436035156,47.76148223876953],[-73.95394134521484,47.38690567016613]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":252,"NAME_2":"Matawinie","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.91461181640625,45.30711364746094],[-71.9199447631836,45.28087615966808],[-71.91927337646473,45.27035903930664],[-72.09800720214844,45.16095733642578],[-72.04026794433588,45.00656127929693],[-72.48464965820312,45.00879669189453],[-72.46269989013672,45.307643890380916],[-72.46302032470697,45.3751792907716],[-72.1439361572265,45.39825439453125],[-71.91461181640625,45.30711364746094]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":253,"NAME_2":"Memphr?magog","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-64.14816284179676,49.9517707824707],[-63.92084884643555,49.88623046875],[-63.081417083740234,49.76710128784174],[-62.51338577270508,49.58822250366211],[-62.394443511962834,49.48416519165045],[-61.894474029541016,49.351219177246094],[-61.66871643066406,49.139389038085994],[-61.81195831298828,49.0768928527832],[-62.24428939819336,49.0625267028808],[-62.93461608886719,49.19170379638683],[-63.569168090820256,49.389999389648494],[-63.66055679321289,49.53610992431646],[-63.982635498046875,49.69745635986334],[-64.2476959228515,49.75149917602539],[-64.46583557128906,49.911945343017635],[-64.14816284179676,49.9517707824707]]],[[[-57.10839843749994,51.42510986328125],[-57.26091384887684,51.4983482360841],[-57.77388763427729,51.42277908325201],[-58.00915908813471,51.308738708496094],[-58.307106018066406,51.26093673706049],[-58.42913818359369,51.31390762329113],[-58.641742706298714,51.136947631835994],[-58.96888732910156,51.
 00083160400402],[-58.97095489501953,50.81479644775396],[-59.12068557739258,50.79293060302746],[-59.460506439208984,50.62062454223644],[-59.58000183105469,50.47499847412121],[-59.8191299438476,50.42932128906256],[-59.852523803710824,50.31430053710943],[-60.54333496093744,50.21222305297863],[-60.7511100769043,50.23777770996094],[-61.45957565307617,50.16277313232416],[-61.75026321411133,50.08623123168945],[-61.873649597167855,50.22325897216797],[-62.421302795410156,50.27916717529297],[-63.16388702392578,50.286666870117244],[-63.406665802001896,50.201389312744254],[-63.81682968139643,50.30284500122082],[-64.16777801513666,50.25555419921881],[-64.41999816894531,50.31635284423828],[-64.86888885498047,50.262779235839844],[-65.34915924072266,50.30376052856451],[-65.5444564819336,50.27194976806646],[-65.5,50.36972808837885],[-65.49999237060536,52.11034774780279],[-65.18606567382812,51.77560424804699],[-64.92467498779297,51.77785873413086],[-64.65354919433594,51.70153427124018],[-64.554359436
 03516,51.5758056640625],[-64.27828979492188,51.74637985229492],[-64.34169006347656,51.98590087890631],[-64.10923004150385,52.39405822753906],[-64.1242218017577,52.732048034668026],[-63.66006469726557,52.81123733520508],[-63.429420471191406,52.6455192565918],[-63.850959777831974,52.62247085571295],[-64.0379409790039,52.560955047607536],[-64.01271820068354,52.362594604492244],[-63.82686233520502,52.330837249755916],[-63.69057464599604,52.129833221435604],[-63.808109283447266,51.99784851074219],[-61.806522369384766,51.9958114624024],[-60.4416885375976,51.99651336669922],[-59.0344123840332,51.996982574462834],[-57.1077880859375,51.99847412109375],[-57.10839843749994,51.42510986328125]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":254,"NAME_2":"Minganie--Basse-C?te-Nord","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-74.20840454101562,45.68696212768555],[-73.91202545166016,45.76605224609381],[-73.8969039916991,45.617408752441406],[-74.115737915039,45.51667785644531],[-74.24089813232422,45.55182647705078],[-74.20840454101562,45.68696212768555]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":255,"NAME_2":"Mirabel","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.45636749267572,45.943759918213004],[-73.57857513427734,45.82128524780279],[-73.8065414428711,45.82091140747076],[-73.97577667236317,45.97910308837896],[-73.61055755615234,46.05927658081055],[-73.45636749267572,45.943759918213004]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":256,"NAME_2":"Montcalm","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-69.96186065673828,46.73311614990246],[-70.0460586547851,46.46396636962896],[-70.32432556152338,46.65748977661144],[-70.57994842529297,46.83499145507824],[-70.78416442871094,46.906944274902344],[-70.43310546875,47.07973480224604],[-69.96186065673828,46.73311614990246]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":257,"NAME_2":"Montmagny","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-72.21744537353516,46.19742965698248],[-72.30506896972656,46.03299331665045],[-72.79972076416016,46.01392364501953],[-72.97468566894526,46.09926223754877],[-72.5784912109375,46.259719848632926],[-72.21744537353516,46.19742965698248]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":258,"NAME_2":"Nicolet-Yamaska","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-79.2974853515625,56.49723434448242],[-79.1197280883789,56.483085632324276],[-79.0555801391601,56.344860076904354],[-79.44701385498047,55.88579177856451],[-79.80361938476562,55.897335052490234],[-79.85870361328114,56.006286621093864],[-79.5574951171875,56.24591064453125],[-79.39709472656244,56.2207603454591],[-79.2974853515625,56.49723434448242]]],[[[-68.136978149414,60.5963516235351],[-67.82759857177729,60.446353912353516],[-67.95417022705072,60.3270835876466],[-68.32499694824219,60.19791793823248],[-68.43698120117188,60.270309448242244],[-68.23698425292969,60.58489608764654],[-68.136978149414,60.5963516235351]]],[[[-79.58698272705072,62.410934448242244],[-79.25885009765625,62.2359352111817],[-79.44843292236317,61.87551879882818],[-79.71666717529291,61.59166717529297],[-79.88072967529291,61.59426879882807],[-80.05833435058594,61.80208206176752],[-80.27291870117188,61.91249847412115],[-80.1437530517577,62.21250152
 5878906],[-79.9375,62.370834350585994],[-79.58698272705072,62.410934448242244]]],[[[-72.87916564941406,62.14166641235357],[-72.88333129882807,62.12708282470709],[-72.60051727294922,62.09531021118164],[-72.58333587646484,61.98125076293945],[-72.129165649414,61.806251525878906],[-72.01093292236328,61.7244758605957],[-71.52291870117182,61.60416793823242],[-71.7437515258789,61.54166793823248],[-71.72916412353516,61.281250000000114],[-70.76875305175776,61.07291793823242],[-70.4124984741211,61.02916717529297],[-70.10468292236322,61.06614303588873],[-70.07656097412104,60.85676956176769],[-69.65416717529291,60.87291717529291],[-69.46041870117188,61.025001525878906],[-69.410415649414,60.8125],[-69.69739532470697,60.6942710876466],[-69.65833282470703,60.610416412353516],[-69.78281402587885,60.49010467529291],[-69.58333587646479,60.20833206176758],[-69.60624694824219,60.193748474121094],[-69.64167022705072,60.06041717529297],[-69.7205810546875,59.96667480468756],[-69.5188598632812,59.616912841
 79699],[-69.73136138916016,59.52107238769537],[-69.62110900878895,59.39110946655279],[-69.2616577148437,59.296703338623104],[-69.44695281982416,58.88432693481451],[-69.78668212890625,58.83111572265625],[-69.72390747070307,58.68049240112316],[-69.23278045654297,58.903411865234375],[-68.60221862792969,58.90083312988287],[-68.3483276367187,58.76892089843744],[-68.33222198486328,58.58805465698242],[-67.90277862548817,58.492221832275504],[-67.51970672607422,58.26281738281256],[-67.09112548828125,58.35968017578131],[-66.9610977172851,58.4909019470216],[-66.62055206298822,58.499061584472656],[-66.57111358642578,58.66055679321289],[-66.35791015624994,58.85252380371094],[-66.07000732421864,58.834106445312614],[-65.77284240722645,58.984004974365234],[-65.6527099609375,59.1116943359375],[-65.71221923828125,59.26972198486334],[-65.38166809082031,59.49722290039068],[-65.53333282470703,59.73888778686535],[-65.2332153320312,59.89041900634777],[-65.13333129882812,60.03958511352545],[-65.09166717529
 297,60.06041717529297],[-64.95573425292957,60.2578125],[-64.74635314941406,60.35510635375982],[-64.75794982910156,60.36343002319336],[-64.5942764282226,60.333507537841854],[-64.5859909057616,60.32933425903326],[-64.58405303955072,60.32915115356451],[-64.58007812499989,60.32877731323248],[-64.53440093994129,60.30833435058588],[-64.86394500732422,60.2281951904298],[-64.59371948242176,60.117031097412166],[-64.84023284912104,59.97031784057617],[-64.76048278808588,59.706558227539176],[-64.89825439453125,59.6417808532716],[-64.54353332519526,59.310436248779354],[-64.4603042602539,58.98151779174805],[-64.77924346923828,59.07495880126959],[-64.82070922851562,58.91689300537121],[-64.3325424194336,58.904563903808594],[-64.22970581054688,58.78364944458019],[-63.59534454345703,58.857177734375114],[-63.50679779052729,58.74257659912121],[-63.95025253295893,58.68524551391613],[-64.10494995117182,58.563228607177734],[-63.88111495971674,58.42943954467779],[-64.17222595214844,58.36187362670904],[-64.
 4217300415039,58.18667221069347],[-64.11667633056635,57.811138153076115],[-63.99725341796869,57.81208038330084],[-63.64994812011713,57.62006378173834],[-63.85581970214844,57.33430099487299],[-63.74146270751953,57.24076461791998],[-63.89007949829096,57.086082458496094],[-63.908096313476506,56.92752075195324],[-64.14531707763672,56.69975662231445],[-63.93106460571289,56.53376007080078],[-64.09049224853516,56.27989959716797],[-63.86721420288086,56.211040496826286],[-63.93324661254883,56.09715270996094],[-63.636722564697266,56.02352523803722],[-63.77361679077143,55.8560523986817],[-63.66539764404291,55.423049926757756],[-63.442253112792855,55.344058990478516],[-63.61137008666992,55.09080505371094],[-63.55875015258789,55.00004959106457],[-64.74999999999994,54.99999999999994],[-66.25939941406244,54.999748229980526],[-66.60279083251947,55.26898193359375],[-66.74890136718744,55.215698242187614],[-66.76599121093744,55.00001525878906],[-67.21924591064447,55.00003433227545],[-67.42248535156244
 ,55.00006103515625],[-68.25070190429688,54.99999999999994],[-69.99999999999989,54.99999999999994],[-69.99999999999989,54.09637451171881],[-69.99999999999989,52.91838455200207],[-70.02391815185541,52.69635772705078],[-70.17528533935536,52.594417572021484],[-70.29183197021484,52.3485221862793],[-70.85824584960938,52.269081115722656],[-71.14038848876947,52.16998291015631],[-71.37797546386719,51.854469299316406],[-71.57112121582031,51.81382751464844],[-71.59137725830072,51.49520492553711],[-71.8642807006836,51.349159240722656],[-72.43779754638672,50.782222747802734],[-73.2210464477539,50.70661544799816],[-73.38762664794916,50.48435974121088],[-73.77205657958979,50.21634292602539],[-73.81532287597656,50.02605438232422],[-74.00485229492182,49.80595397949219],[-74.39299011230463,49.46914291381847],[-74.43025207519531,49.32558059692383],[-74.25003051757807,49.15081787109381],[-74.3274154663086,48.93649673461914],[-74.44389343261719,48.92928314208996],[-74.67628479003906,49.00006866455078],[
 -75.52506256103516,49.00003051757824],[-77.06072998046875,49.00005722045904],[-78.64379119873041,49.00024795532232],[-79.51798248291016,49.008884429931754],[-79.51795959472656,50.19472122192377],[-79.51565551757807,51.459987640380916],[-79.35944366455072,51.65499877929693],[-78.8983154296875,51.37890624999994],[-78.7738265991211,51.47752761840826],[-78.9033203125,51.782470703125114],[-78.58283233642578,52.10002517700195],[-78.4949951171875,52.470275878906364],[-78.72611999511707,52.54724121093756],[-78.73889160156244,52.79722213745123],[-78.90611267089844,52.916389465332145],[-78.94110870361328,53.393890380859375],[-79.07170104980463,53.68316268920904],[-79.0216064453125,54.015834808349666],[-79.32391357421875,54.17248535156256],[-79.4849853515625,54.379699707031364],[-79.56222534179688,54.72305679321295],[-79.04222106933594,54.8233528137207],[-78.31675720214844,55.042301177978516],[-77.79638671875,55.260681152343864],[-77.25219726562494,55.577880859375114],[-76.71844482421864,56.02
 268600463867],[-76.62000274658197,56.15916824340832],[-76.07333374023438,56.10166549682623],[-75.97166442871094,56.18999862670904],[-76.3782958984375,56.331943511963004],[-76.52001953125,56.4613990783692],[-76.5789794921875,57.18927001953125],[-76.6769790649414,57.40619277954113],[-77.09222412109375,57.94030761718756],[-77.6759185791015,58.274726867675724],[-78.42620849609375,58.54150390625006],[-78.4923095703125,58.77130126953131],[-78.1466445922851,59.10367202758795],[-78.12777709960932,59.18777847290045],[-77.79498291015625,59.328308105468864],[-77.81944274902338,59.68083190917963],[-77.39501190185547,59.86806106567383],[-77.47129821777344,59.91902923583996],[-77.39167022705078,60.04375076293945],[-77.44583129882812,60.03125],[-77.60624694824219,60.08541488647472],[-77.5562515258789,60.28749847412121],[-77.60416412353516,60.3270835876466],[-77.69999694824219,60.35833358764654],[-77.74166870117188,60.42916488647455],[-77.86042022705078,60.76458358764654],[-78.199478149414,60.85260
 391235346],[-77.84374999999994,61.04791641235346],[-77.71874999999994,61.21666717529297],[-77.77656555175781,61.32760620117199],[-77.55000305175781,61.63541793823242],[-77.95833587646484,61.68333435058605],[-78.15156555175781,62.008853912353516],[-78.14583587646484,62.28749847412115],[-77.6666641235351,62.51250076293951],[-77.41718292236322,62.576564788818416],[-76.80000305175781,62.52083206176758],[-76.45051574707031,62.43281555175781],[-75.6500015258789,62.29375076293957],[-74.39375305175776,62.24583435058588],[-73.66510009765625,62.476562500000114],[-73.54166412353504,62.37708282470703],[-73.1901016235351,62.31198120117199],[-72.87916564941406,62.14166641235357]]],[[[-78.1473999023437,63.47760391235357],[-77.80989837646479,63.455730438232536],[-77.4817657470702,63.242187500000114],[-77.93958282470703,63.08958435058605],[-78.52343749999994,63.4286460876466],[-78.1473999023437,63.47760391235357]]],[[[-77.29948425292963,63.690101623535156],[-76.80416870117182,63.61249923706066],[-76
 .59791564941406,63.46250152587902],[-76.94583129882812,63.39583206176769],[-77.43073272705072,63.629684448242244],[-77.29948425292963,63.690101623535156]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":259,"NAME_2":"Nord-du-Qu?bec","TYPE_2":"County","ENGTYPE_2":"County","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-74.70886993408203,45.92953872680664],[-74.80789947509766,45.638389587402344],[-74.94300842285156,45.643405914306584],[-75.34251403808594,45.53698348999018],[-75.34526824951172,45.53680419921881],[-75.35526275634754,45.59717178344732],[-75.4893569946289,45.70664978027344],[-75.51060485839838,45.84596633911127],[-75.73635101318348,45.82443618774414],[-75.7794342041015,45.98814773559576],[-75.40733337402332,45.972404479980526],[-75.40765380859375,46.097137451171875],[-75.17978668212879,46.1033935546875],[-75.07559204101562,46.21612548828125],[-74.83135223388672,45.973541259765625],[-74.70886993408203,45.92953872680664]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":260,"NAME_2":"Papineau","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.00371551513672,47.14545822143555],[-76.99987030029291,47.000000000000114],[-76.7967758178711,47.00004959106457],[-76.7968521118164,46.6402206420899],[-76.54382324218744,46.427913665771484],[-76.48000335693354,46.24168777465832],[-76.31749725341791,46.26446533203131],[-76.31937408447266,46.02476882934576],[-76.15311431884766,46.02262115478521],[-76.15093994140625,45.803558349609375],[-76.32515716552734,45.800315856933594],[-76.29621887207026,45.464530944824276],[-76.6600112915039,45.56063461303705],[-76.76689147949207,45.73269653320318],[-77.1903305053711,45.863861083984375],[-77.27633666992182,46.008541107177734],[-77.56607818603516,46.15922164916992],[-77.84087371826172,46.209167480468864],[-77.74343109130854,46.40488052368164],[-77.88124847412104,46.820148468017635],[-77.82423400878906,47.07616806030285],[-77.9316177368164,47.26971435546869],[-77.43169403076166,47.289131164550895],[-77.43365478515625,47.1449813842
 77344],[-77.00371551513672,47.14545822143555]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":261,"NAME_2":"Pontiac","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.55327606201172,46.784149169921875],[-71.5213775634765,46.714687347412166],[-71.8599853515625,46.67864990234375],[-72.09049987792969,46.5765762329101],[-72.28668975830072,46.71760940551769],[-72.16890716552729,46.87487411499029],[-72.43620300292969,47.057262420654354],[-72.537109375,47.18370819091797],[-72.54756927490234,47.30966949462896],[-72.2807388305664,47.27481842041027],[-72.1659164428711,47.38855743408203],[-71.81466674804688,47.328079223632756],[-71.63153839111322,47.191184997558594],[-71.81462097167963,47.11225891113287],[-71.63270568847656,46.986930847168026],[-71.71531677246094,46.855590820312614],[-71.55327606201172,46.784149169921875]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":262,"NAME_2":"Portneuf","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-67.94956970214838,47.99994277954096],[-68.3826293945312,47.8800506591798],[-68.65942382812489,48.06577301025396],[-68.97389221191406,48.27222061157232],[-68.54052734375,48.445384979248104],[-68.42562866210938,48.52854156494152],[-68.18319702148438,48.348606109619084],[-68.25704956054682,48.293514251708984],[-67.94792175292969,48.10405349731457],[-67.94956970214838,47.99994277954096]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":263,"NAME_2":"Rimouski-Neigette","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-69.2684555053711,48.084735870361385],[-69.18680572509754,47.88509750366222],[-68.91452789306629,47.8908042907716],[-69.3331298828125,47.645832061767635],[-69.66195678710938,47.727306365966854],[-69.54817199707031,47.87888717651367],[-69.2684555053711,48.084735870361385]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":264,"NAME_2":"Rivi?re-du-Loup","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-70.67308807373041,46.26269912719738],[-70.85958099365234,46.08426666259777],[-70.97005462646479,46.11584854125988],[-71.10494995117188,46.3092041015625],[-71.1028213500976,46.35831069946289],[-70.68881225585932,46.407081604003906],[-70.6217269897461,46.394180297851676],[-70.67308807373041,46.26269912719738]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":265,"NAME_2":"Robert-Cliche","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.38676452636713,45.413116455078125],[-73.40989685058594,45.32923889160156],[-73.63384246826172,45.31490707397472],[-73.69822692871088,45.229015350341854],[-73.83429718017578,45.33876419067394],[-73.50922393798822,45.43526840209972],[-73.38676452636713,45.413116455078125]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":266,"NAME_2":"Roussillon","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.07263183593744,45.47595214843756],[-72.81719970703125,45.47275543212902],[-72.87667846679688,45.283054351806754],[-72.9948120117187,45.33756637573248],[-73.2525634765625,45.3848876953125],[-73.07263183593744,45.47595214843756]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":267,"NAME_2":"Rouville","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-78.64721679687494,48.57452774047857],[-78.53915405273438,48.43047332763683],[-78.54344177246094,48.24087524414074],[-78.30075836181635,48.34381103515631],[-78.2886734008789,48.038959503173885],[-78.22016143798822,47.99546813964844],[-78.22135162353516,47.70332336425787],[-78.65496063232416,47.70230102539057],[-78.65330505371094,47.8799667358399],[-79.38630676269531,47.85127258300781],[-79.5174713134765,47.908275604248104],[-79.51762390136719,48.2762451171875],[-79.5173721313476,48.43159103393555],[-79.08248138427729,48.42966461181646],[-79.0826416015625,48.56120300292969],[-78.64721679687494,48.57452774047857]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":268,"NAME_2":"Rouyn-Noranda","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-67.42248535156244,55.00006103515625],[-67.06290435791016,54.69293212890625],[-67.34923553466791,54.51699066162115],[-67.7274932861327,54.45740127563488],[-67.67531585693354,54.15876007080084],[-67.82168579101557,54.025699615478516],[-67.21877288818354,53.530338287353516],[-66.92444610595703,53.41865921020519],[-67.04160308837885,53.076072692871094],[-67.39233398437494,53.120857238769645],[-67.31682586669916,52.87544631958019],[-66.7724380493164,52.696216583251896],[-66.6463775634765,52.788936614990234],[-66.6258697509765,52.954257965088004],[-66.361083984375,53.014404296875114],[-66.26116943359375,52.87432861328125],[-66.43992614746088,52.62949371337902],[-66.34171295166016,52.39720916748058],[-66.49051666259766,52.3416366577149],[-66.33010864257812,52.135932922363224],[-66.09636688232422,52.10780715942383],[-65.49999237060536,52.11034774780279],[-65.5,50.36972808837885],[-65.5444564819336,50.27194976806646],[-66
 .21946716308594,50.211990356445256],[-66.70388793945307,50.1072235107423],[-66.93389129638672,49.99750137329096],[-67.03997039794916,49.82544708251959],[-67.17361450195312,49.7761116027832],[-67.23361206054688,49.58897018432617],[-67.58374023437494,49.58975601196289],[-67.53009796142578,49.849716186523494],[-67.78538513183594,50.49991607666021],[-67.74201965332031,50.8319931030274],[-67.64384460449213,50.999801635742244],[-67.92362213134766,51.29987716674805],[-67.85391235351557,51.402542114257926],[-67.92475891113281,51.56353378295904],[-70.02481842041016,51.562488555908146],[-70.02391815185541,52.69635772705078],[-69.99999999999989,52.91838455200207],[-69.99999999999989,54.09637451171881],[-69.99999999999989,54.99999999999994],[-68.25070190429688,54.99999999999994],[-67.42248535156244,55.00006103515625]]],[[[-63.55875015258789,55.00004959106457],[-63.82052230834961,54.947959899902344],[-63.7689476013183,54.69984436035156],[-64.05427551269531,54.60090637207037],[-64.29453277587885,
 54.753276824951115],[-64.55688476562494,54.71366119384777],[-64.9719009399414,54.93739700317383],[-65.12644958496094,54.96147918701166],[-65.45552825927729,54.728584289550724],[-65.69011688232422,54.71152877807617],[-65.84984588623047,54.92721176147472],[-66.25939941406244,54.999748229980526],[-64.74999999999994,54.99999999999994],[-63.55875015258789,55.00004959106457]]],[[[-66.76599121093744,55.00001525878906],[-66.60264587402344,54.81350326538097],[-66.6963119506836,54.72595596313488],[-66.94784545898432,54.822311401367244],[-67.21924591064447,55.00003433227545],[-66.76599121093744,55.00001525878906]]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":269,"NAME_2":"Sept-Rivi?res--Caniapiscau","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-78.22135162353516,47.70332336425787],[-77.42162322998047,47.70276641845709],[-77.4421157836914,47.534076690673885],[-77.75873565673828,47.41877365112299],[-77.9316177368164,47.26971435546869],[-77.82423400878906,47.07616806030285],[-77.88124847412104,46.820148468017635],[-77.74343109130854,46.40488052368164],[-77.84087371826172,46.209167480468864],[-78.403579711914,46.292743682861385],[-78.6758422851562,46.318241119384766],[-78.9898681640625,46.54885482788086],[-79.1708145141601,46.82523345947271],[-79.41019439697266,47.05984497070324],[-79.42684173583984,47.250068664550724],[-79.58103942871094,47.41511535644531],[-79.51707458496088,47.533164978027344],[-79.5174713134765,47.908275604248104],[-79.38630676269531,47.85127258300781],[-78.65330505371094,47.8799667358399],[-78.65496063232416,47.70230102539057],[-78.22135162353516,47.70332336425787]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"
 Qu?bec","ID_2":270,"NAME_2":"T?miscamingue","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-68.3826293945312,47.8800506591798],[-68.38247680664051,47.79079437255854],[-68.38349914550776,47.553199768066406],[-68.5692749023437,47.4271240234375],[-69.05052947998047,47.300170898437614],[-69.22181701660156,47.4576416015625],[-69.39196014404297,47.298362731933594],[-69.58854675292969,47.431304931640625],[-69.3331298828125,47.645832061767635],[-68.91452789306629,47.8908042907716],[-68.65942382812489,48.06577301025396],[-68.3826293945312,47.8800506591798]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":271,"NAME_2":"T?miscouata","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.74662017822266,45.67021942138672],[-73.84337615966791,45.58303833007807],[-73.8969039916991,45.617408752441406],[-73.91202545166016,45.76605224609381],[-73.82402038574213,45.816913604736385],[-73.74662017822266,45.67021942138672]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":272,"NAME_2":"Th?r?se-De Blainville","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.52506256103516,49.00003051757824],[-75.52045440673828,47.846332550048885],[-75.72488403320307,47.84794998168945],[-76.02371978759766,47.72278594970709],[-76.24459838867188,47.7173309326173],[-76.57344818115234,47.60082626342779],[-76.5752182006836,47.28801345825201],[-77.00294494628906,47.28918838500982],[-77.00371551513672,47.14545822143555],[-77.43365478515625,47.144981384277344],[-77.43169403076166,47.289131164550895],[-77.9316177368164,47.26971435546869],[-77.75873565673828,47.41877365112299],[-77.4421157836914,47.534076690673885],[-77.42162322998047,47.70276641845709],[-78.22135162353516,47.70332336425787],[-78.22016143798822,47.99546813964844],[-78.2886734008789,48.038959503173885],[-78.30075836181635,48.34381103515631],[-78.0703125,48.28737640380865],[-77.56056213378906,48.287967681884766],[-77.56104278564453,48.50340652465826],[-77.138671875,48.574382781982536],[-77.14164733886719,48.863651275634766],[-77.06
 072998046875,49.00005722045904],[-75.52506256103516,49.00003051757824]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":273,"NAME_2":"Vall?e-de-l'Or","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-74.24497985839838,45.50643920898443],[-74.00173950195312,45.45243835449219],[-74.14891815185547,45.3034400939942],[-74.3460464477539,45.2066535949707],[-74.43836212158203,45.393798828125114],[-74.38127136230463,45.56610870361328],[-74.24497985839838,45.50643920898443]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":11,"NAME_1":"Qu?bec","ID_2":274,"NAME_2":"Vaudreuil-Soulanges","TYPE_2":"Regional County Municipality","ENGTYPE_2":"Regional County Municipality","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-103.29198455810541,52.14413452148432],[-103.26986694335932,51.1213836669923],[-103.69062042236322,51.09491729736328],[-104.51912689208984,51.095653533935604],[-104.79880523681629,51.13924789428705],[-104.82006835937494,51.35852432250982],[-104.95984649658197,51.358287811279354],[-105.00292205810547,52.14360809326172],[-104.5780181884765,52.14389801025402],[-103.29198455810541,52.14413452148432]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","ID_2":275,"NAME_2":"Division No. 10","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-105.00292205810547,52.14360809326172],[-104.95984649658197,51.358287811279354],[-104.82006835937494,51.35852432250982],[-104.79880523681629,51.13924789428705],[-104.79871368408192,51.09585952758795],[-105.63605499267578,51.09555053710943],[-106.6203002929687,51.09723663330078],[-106.88287353515614,51.27125549316412],[-107.07899475097656,51.434051513671875],[-107.06049346923828,51.56310272216808],[-106.79446411132801,51.719909667968864],[-106.71763610839844,51.834091186523494],[-106.86077880859375,51.96921920776373],[-106.86068725585938,52.14385986328131],[-107.28900146484375,52.14381790161144],[-107.29948425292969,52.34638214111334],[-106.9680404663086,52.4057731628418],[-106.33154296874994,52.434844970703125],[-106.43257904052734,52.318428039550895],[-106.43238067626953,52.14382171630865],[-105.00292205810547,52.14360809326172]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan",
 "ID_2":276,"NAME_2":"Division No. 11","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-108.44689178466791,52.89741897583019],[-108.35712432861322,52.771442413330135],[-108.04158020019526,52.580081939697266],[-107.83641052246094,52.55635452270519],[-107.41661834716791,52.34869003295893],[-107.29948425292969,52.34638214111334],[-107.28900146484375,52.14381790161144],[-106.86068725585938,52.14385986328131],[-106.86077880859375,51.96921920776373],[-106.71763610839844,51.834091186523494],[-106.79446411132801,51.719909667968864],[-107.06049346923828,51.56310272216808],[-107.07899475097656,51.434051513671875],[-106.88287353515614,51.27125549316412],[-107.67922973632812,51.27179336547863],[-107.69167327880854,51.35876083374035],[-108.53622436523432,51.35818481445318],[-108.5548095703125,51.881324768066406],[-108.41466522216786,51.8816375732423],[-108.45059204101557,52.405208587646484],[-108.34065246582026,52.58040237426769],[-108.59421539306635,52.57993316650402],[-108.76248931884766,52.667476654052734],[-108.76
 183319091797,52.88108062744152],[-108.44689178466791,52.89741897583019]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","ID_2":277,"NAME_2":"Division No. 12","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-108.76183319091797,52.88108062744152],[-108.76248931884766,52.667476654052734],[-108.59421539306635,52.57993316650402],[-108.34065246582026,52.58040237426769],[-108.45059204101557,52.405208587646484],[-108.41466522216786,51.8816375732423],[-108.5548095703125,51.881324768066406],[-108.53622436523432,51.35818481445318],[-110.00341796875,51.35809707641607],[-110.00514221191406,52.055622100830135],[-110.00517272949213,52.85484313964844],[-109.61842346191406,53.045543670654354],[-109.19803619384766,53.016098022460994],[-108.89811706542969,52.86731719970709],[-108.76183319091797,52.88108062744152]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","ID_2":278,"NAME_2":"Division No. 13","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-101.7703018188476,53.70927047729492],[-101.73490142822266,53.62223052978521],[-101.73489379882812,53.6221160888673],[-101.73486328125,53.616142272949276],[-101.73486328125,53.61600494384777],[-101.73486328125,53.61510848999029],[-101.73485565185547,53.61501693725586],[-101.73485565185547,53.61295318603527],[-101.73484802246094,53.61268234252941],[-101.73484802246094,53.61259460449213],[-101.73484802246094,53.61241149902338],[-101.73484802246094,53.61104583740246],[-101.73484039306635,53.61088562011713],[-101.73484039306635,53.60720443725586],[-101.73484039306635,53.6071128845216],[-101.73483276367182,53.60639572143549],[-101.73483276367182,53.60630416870123],[-101.73484039306635,53.60477828979498],[-101.73484802246094,53.60468673706049],[-101.73484039306635,53.60369873046875],[-101.73484039306635,53.60351943969738],[-101.73485565185547,53.60054397583008],[-101.73485565185547,53.600444793701286],[-101.73484802246094,53.
 599456787109375],[-101.73484802246094,53.599273681640625],[-101.73485565185547,53.599094390869254],[-101.73485565185547,53.598735809326286],[-101.73485565185547,53.598556518554744],[-101.73485565185547,53.595413208007926],[-101.73486328125,53.595230102539176],[-101.73487091064453,53.594062805175895],[-101.73487091064453,53.593883514404354],[-101.73487091064453,53.589035034179744],[-101.73487854003906,53.588943481445256],[-101.73487854003906,53.586700439453125],[-101.73487854003906,53.586608886718864],[-101.7348861694336,53.58611297607422],[-101.7348861694336,53.585979461670036],[-101.7348861694336,53.585079193115234],[-101.73489379882812,53.584991455078125],[-101.7348861694336,53.584003448486385],[-101.7348861694336,53.583915710449276],[-101.73489379882812,53.582656860351506],[-101.73489379882812,53.58253860473644],[-101.73489379882812,53.5823860168457],[-101.73490142822266,53.5816535949707],[-101.73489379882812,53.581489562988395],[-101.73490142822266,53.580768585205135],[-101.7348
 9379882812,53.580589294433594],[-101.73489379882812,53.580139160156364],[-101.73489379882812,53.580051422119254],[-101.73490142822266,53.578704833984375],[-101.73490142822266,53.578613281250114],[-101.73490142822266,53.57618713378906],[-101.73490905761713,53.57608032226568],[-101.73491668701166,53.574302673339844],[-101.73490905761713,53.574119567871094],[-101.73490905761713,53.573581695556754],[-101.73491668701166,53.573417663574276],[-101.73491668701166,53.573314666748104],[-101.73491668701166,53.57322311401367],[-101.73491668701166,53.572505950927734],[-101.73491668701166,53.57241439819347],[-101.73491668701166,53.57124710083019],[-101.73491668701166,53.5711555480957],[-101.73491668701166,53.57088851928722],[-101.7349243164062,53.570796966552734],[-101.7349243164062,53.57070541381847],[-101.7349243164062,53.56949996948248],[-101.7349243164062,53.569358825683594],[-101.7349243164062,53.568283081054744],[-101.73493194580072,53.56819152832031],[-101.7349243164062,53.56720352172857],
 [-101.7349243164062,53.56711578369146],[-101.7349243164062,53.56567764282232],[-101.73493194580072,53.565586090087834],[-101.7349395751952,53.56423950195318],[-101.7349395751952,53.56414794921869],[-101.7349395751952,53.564060211181584],[-101.7349395751952,53.56396865844732],[-101.73493194580072,53.56316375732433],[-101.73493194580072,53.563072204589844],[-101.7349395751952,53.56298065185558],[-101.7349395751952,53.56280136108404],[-101.7349395751952,53.56271362304693],[-101.7349395751952,53.5618133544923],[-101.7349395751952,53.56172180175781],[-101.73494720458984,53.56046676635742],[-101.73494720458984,53.56028747558605],[-101.7349395751952,53.55947875976568],[-101.7349395751952,53.55938720703119],[-101.73494720458984,53.55534744262695],[-101.73495483398438,53.55525588989269],[-101.7349624633789,53.55390930175781],[-101.7349624633789,53.55381774902355],[-101.73495483398438,53.55282974243164],[-101.73495483398438,53.55273818969732],[-101.7349624633789,53.55265045166027],[-101.73496
 24633789,53.55237960815441],[-101.7349624633789,53.55220031738281],[-101.73497009277344,53.55130386352539],[-101.7349624633789,53.55112457275402],[-101.7349624633789,53.55031585693365],[-101.7349624633789,53.55013656616205],[-101.73497009277344,53.54923629760742],[-101.7349624633789,53.54905700683605],[-101.73497772216797,53.54735183715826],[-101.73497772216797,53.54726028442394],[-101.73497772216797,53.54717254638666],[-101.73497772216797,53.5470809936524],[-101.73497772216797,53.54501342773443],[-101.7349853515625,53.54492568969738],[-101.73497772216797,53.54384613037115],[-101.73497772216797,53.54366683959961],[-101.7349853515625,53.54357528686529],[-101.7349853515625,53.54339981079113],[-101.7349853515625,53.54294967651367],[-101.7349853515625,53.5427703857423],[-101.73497772216797,53.54249954223627],[-101.7349853515625,53.54238128662121],[-101.7349853515625,53.54222869873047],[-101.7349853515625,53.5418701171875],[-101.7349853515625,53.54169082641613],[-101.7349853515625,53.539
 98565673828],[-101.7349853515625,53.53980255126953],[-101.7349853515625,53.53845596313488],[-101.73499298095703,53.53836822509777],[-101.7350006103515,53.53701782226574],[-101.7350006103515,53.53693008422863],[-101.7350006103515,53.536434173583984],[-101.73499298095703,53.53630065917963],[-101.73499298095703,53.53594207763672],[-101.73499298095703,53.5358505249024],[-101.7350006103515,53.53576278686529],[-101.73500823974604,53.53324508666998],[-101.73500823974604,53.53306579589838],[-101.7350006103515,53.53216934204113],[-101.7350006103515,53.53199005126959],[-101.73500823974604,53.53181076049816],[-101.73500823974604,53.53144836425787],[-101.73500823974604,53.53136062622076],[-101.73501586914057,53.53046035766613],[-101.73500823974604,53.53037261962902],[-101.67195892333984,53.011352539062614],[-101.66970062255854,52.85924148559582],[-101.66979980468744,52.859146118164176],[-101.67081451416016,52.79813003540039],[-101.6378173828125,52.31828308105469],[-103.2914199829101,52.31882476
 806652],[-103.29198455810541,52.14413452148432],[-104.5780181884765,52.14389801025402],[-104.63578796386713,53.2279624938966],[-104.90570831298822,53.16702651977545],[-105.07469177246088,53.24333953857416],[-105.13004302978516,53.80224227905285],[-103.64282226562494,53.80154800415039],[-103.62879180908203,53.61662673950201],[-103.29763031005848,53.7091903686524],[-101.7703018188476,53.70927047729492]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","ID_2":279,"NAME_2":"Division No. 14","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-105.13004302978516,53.80224227905285],[-105.07469177246088,53.24333953857416],[-104.90570831298822,53.16702651977545],[-104.63578796386713,53.2279624938966],[-104.5780181884765,52.14389801025402],[-105.00292205810547,52.14360809326172],[-106.43238067626953,52.14382171630865],[-106.43257904052734,52.318428039550895],[-106.33154296874994,52.434844970703125],[-106.9680404663086,52.4057731628418],[-106.8270797729491,52.66287612915039],[-106.42941284179688,52.93252563476568],[-106.2122802734375,53.161071777343864],[-106.00568389892567,53.20077133178711],[-106.00405883789051,53.97629547119152],[-105.12930297851562,53.976974487304744],[-105.13004302978516,53.80224227905285]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","ID_2":280,"NAME_2":"Division No. 15","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-106.00405883789051,53.97629547119152],[-106.00568389892567,53.20077133178711],[-106.2122802734375,53.161071777343864],[-106.42941284179688,52.93252563476568],[-106.8270797729491,52.66287612915039],[-106.9680404663086,52.4057731628418],[-107.29948425292969,52.34638214111334],[-107.41661834716791,52.34869003295893],[-107.83641052246094,52.55635452270519],[-108.04158020019526,52.580081939697266],[-108.35712432861322,52.771442413330135],[-108.44689178466791,52.89741897583019],[-108.18085479736328,52.929313659668026],[-108.22675323486322,53.519107818603516],[-108.15723419189447,53.62784576416027],[-107.92268371582031,53.62785339355463],[-107.791259765625,53.80226516723644],[-107.79149627685541,53.97690582275385],[-107.344970703125,53.97658157348644],[-107.35301208496088,54.14935684204107],[-106.75139617919922,54.148849487304744],[-106.75289154052734,54.3249397277832],[-106.00347137451166,54.325023651123104],[-106.0040588378
 9051,53.97629547119152]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","ID_2":281,"NAME_2":"Division No. 16","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-107.35301208496088,54.14935684204107],[-107.344970703125,53.97658157348644],[-107.79149627685541,53.97690582275385],[-107.791259765625,53.80226516723644],[-107.92268371582031,53.62785339355463],[-108.15723419189447,53.62784576416027],[-108.22675323486322,53.519107818603516],[-108.18085479736328,52.929313659668026],[-108.44689178466791,52.89741897583019],[-108.76183319091797,52.88108062744152],[-108.89811706542969,52.86731719970709],[-109.19803619384766,53.016098022460994],[-109.61842346191406,53.045543670654354],[-110.00517272949213,52.85484313964844],[-110.00576019287104,53.88941574096691],[-110.00569915771484,54.649806976318416],[-109.53207397460932,54.50049591064453],[-108.80215454101562,54.48613357543945],[-108.42397308349604,54.58727264404297],[-107.97004699707026,54.5872535705567],[-107.95294952392578,54.15049743652344],[-107.35301208496088,54.14935684204107]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canad
 a","ID_1":12,"NAME_1":"Saskatchewan","ID_2":282,"NAME_2":"Division No. 17","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-102,60.00000000000006],[-102,59.3073463439942],[-101.99999237060547,59.30723953247082],[-101.99999237060547,59.29595565795904],[-102,59.27099227905285],[-102,59.14680862426769],[-102,59.03860855102545],[-102,59.02693939208996],[-102,59.01985168457037],[-102,59.01180648803722],[-102,59.007614135742244],[-102,58.9495849609375],[-102,58.94940185546875],[-102,58.74494171142578],[-101.99999237060547,58.744815826416016],[-102,58.6631431579591],[-102,58.662860870361385],[-102,58.58963012695307],[-102,58.581077575683594],[-102,58.53668212890631],[-102,58.51985168457031],[-102,58.479991912841854],[-102.00000762939453,58.36177062988281],[-102,57.21680831909174],[-102,57.21410751342785],[-102,57.07024765014654],[-102,57.07008361816406],[-102,57.002792358398494],[-102,57.000000000000114],[-102,56.97987365722656],[-102,56.979717254638786],[-102,56.89306640625],[-102,56.87717437744152],[-102,56.752265930175895],[-102,56.751186370849
 72],[-102,56.57737350463873],[-102,56.57289886474615],[-102,56.451946258545036],[-102,56.45178604125971],[-102,56.01438903808594],[-102,56.000000000000114],[-102,55.99990463256847],[-102,55.96755218505871],[-101.95452880859375,55.62414932250988],[-101.95515441894531,55.512714385986385],[-101.95520782470697,55.50004196166992],[-101.91476440429688,55.421249389648494],[-101.91478729248041,55.41780471801752],[-101.8797988891601,55.10586929321295],[-101.8797988891601,55.105594635009766],[-101.8818969726562,54.90958786010748],[-101.8818969726562,54.909465789795036],[-101.8819732666015,54.89885330200195],[-101.8819732666015,54.898700714111385],[-101.84339141845703,54.74309921264654],[-101.84355926513666,54.74309539794922],[-101.84722900390625,54.552505493164176],[-101.8475112915039,54.539932250976676],[-101.76824951171875,54.0644264221192],[-101.7703018188476,53.70927047729492],[-103.29763031005848,53.7091903686524],[-103.62879180908203,53.61662673950201],[-103.64282226562494,53.8015480041
 5039],[-105.13004302978516,53.80224227905285],[-105.12930297851562,53.976974487304744],[-106.00405883789051,53.97629547119152],[-106.00347137451166,54.325023651123104],[-106.75289154052734,54.3249397277832],[-106.75139617919922,54.148849487304744],[-107.35301208496088,54.14935684204107],[-107.95294952392578,54.15049743652344],[-107.97004699707026,54.5872535705567],[-108.42397308349604,54.58727264404297],[-108.80215454101562,54.48613357543945],[-109.53207397460932,54.50049591064453],[-110.00569915771484,54.649806976318416],[-110.00011444091791,55.331233978271484],[-110,56.83329391479492],[-110.00000762939453,58.04086303710949],[-109.99999237060547,58.86151885986334],[-110,60.00000000000006],[-108.50263977050781,60.00000000000006],[-106.25000762939447,60.00000000000006],[-104.49999999999994,60.00000000000006],[-102,60.00000000000006]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","ID_2":283,"NAME_2":"Division No. 18","TYPE_2":"Census Divisio
 n","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-101.39280700683594,49.532451629638786],[-101.36248016357422,49.000080108642635],[-103.20844268798822,49.00010681152344],[-103.23420715332026,50.04732513427746],[-102.0063705444336,50.04671859741205],[-101.4454116821289,50.06401824951172],[-101.39280700683594,49.532451629638786]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","ID_2":284,"NAME_2":"Division No. 1","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-103.23420715332026,50.04732513427746],[-103.20844268798822,49.00010681152344],[-105.21147155761719,49.00057220458996],[-105.28209686279291,50.04733657836914],[-103.23420715332026,50.04732513427746]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","ID_2":285,"NAME_2":"Division No. 2","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-105.28209686279291,50.04733657836914],[-105.21147155761719,49.00057220458996],[-107.20885467529297,49.001232147216854],[-107.21733856201172,49.26184463500971],[-107.6195297241211,49.26214599609375],[-107.64289093017578,50.04796600341797],[-106.7728500366211,50.04707336425787],[-105.28209686279291,50.04733657836914]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","ID_2":286,"NAME_2":"Division No. 3","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-107.64289093017578,50.04796600341797],[-107.6195297241211,49.26214599609375],[-107.21733856201172,49.26184463500971],[-107.20885467529297,49.001232147216854],[-108.94216918945312,49.00011825561535],[-110.00502014160156,49.00005722045904],[-110.0038833618164,50.134704589843864],[-109.69071960449219,50.13487243652355],[-109.69033813476562,50.0479469299317],[-109.28128051757812,50.047843933105526],[-109.30395507812494,50.310199737548885],[-108.89202117919922,50.31011962890631],[-108.8716430664062,50.04785156250006],[-108.4619522094726,50.047660827636776],[-108.46312713623047,49.96055603027355],[-108.05182647705078,49.96060180664057],[-108.05229949951172,50.04784011840832],[-107.64289093017578,50.04796600341797]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","ID_2":287,"NAME_2":"Division No. 4","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""
 }},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-101.53933715820307,51.12615203857433],[-101.47529602050781,50.59421539306635],[-101.4454116821289,50.06401824951172],[-102.0063705444336,50.04671859741205],[-103.23420715332026,50.04732513427746],[-103.24398040771484,50.3092498779298],[-103.38101959228516,50.30907440185541],[-103.38175964355469,50.56364059448242],[-103.2620620727539,50.59167480468756],[-103.26986694335932,51.1213836669923],[-101.53933715820307,51.12615203857433]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","ID_2":288,"NAME_2":"Division No. 5","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-103.26986694335932,51.1213836669923],[-103.2620620727539,50.59167480468756],[-103.38175964355469,50.56364059448242],[-103.38101959228516,50.30907440185541],[-103.24398040771484,50.3092498779298],[-103.23420715332026,50.04732513427746],[-105.28209686279291,50.04733657836914],[-105.30567169189447,50.57154083251953],[-105.60955810546875,50.72404861450195],[-105.63605499267578,51.09555053710943],[-104.79871368408192,51.09585952758795],[-104.79880523681629,51.13924789428705],[-104.51912689208984,51.095653533935604],[-103.69062042236322,51.09491729736328],[-103.26986694335932,51.1213836669923]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","ID_2":289,"NAME_2":"Division No. 6","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-106.88287353515614,51.27125549316412],[-106.6203002929687,51.09723663330078],[-105.63605499267578,51.09555053710943],[-105.60955810546875,50.72404861450195],[-105.30567169189447,50.57154083251953],[-105.28209686279291,50.04733657836914],[-106.7728500366211,50.04707336425787],[-107.64289093017578,50.04796600341797],[-107.6544189453125,50.4755592346192],[-107.80594635009766,50.6772193908692],[-107.81838989257807,51.009395599365234],[-107.67776489257812,51.009212493896484],[-107.67922973632812,51.27179336547863],[-106.88287353515614,51.27125549316412]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","ID_2":290,"NAME_2":"Division No. 7","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-107.67922973632812,51.27179336547863],[-107.67776489257812,51.009212493896484],[-107.81838989257807,51.009395599365234],[-107.80594635009766,50.6772193908692],[-107.6544189453125,50.4755592346192],[-107.64289093017578,50.04796600341797],[-108.05229949951172,50.04784011840832],[-108.05182647705078,49.96060180664057],[-108.46312713623047,49.96055603027355],[-108.4619522094726,50.047660827636776],[-108.8716430664062,50.04785156250006],[-108.89202117919922,50.31011962890631],[-109.30395507812494,50.310199737548885],[-109.28128051757812,50.047843933105526],[-109.69033813476562,50.0479469299317],[-109.69071960449219,50.13487243652355],[-110.0038833618164,50.134704589843864],[-110.00312805175781,50.83884429931646],[-110.00341796875,51.35809707641607],[-108.53622436523432,51.35818481445318],[-107.69167327880854,51.35876083374035],[-107.67922973632812,51.27179336547863]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","
 ID_1":12,"NAME_1":"Saskatchewan","ID_2":291,"NAME_2":"Division No. 8","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-101.6378173828125,52.31828308105469],[-101.5775527954101,51.96853637695318],[-101.57048034667969,51.566799163818416],[-101.53933715820307,51.12615203857433],[-103.26986694335932,51.1213836669923],[-103.29198455810541,52.14413452148432],[-103.2914199829101,52.31882476806652],[-101.6378173828125,52.31828308105469]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":12,"NAME_1":"Saskatchewan","ID_2":292,"NAME_2":"Division No. 9","TYPE_2":"Census Division","ENGTYPE_2":"Census Division","NL_NAME_2":"","VARNAME_2":""}},
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-138.42291259765625,69.21875],[-138.38333129882812,69.23750305175787],[-138.36874389648438,69.28958129882818],[-138.01249694824213,69.11250305175781],[-137.10208129882812,68.92708587646501],[-137.0333404541015,68.93750000000006],[-136.86041259765625,68.87499999999994],[-136.55833435058588,68.87291717529314],[-136.46864318847656,68.87801361083996],[-136.46861267089832,68.87083435058594],[-136.46859741210932,68.86666870117188],[-136.44877624511707,67.64947509765653],[-136.19998168945312,67.56166076660156],[-136.0865631103515,67.30070495605469],[-136.23509216308594,67.17253875732422],[-136.16441345214844,67.00000000000006],[-134.3125,67.00000000000006],[-133.75965881347656,66.80102539062523],[-133.6934356689453,66.50348663330084],[-133.7857666015625,66.29537963867188],[-133.5535430908203,66.25700378417969],[-133.6583251953124,65.95967864990234],[-133.1280670166015,66.03093719482433],[-132.65660095214844,66.01583099365263],
 [-132.5963592529297,65.85670471191412],[-132.16831970214844,65.60242462158203],[-132.27537536621088,65.4577026367188],[-132.772720336914,65.1830444335938],[-132.3361053466797,65.06072235107422],[-132.58689880371094,64.83458709716803],[-132.03771972656244,64.69642639160156],[-131.85537719726557,64.537826538086],[-131.45103454589838,64.39186096191412],[-131.06817626953125,64.36132049560547],[-130.95541381835932,64.1133193969726],[-130.69541931152338,63.95030212402344],[-130.10122680664062,63.754177093505916],[-129.78492736816406,63.44596862792969],[-130.13002014160156,63.26682662963873],[-129.74070739746088,63.06051254272472],[-129.75003051757812,62.8810653686524],[-129.4393463134765,62.57793426513672],[-129.2124633789062,62.50450515747082],[-129.2696685791015,62.2579803466798],[-129.12887573242188,62.09945678710943],[-128.34793090820312,62.014839172363224],[-128.04745483398432,61.72872161865246],[-127.46918487548828,61.48515701293951],[-127.1029586791991,61.45814895629894],[-126.8127
 5177001942,60.75856018066412],[-126.63904571533203,60.730789184570426],[-125.83222961425781,60.881286621093864],[-125.66963958740234,60.803108215331974],[-125.26406860351557,60.76834869384777],[-124.7661514282226,60.958061218261776],[-124.53938293457026,60.93860626220709],[-124.44921875,60.764682769775334],[-124.59944915771479,60.687866210937614],[-124.12383270263672,60.20600128173834],[-123.78933715820312,60.00003433227539],[-125.25,60.00000000000006],[-127.7249984741211,60.00002288818365],[-128.75,60.00000000000006],[-130.7499999999999,59.99999618530285],[-131.74999999999994,59.99999618530285],[-133.49999999999994,60.00000000000006],[-135.5,60.00000000000006],[-137.25,60.00000000000006],[-139.05220031738276,60.00004196166992],[-139.177017211914,60.08286285400402],[-139.05207824707026,60.353725433349666],[-139.68006896972656,60.3357200622558],[-139.9740753173828,60.184513092041016],[-140.44796752929688,60.30796432495123],[-140.5203399658203,60.21905899047857],[-141.00157165527344,6
 0.305068969726676],[-141.0023956298828,61.18838882446295],[-141.00259399414062,62.61460113525396],[-141.00375366210938,63.71563720703119],[-141.00180053710932,64.53592681884777],[-141.0023956298828,65.54578399658203],[-141.00315856933594,66.48735809326183],[-141.00686645507812,67.99990081787121],[-141.00303649902338,69.64615631103533],[-140.27499389648432,69.589584350586],[-139.78541564941406,69.59999847412126],[-139.15208435058594,69.50208282470732],[-138.42291259765625,69.21875]]]},"properties":{"ID_0":42,"ISO":"CAN","NAME_0":"Canada","ID_1":13,"NAME_1":"Yukon","ID_2":293,"NAME_2":"Yukon","TYPE_2":"Census Division","ENGTYPE_2":"Territory","NL_NAME_2":"","VARNAME_2":""}}
+]}
\ No newline at end of file
diff --git a/superset/assets/visualizations/deckgl/DeckGLContainer.jsx b/superset/assets/visualizations/deckgl/DeckGLContainer.jsx
new file mode 100644
index 0000000000..a4f9d4e36d
--- /dev/null
+++ b/superset/assets/visualizations/deckgl/DeckGLContainer.jsx
@@ -0,0 +1,91 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+import MapGL from 'react-map-gl';
+import DeckGL from 'deck.gl';
+
+const propTypes = {
+  viewport: PropTypes.object.isRequired,
+  layers: PropTypes.array.isRequired,
+  setControlValue: PropTypes.func.isRequired,
+  mapStyle: PropTypes.string,
+  mapboxApiAccessToken: PropTypes.string.isRequired,
+  onViewportChange: PropTypes.func,
+};
+const defaultProps = {
+  mapStyle: 'light',
+  onViewportChange: () => {},
+};
+
+export default class DeckGLContainer extends React.Component {
+  constructor(props) {
+    super(props);
+    this.state = {
+      viewport: props.viewport,
+    };
+    this.tick = this.tick.bind(this);
+  }
+  componentWillMount() {
+    const timer = setInterval(this.tick, 1000);
+    this.setState({ timer });
+  }
+  componentWillReceiveProps(nextProps) {
+    this.setState({
+      viewport: {
+        ...nextProps.viewport,
+      },
+    });
+  }
+  componentWillUnmount() {
+    this.clearInterval(this.state.timer);
+  }
+  onViewportChange(viewport) {
+    const vp = Object.assign({}, viewport);
+    delete vp.width;
+    delete vp.height;
+    const newVp = { ...this.state.viewport, ...vp };
+
+    this.setState({
+      viewport: newVp,
+    });
+    this.props.onViewportChange(newVp);
+  }
+  tick() {
+    // Limiting updating viewport controls through Redux at most 1*sec
+    if (this.state.previousViewport !== this.state.viewport) {
+      const setCV = this.props.setControlValue;
+      const vp = this.state.viewport;
+      if (setCV) {
+        setCV('viewport', vp);
+      }
+
+      this.setState({ previousViewport: this.state.viewport });
+    }
+  }
+  layers() {
+    // Support for layer factory
+    if (this.props.layers.some(l => typeof l === 'function')) {
+      return this.props.layers.map(l => typeof l === 'function' ? l() : l);
+    }
+    return this.props.layers;
+  }
+  render() {
+    const { viewport } = this.state;
+    return (
+      <MapGL
+        {...viewport}
+        mapStyle={this.props.mapStyle}
+        onViewportChange={this.onViewportChange.bind(this)}
+        mapboxApiAccessToken={this.props.mapboxApiAccessToken}
+      >
+        <DeckGL
+          {...viewport}
+          layers={this.layers()}
+          initWebGLParameters
+        />
+      </MapGL>
+    );
+  }
+}
+
+DeckGLContainer.propTypes = propTypes;
+DeckGLContainer.defaultProps = defaultProps;
diff --git a/superset/assets/visualizations/deckgl/grid.jsx b/superset/assets/visualizations/deckgl/grid.jsx
new file mode 100644
index 0000000000..496728e52d
--- /dev/null
+++ b/superset/assets/visualizations/deckgl/grid.jsx
@@ -0,0 +1,43 @@
+import React from 'react';
+import ReactDOM from 'react-dom';
+import { GridLayer } from 'deck.gl';
+
+import DeckGLContainer from './DeckGLContainer';
+
+function deckScreenGridLayer(slice, payload, setControlValue) {
+  const fd = slice.formData;
+  const c = fd.color_picker;
+  const data = payload.data.features.map(d => ({
+    ...d,
+    color: [c.r, c.g, c.b, 255 * c.a],
+  }));
+
+  const layer = new GridLayer({
+    id: 'screengrid-layer',
+    data,
+    pickable: true,
+    cellSize: fd.grid_size,
+    minColor: [0, 0, 0, 0],
+    extruded: fd.extruded,
+    maxColor: [c.r, c.g, c.b, 255 * c.a],
+    outline: false,
+    getElevationValue: points => points.reduce((sum, point) => sum + point.weight, 0),
+    getColorValue: points => points.reduce((sum, point) => sum + point.weight, 0),
+  });
+  const viewport = {
+    ...fd.viewport,
+    width: slice.width(),
+    height: slice.height(),
+  };
+  ReactDOM.render(
+    <DeckGLContainer
+      mapboxApiAccessToken={payload.data.mapboxApiKey}
+      viewport={viewport}
+      layers={[layer]}
+      mapStyle={fd.mapbox_style}
+      setControlValue={setControlValue}
+    />,
+    document.getElementById(slice.containerId),
+  );
+}
+module.exports = deckScreenGridLayer;
diff --git a/superset/assets/visualizations/deckgl/hex.jsx b/superset/assets/visualizations/deckgl/hex.jsx
new file mode 100644
index 0000000000..22ae9ac11b
--- /dev/null
+++ b/superset/assets/visualizations/deckgl/hex.jsx
@@ -0,0 +1,43 @@
+import React from 'react';
+import ReactDOM from 'react-dom';
+import { HexagonLayer } from 'deck.gl';
+
+import DeckGLContainer from './DeckGLContainer';
+
+function deckHex(slice, payload, setControlValue) {
+  const fd = slice.formData;
+  const c = fd.color_picker;
+  const data = payload.data.features.map(d => ({
+    ...d,
+    color: [c.r, c.g, c.b, 255 * c.a],
+  }));
+
+  const layer = new HexagonLayer({
+    id: 'screengrid-layer',
+    data,
+    pickable: true,
+    radius: fd.grid_size,
+    minColor: [0, 0, 0, 0],
+    extruded: fd.extruded,
+    maxColor: [c.r, c.g, c.b, 255 * c.a],
+    outline: false,
+    getElevationValue: points => points.reduce((sum, point) => sum + point.weight, 0),
+    getColorValue: points => points.reduce((sum, point) => sum + point.weight, 0),
+  });
+  const viewport = {
+    ...fd.viewport,
+    width: slice.width(),
+    height: slice.height(),
+  };
+  ReactDOM.render(
+    <DeckGLContainer
+      mapboxApiAccessToken={payload.data.mapboxApiKey}
+      viewport={viewport}
+      layers={[layer]}
+      mapStyle={fd.mapbox_style}
+      setControlValue={setControlValue}
+    />,
+    document.getElementById(slice.containerId),
+  );
+}
+module.exports = deckHex;
diff --git a/superset/assets/visualizations/deckgl/scatter.jsx b/superset/assets/visualizations/deckgl/scatter.jsx
new file mode 100644
index 0000000000..007dc9007c
--- /dev/null
+++ b/superset/assets/visualizations/deckgl/scatter.jsx
@@ -0,0 +1,56 @@
+import React from 'react';
+import ReactDOM from 'react-dom';
+import { ScatterplotLayer } from 'deck.gl';
+
+import DeckGLContainer from './DeckGLContainer';
+import { getColorFromScheme, hexToRGB } from '../../javascripts/modules/colors';
+import { unitToRadius } from '../../javascripts/modules/geo';
+
+function deckScatter(slice, payload, setControlValue) {
+  const fd = slice.formData;
+  const c = fd.color_picker || { r: 0, g: 0, b: 0, a: 1 };
+  const fixedColor = [c.r, c.g, c.b, 255 * c.a];
+
+  const data = payload.data.features.map((d) => {
+    let radius = unitToRadius(fd.point_unit, d.radius) || 10;
+    if (fd.multiplier) {
+      radius *= fd.multiplier;
+    }
+    let color;
+    if (fd.dimension) {
+      color = hexToRGB(getColorFromScheme(d.cat_color, fd.color_scheme), c.a * 255);
+    } else {
+      color = fixedColor;
+    }
+    return {
+      ...d,
+      radius,
+      color,
+    };
+  });
+
+  const layer = new ScatterplotLayer({
+    id: 'scatterplot-layer',
+    data,
+    pickable: true,
+    fp64: true,
+    // onHover: info => console.log('Hovered:', info),
+    outline: false,
+  });
+  const viewport = {
+    ...fd.viewport,
+    width: slice.width(),
+    height: slice.height(),
+  };
+  ReactDOM.render(
+    <DeckGLContainer
+      mapboxApiAccessToken={payload.data.mapboxApiKey}
+      viewport={viewport}
+      layers={[layer]}
+      mapStyle={fd.mapbox_style}
+      setControlValue={setControlValue}
+    />,
+    document.getElementById(slice.containerId),
+  );
+}
+module.exports = deckScatter;
diff --git a/superset/assets/visualizations/deckgl/screengrid.jsx b/superset/assets/visualizations/deckgl/screengrid.jsx
new file mode 100644
index 0000000000..e994a450f1
--- /dev/null
+++ b/superset/assets/visualizations/deckgl/screengrid.jsx
@@ -0,0 +1,43 @@
+import React from 'react';
+import ReactDOM from 'react-dom';
+import { ScreenGridLayer } from 'deck.gl';
+
+import DeckGLContainer from './DeckGLContainer';
+
+function deckScreenGridLayer(slice, payload, setControlValue) {
+  const fd = slice.formData;
+  const c = fd.color_picker;
+  const data = payload.data.features.map(d => ({
+    ...d,
+    color: [c.r, c.g, c.b, 255 * c.a],
+  }));
+
+  const viewport = {
+    ...fd.viewport,
+    width: slice.width(),
+    height: slice.height(),
+  };
+  // Passing a layer creator function instead of a layer since the
+  // layer needs to be regenerated at each render
+  const layer = () => new ScreenGridLayer({
+    id: 'screengrid-layer',
+    data,
+    pickable: true,
+    cellSizePixels: fd.grid_size,
+    minColor: [c.r, c.g, c.b, 0],
+    maxColor: [c.r, c.g, c.b, 255 * c.a],
+    outline: false,
+    getWeight: d => d.weight || 0,
+  });
+  ReactDOM.render(
+    <DeckGLContainer
+      mapboxApiAccessToken={payload.data.mapboxApiKey}
+      viewport={viewport}
+      layers={[layer]}
+      mapStyle={fd.mapbox_style}
+      setControlValue={setControlValue}
+    />,
+    document.getElementById(slice.containerId),
+  );
+}
+module.exports = deckScreenGridLayer;
diff --git a/superset/assets/visualizations/main.js b/superset/assets/visualizations/main.js
index 78e81ab6d7..2afc57b617 100644
--- a/superset/assets/visualizations/main.js
+++ b/superset/assets/visualizations/main.js
@@ -36,5 +36,9 @@ const vizMap = {
   event_flow: require('./EventFlow.jsx'),
   paired_ttest: require('./paired_ttest.jsx'),
   partition: require('./partition.js'),
+  deck_scatter: require('./deckgl/scatter.jsx'),
+  deck_screengrid: require('./deckgl/screengrid.jsx'),
+  deck_grid: require('./deckgl/grid.jsx'),
+  deck_hex: require('./deckgl/hex.jsx'),
 };
 export default vizMap;
diff --git a/superset/cli.py b/superset/cli.py
index 0c666e1261..e6dde29d25 100755
--- a/superset/cli.py
+++ b/superset/cli.py
@@ -133,10 +133,16 @@ def load_examples(load_test_data):
     print("Loading [Misc Charts] dashboard")
     data.load_misc_dashboard()
 
+    print("Loading DECK.gl demo")
+    data.load_deck_dash()
+
     if load_test_data:
         print("Loading [Unicode test data]")
         data.load_unicode_test_data()
 
+    print("Loading flights data")
+    data.load_flights()
+
 
 @manager.option(
     '-d', '--datasource',
diff --git a/superset/data/__init__.py b/superset/data/__init__.py
index 39151062f2..e0794472b5 100644
--- a/superset/data/__init__.py
+++ b/superset/data/__init__.py
@@ -1227,3 +1227,276 @@ def load_misc_dashboard():
     dash.slices = slices
     db.session.merge(dash)
     db.session.commit()
+
+
+def load_deck_dash():
+    print("Loading deck.gl dashboard")
+    slices = []
+    tbl = db.session.query(TBL).filter_by(table_name='long_lat').first()
+    slice_data = {
+        "longitude": "LON",
+        "latitude": "LAT",
+        "color_picker": {
+            "r": 205,
+            "g": 0,
+            "b": 3,
+            "a": 0.82,
+        },
+        "datasource": "5__table",
+        "filters": [],
+        "granularity_sqla": "date",
+        "groupby": [],
+        "having": "",
+        "mapbox_style": "mapbox://styles/mapbox/light-v9",
+        "multiplier": 10,
+        "point_radius_fixed": {"type": "metric", "value": "count"},
+        "point_unit": "square_m",
+        "row_limit": 5000,
+        "since": "2014-01-01",
+        "size": "count",
+        "time_grain_sqla": "Time Column",
+        "until": "now",
+        "viewport": {
+            "bearing": -4.952916738791771,
+            "latitude": 37.78926922909199,
+            "longitude": -122.42613341901688,
+            "pitch": 4.750411100577438,
+            "zoom": 12.729132798697304,
+        },
+        "viz_type": "deck_scatter",
+        "where": "",
+    }
+
+    print("Creating Scatterplot slice")
+    slc = Slice(
+        slice_name="Scatterplot",
+        viz_type='deck_scatter',
+        datasource_type='table',
+        datasource_id=tbl.id,
+        params=get_slice_json(slice_data),
+    )
+    merge_slice(slc)
+    slices.append(slc)
+
+    slice_data = {
+        "point_unit": "square_m",
+        "filters": [],
+        "row_limit": 5000,
+        "longitude": "LON",
+        "latitude": "LAT",
+        "mapbox_style": "mapbox://styles/mapbox/dark-v9",
+        "granularity_sqla": "date",
+        "size": "count",
+        "viz_type": "deck_screengrid",
+        "since": "2014-01-01",
+        "point_radius": "Auto",
+        "until": "now",
+        "color_picker": {"a": 1,
+        "r": 14,
+        "b": 0,
+        "g": 255},
+        "grid_size": 20,
+        "where": "",
+        "having": "",
+        "viewport": {
+            "zoom": 14.161641703941438,
+            "longitude": -122.41827069521386,
+            "bearing": -4.952916738791771,
+            "latitude": 37.76024135844065,
+            "pitch": 4.750411100577438,
+        },
+        "point_radius_fixed": {"type": "fix", "value": 2000},
+        "datasource": "5__table",
+        "time_grain_sqla": "Time Column",
+        "groupby": [],
+    }
+    print("Creating Screen Grid slice")
+    slc = Slice(
+        slice_name="Screen grid",
+        viz_type='deck_screengrid',
+        datasource_type='table',
+        datasource_id=tbl.id,
+        params=get_slice_json(slice_data),
+    )
+    merge_slice(slc)
+    slices.append(slc)
+
+    slice_data = {
+        "filters": [],
+        "row_limit": 5000,
+        "longitude": "LON",
+        "latitude": "LAT",
+        "mapbox_style": "mapbox://styles/mapbox/streets-v9",
+        "granularity_sqla": "date",
+        "size": "count",
+        "viz_type": "deck_hex",
+        "since": "2014-01-01",
+        "point_radius_unit": "Pixels",
+        "point_radius": "Auto",
+        "until": "now",
+        "color_picker": {
+            "a": 1,
+            "r": 14,
+            "b": 0,
+            "g": 255,
+        },
+        "grid_size": 40,
+        "extruded": True,
+        "having": "",
+        "viewport": {
+            "latitude": 37.789795085160335,
+            "pitch": 54.08961642447763,
+            "zoom": 13.835465702403654,
+            "longitude": -122.40632230075536,
+            "bearing": -2.3984797349335167,
+        },
+        "where": "",
+        "point_radius_fixed": {"type": "fix", "value": 2000},
+        "datasource": "5__table",
+        "time_grain_sqla": "Time Column",
+        "groupby": [],
+    }
+    print("Creating Hex slice")
+    slc = Slice(
+        slice_name="Hexagons",
+        viz_type='deck_hex',
+        datasource_type='table',
+        datasource_id=tbl.id,
+        params=get_slice_json(slice_data),
+    )
+    merge_slice(slc)
+    slices.append(slc)
+
+    slice_data = {
+        "filters": [],
+        "row_limit": 5000,
+        "longitude": "LON",
+        "latitude": "LAT",
+        "mapbox_style": "mapbox://styles/mapbox/satellite-streets-v9",
+        "granularity_sqla": "date",
+        "size": "count",
+        "viz_type": "deck_grid",
+        "since": "2014-01-01",
+        "point_radius_unit": "Pixels",
+        "point_radius": "Auto",
+        "until": "now",
+        "color_picker": {
+            "a": 1,
+            "r": 14,
+            "b": 0,
+            "g": 255,
+        },
+        "grid_size": 120,
+        "extruded": True,
+        "having": "",
+        "viewport": {
+            "longitude": -122.42066918995666,
+            "bearing": 155.80099696026355,
+            "zoom": 12.699690845482069,
+            "latitude": 37.7942314882596,
+            "pitch": 53.470800300695146,
+        },
+        "where": "",
+        "point_radius_fixed": {"type": "fix", "value": 2000},
+        "datasource": "5__table",
+        "time_grain_sqla": "Time Column",
+        "groupby": [],
+    }
+    print("Creating Grid slice")
+    slc = Slice(
+        slice_name="Grid",
+        viz_type='deck_grid',
+        datasource_type='table',
+        datasource_id=tbl.id,
+        params=get_slice_json(slice_data),
+    )
+    merge_slice(slc)
+    slices.append(slc)
+
+    print("Creating a dashboard")
+    title = "deck.gl Demo"
+    dash = db.session.query(Dash).filter_by(dashboard_title=title).first()
+
+    if not dash:
+        dash = Dash()
+    js = textwrap.dedent("""\
+    [
+        {
+            "col": 1,
+            "row": 0,
+            "size_x": 6,
+            "size_y": 4,
+            "slice_id": "37"
+        },
+        {
+            "col": 7,
+            "row": 0,
+            "size_x": 6,
+            "size_y": 4,
+            "slice_id": "38"
+        },
+        {
+            "col": 7,
+            "row": 4,
+            "size_x": 6,
+            "size_y": 4,
+            "slice_id": "39"
+        },
+        {
+            "col": 1,
+            "row": 4,
+            "size_x": 6,
+            "size_y": 4,
+            "slice_id": "40"
+        }
+    ]
+    """)
+    l = json.loads(js)
+    for i, pos in enumerate(l):
+        pos['slice_id'] = str(slices[i].id)
+    dash.dashboard_title = title
+    dash.position_json = json.dumps(l, indent=4)
+    dash.slug = "deck"
+    dash.slices = slices
+    db.session.merge(dash)
+    db.session.commit()
+
+
+def load_flights():
+    """Loading random time series data from a zip file in the repo"""
+    with gzip.open(os.path.join(DATA_FOLDER, 'fligth_data.csv.gz')) as f:
+        pdf = pd.read_csv(f, encoding='latin-1')
+
+    # Loading airports info to join and get lat/long
+    with gzip.open(os.path.join(DATA_FOLDER, 'airports.csv.gz')) as f:
+        airports = pd.read_csv(f, encoding='latin-1')
+    airports = airports.set_index('IATA_CODE')
+
+    pdf['ds'] = pdf.YEAR.map(str) + '-0' + pdf.MONTH.map(str) + '-0' + pdf.DAY.map(str)
+    pdf.ds = pd.to_datetime(pdf.ds)
+    del pdf['YEAR']
+    del pdf['MONTH']
+    del pdf['DAY']
+
+    pdf = pdf.join(airports, on='ORIGIN_AIRPORT', rsuffix='_ORIG')
+    pdf = pdf.join(airports, on='DESTINATION_AIRPORT', rsuffix='_DEST')
+    pdf.to_sql(
+        'flights',
+        db.engine,
+        if_exists='replace',
+        chunksize=500,
+        dtype={
+            'ds': DateTime,
+        },
+        index=False)
+    print("Done loading table!")
+
+    print("Creating table [random_time_series] reference")
+    obj = db.session.query(TBL).filter_by(table_name='random_time_series').first()
+    if not obj:
+        obj = TBL(table_name='flights')
+    obj.main_dttm_col = 'ds'
+    obj.database = get_or_create_main_db()
+    db.session.merge(obj)
+    db.session.commit()
+    obj.fetch_metadata()
diff --git a/superset/data/airports.csv.gz b/superset/data/airports.csv.gz
new file mode 100644
index 0000000000..3043486664
Binary files /dev/null and b/superset/data/airports.csv.gz differ
diff --git a/superset/data/fligth_data.csv.gz b/superset/data/fligth_data.csv.gz
new file mode 100644
index 0000000000..bbdebdfafc
Binary files /dev/null and b/superset/data/fligth_data.csv.gz differ
diff --git a/superset/templates/appbuilder/general/security/login_oauth.html b/superset/templates/appbuilder/general/security/login_oauth.html
new file mode 100644
index 0000000000..72ea8df4e8
--- /dev/null
+++ b/superset/templates/appbuilder/general/security/login_oauth.html
@@ -0,0 +1,15 @@
+{% extends "appbuilder/base.html" %}
+
+{% block content %}
+
+<div class="container">
+  <div id="loginbox" style="margin-top:50px;" class="mainbox col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2">
+    <center>
+      <a href="/login/google">
+        <img width="300" src="https://developers.google.com/accounts/images/sign-in-with-google.png">
+      </a>
+    </center>
+  </div>
+</div>
+
+{% endblock %}
diff --git a/superset/views/core.py b/superset/views/core.py
index bd4d4e52ac..250daa4dab 100755
--- a/superset/views/core.py
+++ b/superset/views/core.py
@@ -586,6 +586,9 @@ class LogModelView(SupersetModelView):
 def health():
     return "OK"
 
+@app.route('/healthcheck')
+def healthcheck():
+    return "OK"
 
 @app.route('/ping')
 def ping():
@@ -973,7 +976,7 @@ def get_query_string_response(self, viz_obj):
             mimetype="application/json")
 
     @log_this
-    @has_access_api
+#   @has_access_api # remove until we figure out auth REMOTE_USER
     @expose("/explore_json/<datasource_type>/<datasource_id>/")
     def explore_json(self, datasource_type, datasource_id):
         try:
@@ -987,7 +990,7 @@ def explore_json(self, datasource_type, datasource_id):
                 utils.error_msg_from_exception(e),
                 stacktrace=traceback.format_exc())
 
-        if not self.datasource_access(viz_obj.datasource):
+        if not self.datasource_access(viz_obj.datasource) and request.args.get("restful") != "true":
             return json_error_response(DATASOURCE_ACCESS_ERR, status=404)
 
         if request.args.get("csv") == "true":
@@ -1444,7 +1447,7 @@ def testconn(self):
                     # the password-masked uri was passed
                     # use the URI associated with this database
                     uri = database.sqlalchemy_uri_decrypted
-            
+
             url = make_url(uri)
             db_engine = models.Database.get_db_engine_spec_for_backend(url.get_backend_name())
             db_engine.patch()
@@ -1797,6 +1800,61 @@ def dashboard(**kwargs):  # noqa
             bootstrap_data=json.dumps(bootstrap_data),
         )
 
+    @expose("/dashboard_json/<dashboard_id>/")
+    def dashboard_json(self, dashboard_id):
+        """Server side rendering for a dashboard"""
+        session = db.session()
+        qry = session.query(models.Dashboard)
+        if dashboard_id.isdigit():
+            qry = qry.filter_by(id=int(dashboard_id))
+        else:
+            qry = qry.filter_by(slug=dashboard_id)
+
+        dash = qry.one()
+        datasources = set()
+        for slc in dash.slices:
+            datasource = slc.datasource
+            if datasource:
+                datasources.add(datasource)
+
+        # Commenting until we figure out Authentication from a service
+        # for datasource in datasources:
+        #     if datasource and not self.datasource_access(datasource):
+        #         flash(
+        #             __(get_datasource_access_error_msg(datasource.name)),
+        #             "danger")
+        #         return redirect(
+        #             'superset/request_access/?'
+        #             'dashboard_id={dash.id}&'.format(**locals()))
+
+        # Hack to log the dashboard_id properly, even when getting a slug
+        @log_this
+        def dashboard(**kwargs):  # noqa
+            pass
+        dashboard(dashboard_id=dash.id)
+
+        dash_edit_perm = check_ownership(dash, raise_if_false=False)
+        dash_save_perm = \
+            dash_edit_perm and self.can_access('can_save_dash', 'Superset')
+
+        standalone_mode = request.args.get("standalone") == "true"
+
+        dashboard_data = dash.data
+        dashboard_data.update({
+            'standalone_mode': standalone_mode,
+            'dash_save_perm': dash_save_perm,
+            'dash_edit_perm': dash_edit_perm,
+        })
+
+        bootstrap_data = {
+            'user_id': g.user.get_id(),
+            'dashboard_data': dashboard_data,
+            'datasources': {ds.uid: ds.data for ds in datasources},
+            'common': self.common_bootsrap_payload(),
+        }
+
+        return json_success(json.dumps(bootstrap_data))
+
     @has_access
     @expose("/sync_druid/", methods=['POST'])
     @log_this
diff --git a/superset/viz.py b/superset/viz.py
index 025e9c52b0..b3320d149b 100644
--- a/superset/viz.py
+++ b/superset/viz.py
@@ -1731,7 +1731,111 @@ def get_data(self, df):
         }
 
 
+class BaseDeckGLViz(BaseViz):
+
+    """Base class for deck.gl visualizations"""
+
+    is_timeseries = False
+    credits = '<a href="https://uber.github.io/deck.gl/">deck.gl</a>'
+
+    def get_metrics(self):
+        self.metric = self.form_data.get('size')
+        return [self.metric]
+
+    def get_properties(self, d):
+        return {
+            'weight': d.get(self.metric) or 1,
+        }
+
+    def get_position(self, d):
+        return [
+            d.get(self.form_data.get('longitude')),
+            d.get(self.form_data.get('latitude')),
+        ]
+
+    def query_obj(self):
+        d = super(BaseDeckGLViz, self).query_obj()
+        fd = self.form_data
+
+        d['groupby'] = [fd.get('longitude'), fd.get('latitude')]
+        if fd.get('dimension'):
+            d['groupby'] += [fd.get('dimension')]
+
+        d['metrics'] = self.get_metrics()
+        return d
+
+    def get_data(self, df):
+        features = []
+        for d in df.to_dict(orient='records'):
+            d = dict(position=self.get_position(d), **self.get_properties(d))
+            features.append(d)
+        return {
+            "features": features,
+            "mapboxApiKey": config.get('MAPBOX_API_KEY'),
+        }
+
+
+class DeckScatterViz(BaseDeckGLViz):
+
+    """deck.gl's ScatterLayer"""
+
+    viz_type = "deck_scatter"
+    verbose_name = _("Deck.gl - Scatter plot")
+
+    def query_obj(self):
+        self.point_radius_fixed = self.form_data.get('point_radius_fixed')
+        return super(DeckScatterViz, self).query_obj()
+
+    def get_metrics(self):
+        if self.point_radius_fixed.get('type') == 'metric':
+            self.metric = self.point_radius_fixed.get('value')
+        else:
+            self.metric = 'count'
+        return [self.metric]
+
+    def get_properties(self, d):
+        return {
+            "radius": self.fixed_value if self.fixed_value else d.get(self.metric),
+            "cat_color": d.get(self.dim) if self.dim else None,
+        }
+
+    def get_data(self, df):
+        fd = self.form_data
+        self.point_radius_fixed = fd.get('point_radius_fixed')
+        self.fixed_value = None
+        self.dim = self.form_data.get('dimension')
+        if self.point_radius_fixed.get('type') != 'metric':
+            self.fixed_value = self.point_radius_fixed.get('value')
+
+        return super(DeckScatterViz, self).get_data(df)
+
+
+class DeckScreengrid(BaseDeckGLViz):
+
+    """deck.gl's ScreenGridLayer"""
+
+    viz_type = "deck_screengrid"
+    verbose_name = _("Deck.gl - Screen Grid")
+
+
+class DeckGrid(BaseDeckGLViz):
+
+    """deck.gl's DeckLayer"""
+
+    viz_type = "deck_grid"
+    verbose_name = _("Deck.gl - 3D Grid")
+
+
+class DeckHex(BaseDeckGLViz):
+
+    """deck.gl's DeckLayer"""
+
+    viz_type = "deck_hex"
+    verbose_name = _("Deck.gl - 3D HEX")
+
+
 class EventFlowViz(BaseViz):
+
     """A visualization to explore patterns in event sequences"""
 
     viz_type = "event_flow"


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services